From 3ddaf1eee9a5cb4343c413582697261e00998e19 Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Tue, 15 Aug 2023 16:18:04 +1200 Subject: [PATCH 001/309] ci: update publish and formatting TDE-792 --- .eslintrc.cjs | 1 - .eslintrc.js | 3 +++ .github/workflows/create-pr.yml | 18 ++++++++++++++++++ .github/workflows/publish.yml | 4 +++- .prettierrc.cjs | 1 - .prettierrc.js | 3 +++ 6 files changed, 27 insertions(+), 3 deletions(-) delete mode 100644 .eslintrc.cjs create mode 100644 .eslintrc.js create mode 100644 .github/workflows/create-pr.yml delete mode 100644 .prettierrc.cjs create mode 100644 .prettierrc.js diff --git a/.eslintrc.cjs b/.eslintrc.cjs deleted file mode 100644 index 12d0e788..00000000 --- a/.eslintrc.cjs +++ /dev/null @@ -1 +0,0 @@ -module.exports = { ...require('@linzjs/style/.eslintrc.cjs') }; diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 00000000..1ab131f0 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,3 @@ +module.exports = { + ...require('@linzjs/style/.eslintrc.js'), +}; diff --git a/.github/workflows/create-pr.yml b/.github/workflows/create-pr.yml new file mode 100644 index 00000000..ddbac825 --- /dev/null +++ b/.github/workflows/create-pr.yml @@ -0,0 +1,18 @@ +name: Pull Request Action +on: + push: + branches: + - feat/bot-* +jobs: + create-pull-request: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: pull-request + run: | + gh pr edit ${{ github.ref_name }} --title '${{ github.event.head_commit.message }}' --body '' && + gh pr reopen ${{ github.ref_name }} || + gh pr create --base master --title '${{ github.event.head_commit.message }}' --body '' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7bbadb88..ddd3d53a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,6 +6,8 @@ jobs: main: name: Publish runs-on: ubuntu-latest + concurrency: publish-${{ github.ref }} + permissions: id-token: write contents: read @@ -19,7 +21,7 @@ jobs: with: args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ - # FIXME: no collections exist so nothing to validate + # FIXME: add when content in repo # - name: Validate STAC # run: | # # Enable double star operator diff --git a/.prettierrc.cjs b/.prettierrc.cjs deleted file mode 100644 index fa1c53cb..00000000 --- a/.prettierrc.cjs +++ /dev/null @@ -1 +0,0 @@ -module.exports = { ...require('@linzjs/style/.prettierrc.cjs') }; diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 00000000..f6dd284f --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,3 @@ +module.exports = { + ...require('@linzjs/style/.prettierrc.js'), +}; From 9d7441eb14524524a934384761f1a1c5cbddd60f Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Tue, 15 Aug 2023 16:19:52 +1200 Subject: [PATCH 002/309] fix: extraneous space --- template/catalog.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/catalog.json b/template/catalog.json index 481bb649..9b012c36 100644 --- a/template/catalog.json +++ b/template/catalog.json @@ -2,7 +2,7 @@ "stac_version": "1.0.0", "type": "Catalog", "id": "linz-elevation", - "description": "Toitū Te Whenua Land Information New Zealand makes New Zealand's publicly owned elevation archive freely available to use under an open licence. ", + "description": "Toitū Te Whenua Land Information New Zealand makes New Zealand's publicly owned elevation archive freely available to use under an open licence.", "links": [ { "rel": "self", "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json" }, { "rel": "root", "href": "./catalog.json" } From f3509438482dc7c5df3c59a1f8d83ebe79b8fe6a Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Tue, 15 Aug 2023 16:24:07 +1200 Subject: [PATCH 003/309] fix: formatters --- .eslintrc.cjs | 3 +++ .eslintrc.js | 3 --- .prettierrc.cjs | 3 +++ .prettierrc.js | 3 --- 4 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 .eslintrc.cjs delete mode 100644 .eslintrc.js create mode 100644 .prettierrc.cjs delete mode 100644 .prettierrc.js diff --git a/.eslintrc.cjs b/.eslintrc.cjs new file mode 100644 index 00000000..d0b664c1 --- /dev/null +++ b/.eslintrc.cjs @@ -0,0 +1,3 @@ +module.exports = { + ...require('@linzjs/style/.prettierrc.cjs'), +}; diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 1ab131f0..00000000 --- a/.eslintrc.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - ...require('@linzjs/style/.eslintrc.js'), -}; diff --git a/.prettierrc.cjs b/.prettierrc.cjs new file mode 100644 index 00000000..d0b664c1 --- /dev/null +++ b/.prettierrc.cjs @@ -0,0 +1,3 @@ +module.exports = { + ...require('@linzjs/style/.prettierrc.cjs'), +}; diff --git a/.prettierrc.js b/.prettierrc.js deleted file mode 100644 index f6dd284f..00000000 --- a/.prettierrc.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - ...require('@linzjs/style/.prettierrc.js'), -}; From 34b009740ddb8dd472a6e3b549558a1af65edb96 Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Tue, 15 Aug 2023 16:27:48 +1200 Subject: [PATCH 004/309] fix: formatters --- .eslintrc.cjs | 4 +--- .prettierrc.cjs | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index d0b664c1..8e708b79 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -1,3 +1 @@ -module.exports = { - ...require('@linzjs/style/.prettierrc.cjs'), -}; +module.exports = { ...require('@linzjs/style/.eslintrc.cjs') }; \ No newline at end of file diff --git a/.prettierrc.cjs b/.prettierrc.cjs index d0b664c1..ebbc8230 100644 --- a/.prettierrc.cjs +++ b/.prettierrc.cjs @@ -1,3 +1 @@ -module.exports = { - ...require('@linzjs/style/.prettierrc.cjs'), -}; +module.exports = { ...require('@linzjs/style/.prettierrc.cjs') }; \ No newline at end of file From 682c283d34838153cf4f0185eaf20286b38c6d9e Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Tue, 15 Aug 2023 16:30:48 +1200 Subject: [PATCH 005/309] fix: formatters --- .eslintrc.cjs | 2 +- .prettierrc.cjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 8e708b79..12d0e788 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -1 +1 @@ -module.exports = { ...require('@linzjs/style/.eslintrc.cjs') }; \ No newline at end of file +module.exports = { ...require('@linzjs/style/.eslintrc.cjs') }; diff --git a/.prettierrc.cjs b/.prettierrc.cjs index ebbc8230..fa1c53cb 100644 --- a/.prettierrc.cjs +++ b/.prettierrc.cjs @@ -1 +1 @@ -module.exports = { ...require('@linzjs/style/.prettierrc.cjs') }; \ No newline at end of file +module.exports = { ...require('@linzjs/style/.prettierrc.cjs') }; From b695272925d64f61e3e7bd8a1894f75ef36f600a Mon Sep 17 00:00:00 2001 From: "elevation[bot]" Date: Tue, 15 Aug 2023 05:16:35 +0000 Subject: [PATCH 006/309] feat: import Northland - Marsden Point LiDAR 1m DEM (2016) --- .../dem_1m/2193/collection.json | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 stac/northland/marsden-point_2016/dem_1m/2193/collection.json diff --git a/stac/northland/marsden-point_2016/dem_1m/2193/collection.json b/stac/northland/marsden-point_2016/dem_1m/2193/collection.json new file mode 100644 index 00000000..1d261dcc --- /dev/null +++ b/stac/northland/marsden-point_2016/dem_1m/2193/collection.json @@ -0,0 +1,29 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MXWHVY6AJPGB0BCP7EB22F", + "title": "Northland - Marsden Point LiDAR 1m DEM (2016)", + "description": "Digital Elevation Model within the Northland - Marsden Point region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0401.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Land Information New Zealand", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.4073784, -35.909242, 174.516032, -35.7781586]] }, + "temporal": { "interval": [["2016-11-08T11:00:00Z", "2016-11-20T11:00:00Z"]] } + } +} From 8ed366d81bb94068b0f12f54176b83234cb5562c Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Tue, 15 Aug 2023 17:18:27 +1200 Subject: [PATCH 007/309] ci: add stac validation --- .github/workflows/publish.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ddd3d53a..5a43f19e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,12 +21,11 @@ jobs: with: args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ - # FIXME: add when content in repo - # - name: Validate STAC - # run: | - # # Enable double star operator - # shopt -s globstar - # docker run -v $PWD:$PWD ghcr.io/linz/argo-tasks:v2 stac-validate $PWD/stac/**/collection.json + - name: Validate STAC + run: | + # Enable double star operator + shopt -s globstar + docker run -v $PWD:$PWD ghcr.io/linz/argo-tasks:v2 stac-validate $PWD/stac/**/collection.json - name: AWS Configure if: github.ref == 'refs/heads/master' From bedbfbf5ba37a3952a726a3dfc750bd41adb72c9 Mon Sep 17 00:00:00 2001 From: "elevation[bot]" Date: Wed, 16 Aug 2023 00:04:05 +0000 Subject: [PATCH 008/309] feat: import Northland - Marsden Point LiDAR 1m DSM (2016) --- .../dsm_1m/2193/collection.json | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 stac/northland/marsden-point_2016/dsm_1m/2193/collection.json diff --git a/stac/northland/marsden-point_2016/dsm_1m/2193/collection.json b/stac/northland/marsden-point_2016/dsm_1m/2193/collection.json new file mode 100644 index 00000000..8449e55e --- /dev/null +++ b/stac/northland/marsden-point_2016/dsm_1m/2193/collection.json @@ -0,0 +1,29 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MXY63YG5MB946779BMYQ1N", + "title": "Northland - Marsden Point LiDAR 1m DSM (2016)", + "description": "Digital Surface Model within the Northland - Marsden Point region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0401.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Land Information New Zealand", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.4073784, -35.909242, 174.516032, -35.7781586]] }, + "temporal": { "interval": [["2016-11-08T11:00:00Z", "2016-11-20T11:00:00Z"]] } + } +} From 4eb53c7daa4fe975ec71a65fabb6bc580e599102 Mon Sep 17 00:00:00 2001 From: "elevation[bot]" Date: Thu, 17 Aug 2023 03:48:16 +0000 Subject: [PATCH 009/309] feat: import Waikato LiDAR 1m DEM (2021) --- .../waikato_2021/dem_1m/2193/collection.json | 304 ++++++++++++++++++ 1 file changed, 304 insertions(+) create mode 100644 stac/waikato/waikato_2021/dem_1m/2193/collection.json diff --git a/stac/waikato/waikato_2021/dem_1m/2193/collection.json b/stac/waikato/waikato_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..ef0e8a9d --- /dev/null +++ b/stac/waikato/waikato_2021/dem_1m/2193/collection.json @@ -0,0 +1,304 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H7H2K7PPF07X9SVCSX4BZQVB", + "title": "Waikato LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Waikato region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0402.json", "type": "application/json" } + ], + "providers": [ + { "name": "Ocean Infinity", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.7669986, -37.9077454, 176.1545948, -36.4037416]] }, + "temporal": { "interval": [["2021-01-04T11:00:00Z", "2021-03-25T11:00:00Z"]] } + } +} From a791d0c9ce03f1543504caa32c329d4a774465d5 Mon Sep 17 00:00:00 2001 From: "elevation[bot]" Date: Thu, 17 Aug 2023 03:57:03 +0000 Subject: [PATCH 010/309] feat: import Waikato LiDAR 1m DSM (2021) --- .../waikato_2021/dsm_1m/2193/collection.json | 304 ++++++++++++++++++ 1 file changed, 304 insertions(+) create mode 100644 stac/waikato/waikato_2021/dsm_1m/2193/collection.json diff --git a/stac/waikato/waikato_2021/dsm_1m/2193/collection.json b/stac/waikato/waikato_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..9eb70978 --- /dev/null +++ b/stac/waikato/waikato_2021/dsm_1m/2193/collection.json @@ -0,0 +1,304 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H7H4WSBWVD37KQNB624591EQ", + "title": "Waikato LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Waikato region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0402.json", "type": "application/json" } + ], + "providers": [ + { "name": "Ocean Infinity", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.7669986, -37.9077454, 176.1545948, -36.4037416]] }, + "temporal": { "interval": [["2021-01-04T11:00:00Z", "2021-03-25T11:00:00Z"]] } + } +} From 25e11d8b231a75f9b49e0179ef4cc177b05d2e58 Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Fri, 18 Aug 2023 12:33:09 +1200 Subject: [PATCH 011/309] fix: Marsden Point TTW-LINZ attribution (#11) --- stac/northland/marsden-point_2016/dem_1m/2193/collection.json | 3 +-- stac/northland/marsden-point_2016/dsm_1m/2193/collection.json | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/stac/northland/marsden-point_2016/dem_1m/2193/collection.json b/stac/northland/marsden-point_2016/dem_1m/2193/collection.json index 1d261dcc..7bfa89fe 100644 --- a/stac/northland/marsden-point_2016/dem_1m/2193/collection.json +++ b/stac/northland/marsden-point_2016/dem_1m/2193/collection.json @@ -19,8 +19,7 @@ ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, - { "name": "Land Information New Zealand", "roles": ["licensor"] }, - { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "licensor", "processor"] } ], "extent": { "spatial": { "bbox": [[174.4073784, -35.909242, 174.516032, -35.7781586]] }, diff --git a/stac/northland/marsden-point_2016/dsm_1m/2193/collection.json b/stac/northland/marsden-point_2016/dsm_1m/2193/collection.json index 8449e55e..78b18631 100644 --- a/stac/northland/marsden-point_2016/dsm_1m/2193/collection.json +++ b/stac/northland/marsden-point_2016/dsm_1m/2193/collection.json @@ -19,8 +19,7 @@ ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, - { "name": "Land Information New Zealand", "roles": ["licensor"] }, - { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "licensor", "processor"] } ], "extent": { "spatial": { "bbox": [[174.4073784, -35.909242, 174.516032, -35.7781586]] }, From cf55d32dd527ebf110c0377cf455d988ed1bae5c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 12:55:32 +1200 Subject: [PATCH 012/309] feat: import Canterbury - Mackenzie LiDAR 1m DEM (2015) (#10) Co-authored-by: elevation[bot] Co-authored-by: Alice Fage Co-authored-by: Daniel Silk --- .../dem_1m/2193/collection.json | 68 +++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json diff --git a/stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json b/stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..9efc6de5 --- /dev/null +++ b/stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json @@ -0,0 +1,68 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MT3VPSEQ8PCFWHE468N10F", + "title": "Canterbury - Mackenzie LiDAR 1m DEM (2015)", + "description": "Digital Elevation Model within the Canterbury - Mackenzie region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "licensor", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[169.9006493, -44.5118652, 170.5154636, -43.9938781]] }, + "temporal": { "interval": [["2015-02-09T11:00:00Z", "2015-02-10T11:00:00Z"]] } + } +} From b6bfba9f9bdf58c638fea9f7a3df39430f337a5c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:22:48 +1200 Subject: [PATCH 013/309] feat: import Canterbury - Mackenzie LiDAR 1m DSM (2015) (#12) Co-authored-by: elevation[bot] Co-authored-by: Alice Fage --- .../dsm_1m/2193/collection.json | 68 +++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json diff --git a/stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json b/stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json new file mode 100644 index 00000000..6b1afb5d --- /dev/null +++ b/stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json @@ -0,0 +1,68 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MT3W2070RQTV2GYW4P1MXE", + "title": "Canterbury - Mackenzie LiDAR 1m DSM (2015)", + "description": "Digital Surface Model within the Canterbury - Mackenzie region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "licensor", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[169.9006493, -44.5118652, 170.5154636, -43.9938781]] }, + "temporal": { "interval": [["2015-02-09T11:00:00Z", "2015-02-10T11:00:00Z"]] } + } +} From 3373a69dfd695fed73a2adcebfdebe14fb4b8950 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:24:40 +1200 Subject: [PATCH 014/309] feat: import Bay of Plenty LiDAR 1m DSM (2019-2022) (#109) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 479 ++++++++++++++++++ 1 file changed, 479 insertions(+) create mode 100644 stac/bay-of-plenty/bay-of-plenty_2019-2022/dsm_1m/2193/collection.json diff --git a/stac/bay-of-plenty/bay-of-plenty_2019-2022/dsm_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2019-2022/dsm_1m/2193/collection.json new file mode 100644 index 00000000..952c87a2 --- /dev/null +++ b/stac/bay-of-plenty/bay-of-plenty_2019-2022/dsm_1m/2193/collection.json @@ -0,0 +1,479 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6Q2K5V7603C2E2XDBAKSMTK", + "title": "Bay of Plenty LiDAR 1m DSM (2019-2022)", + "description": "Digital Surface Model within the Bay of Plenty region captured in 2019-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "BOPLASS", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[175.7942516, -38.909689, 178.1384604, -37.2338091]] }, + "temporal": { "interval": [["2019-10-26T11:00:00Z", "2022-10-23T11:00:00Z"]] } + } +} From f5c222784f9adb947b83a5158d84167ad00d500f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:24:44 +1200 Subject: [PATCH 015/309] feat: import Bay of Plenty LiDAR 1m DEM (2019-2022) (#108) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 479 ++++++++++++++++++ 1 file changed, 479 insertions(+) create mode 100644 stac/bay-of-plenty/bay-of-plenty_2019-2022/dem_1m/2193/collection.json diff --git a/stac/bay-of-plenty/bay-of-plenty_2019-2022/dem_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2019-2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..eb049a89 --- /dev/null +++ b/stac/bay-of-plenty/bay-of-plenty_2019-2022/dem_1m/2193/collection.json @@ -0,0 +1,479 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6Q06X72KREAS83PXSCBM7W1", + "title": "Bay of Plenty LiDAR 1m DEM (2019-2022)", + "description": "Digital Elevation Model within the Bay of Plenty region captured in 2019-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "BOPLASS", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[175.7942516, -38.909689, 178.1384604, -37.2338091]] }, + "temporal": { "interval": [["2019-10-26T11:00:00Z", "2022-10-23T11:00:00Z"]] } + } +} From e73acf0dcf605eb0889a33e4e5e9f6e71dafc52d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:24:48 +1200 Subject: [PATCH 016/309] feat: import Southland LiDAR 1m DEM (2020-2022) (#107) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 429 ++++++++++++++++++ 1 file changed, 429 insertions(+) create mode 100644 stac/southland/southland_2020-2022/dem_1m/2193/collection.json diff --git a/stac/southland/southland_2020-2022/dem_1m/2193/collection.json b/stac/southland/southland_2020-2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..691336e3 --- /dev/null +++ b/stac/southland/southland_2020-2022/dem_1m/2193/collection.json @@ -0,0 +1,429 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H7H4XFXH9BCM5PPDJYKVTEFA", + "title": "Southland LiDAR 1m DEM (2020-2022)", + "description": "Digital Elevation Model within the Southland region captured in 2020-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CC10_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF13_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CH10_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CH10_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CH10_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CH11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CH11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CH12_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CH12_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CH12_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CH12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CH12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0104.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Southland", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[167.6643767, -46.6893848, 169.3363348, -45.234177]] }, + "temporal": { "interval": [["2020-12-14T11:00:00Z", "2022-05-10T12:00:00Z"]] } + } +} From 5937c3633e1cb291293f18a5c9366d3ad4a003fa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:24:53 +1200 Subject: [PATCH 017/309] feat: import Southland LiDAR 1m DSM (2020-2022) (#106) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 429 ++++++++++++++++++ 1 file changed, 429 insertions(+) create mode 100644 stac/southland/southland_2020-2022/dsm_1m/2193/collection.json diff --git a/stac/southland/southland_2020-2022/dsm_1m/2193/collection.json b/stac/southland/southland_2020-2022/dsm_1m/2193/collection.json new file mode 100644 index 00000000..b1a9ddbb --- /dev/null +++ b/stac/southland/southland_2020-2022/dsm_1m/2193/collection.json @@ -0,0 +1,429 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H7H4XFWA5N5D41X75N4WNRT4", + "title": "Southland LiDAR 1m DSM (2020-2022)", + "description": "Digital Surface Model within the Southland region captured in 2020-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CC10_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD10_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF13_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CG08_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CG09_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CG10_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CG11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CG12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CH10_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CH10_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CH10_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CH11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CH11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CH12_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CH12_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CH12_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CH12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CH12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0104.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Southland", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[167.6643767, -46.6893848, 169.3363348, -45.234177]] }, + "temporal": { "interval": [["2020-12-14T11:00:00Z", "2022-05-10T12:00:00Z"]] } + } +} From 58175a7e4558319f3bbf5b6539d781236d359f23 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:24:57 +1200 Subject: [PATCH 018/309] =?UTF-8?q?feat:=20import=20Canterbury=20-=20Kaik?= =?UTF-8?q?=C5=8Dura=20and=20Waimakariri=20LiDAR=201m=20DSM=20(2022)=20(#1?= =?UTF-8?q?05)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 stac/canterbury/kaikoura_waimakariri_2022/dsm_1m/2193/collection.json diff --git a/stac/canterbury/kaikoura_waimakariri_2022/dsm_1m/2193/collection.json b/stac/canterbury/kaikoura_waimakariri_2022/dsm_1m/2193/collection.json new file mode 100644 index 00000000..2c508bfe --- /dev/null +++ b/stac/canterbury/kaikoura_waimakariri_2022/dsm_1m/2193/collection.json @@ -0,0 +1,59 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6NJ0EYW1855FDPWKPRQX3AF", + "title": "Canterbury - Kaikōura and Waimakariri LiDAR 1m DSM (2022)", + "description": "Digital Surface Model within the Canterbury - Kaikōura and Waimakariri region captured in 2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": " Aerial Surveys", "roles": ["producer"] }, + { "name": " Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.0213315, -43.506864, 173.9594288, -42.0772793]] }, + "temporal": { "interval": [["2022-05-01T12:00:00Z", "2022-09-14T12:00:00Z"]] } + } +} From c7036ee8b3013ec66bd094c2aaddf6b116430afe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:25:00 +1200 Subject: [PATCH 019/309] =?UTF-8?q?feat:=20import=20Canterbury=20-=20Kaik?= =?UTF-8?q?=C5=8Dura=20and=20Waimakariri=20LiDAR=201m=20DEM=20(2022)=20(#1?= =?UTF-8?q?04)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 stac/canterbury/kaikoura_waimakariri_2022/dem_1m/2193/collection.json diff --git a/stac/canterbury/kaikoura_waimakariri_2022/dem_1m/2193/collection.json b/stac/canterbury/kaikoura_waimakariri_2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..0e96bbdc --- /dev/null +++ b/stac/canterbury/kaikoura_waimakariri_2022/dem_1m/2193/collection.json @@ -0,0 +1,59 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6NHNC3TX1YWP39XJ3J6Z84J", + "title": "Canterbury - Kaikōura and Waimakariri LiDAR 1m DEM (2022)", + "description": "Digital Elevation Model within the Canterbury - Kaikōura and Waimakariri region captured in 2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": " Aerial Surveys", "roles": ["producer"] }, + { "name": " Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.0213315, -43.506864, 173.9594288, -42.0772793]] }, + "temporal": { "interval": [["2022-05-01T12:00:00Z", "2022-09-14T12:00:00Z"]] } + } +} From ab89fd8b43852ad14a67bd6e3a5ea91db788ae70 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:25:04 +1200 Subject: [PATCH 020/309] feat: import Tasman LiDAR 1m DSM (2020-2022) (#103) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 335 ++++++++++++++++++ 1 file changed, 335 insertions(+) create mode 100644 stac/tasman/tasman_2020-2022/dsm_1m/2193/collection.json diff --git a/stac/tasman/tasman_2020-2022/dsm_1m/2193/collection.json b/stac/tasman/tasman_2020-2022/dsm_1m/2193/collection.json new file mode 100644 index 00000000..0d2c39e7 --- /dev/null +++ b/stac/tasman/tasman_2020-2022/dsm_1m/2193/collection.json @@ -0,0 +1,335 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N6RXCY1KMYMJ62JEND4HDG", + "title": "Tasman LiDAR 1m DSM (2020-2022)", + "description": "Digital Surface Model within the Tasman region captured in 2020-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.0435002, -42.3395863, 173.3166108, -40.5883396]] }, + "temporal": { "interval": [["2020-01-27T11:00:00Z", "2022-01-29T11:00:00Z"]] } + } +} From 6a4bd774ce3f86b1ea956964615e1fc70e0f16ef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:25:08 +1200 Subject: [PATCH 021/309] feat: import Tasman LiDAR 1m DEM (2020-2022) (#102) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 335 ++++++++++++++++++ 1 file changed, 335 insertions(+) create mode 100644 stac/tasman/tasman_2020-2022/dem_1m/2193/collection.json diff --git a/stac/tasman/tasman_2020-2022/dem_1m/2193/collection.json b/stac/tasman/tasman_2020-2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..81e25344 --- /dev/null +++ b/stac/tasman/tasman_2020-2022/dem_1m/2193/collection.json @@ -0,0 +1,335 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N6QZ3675F9JD86RB0SRKXZ", + "title": "Tasman LiDAR 1m DEM (2020-2022)", + "description": "Digital Elevation Model within the Tasman region captured in 2020-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.0435002, -42.3395863, 173.3166108, -40.5883396]] }, + "temporal": { "interval": [["2020-01-27T11:00:00Z", "2022-01-29T11:00:00Z"]] } + } +} From 6f7f5802fddb1a90e92e9ef059bbda5c6949f11e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:25:12 +1200 Subject: [PATCH 022/309] feat: import Otago - Wanaka LiDAR 1m DSM (2022-2023) (#101) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 stac/otago/wanaka_2022-2023/dsm_1m/2193/collection.json diff --git a/stac/otago/wanaka_2022-2023/dsm_1m/2193/collection.json b/stac/otago/wanaka_2022-2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..3dad7b2e --- /dev/null +++ b/stac/otago/wanaka_2022-2023/dsm_1m/2193/collection.json @@ -0,0 +1,37 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6NF8V88169AMQ0HVQAH7RNM", + "title": "Otago - Wanaka LiDAR 1m DSM (2022-2023)", + "description": "Digital Surface Model within the Otago - Wanaka region captured in 2022-2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CA12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Queenstown-Lakes District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[169.0896929, -44.8099309, 169.3439075, -44.5472619]] }, + "temporal": { "interval": [["2022-11-26T11:00:00Z", "2023-01-10T11:00:00Z"]] } + } +} From 622971f5ea9e2f6951634277dc206777aa68d600 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:25:17 +1200 Subject: [PATCH 023/309] feat: import Otago - Wanaka LiDAR 1m DEM (2022-2023) (#100) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 stac/otago/wanaka_2022-2023/dem_1m/2193/collection.json diff --git a/stac/otago/wanaka_2022-2023/dem_1m/2193/collection.json b/stac/otago/wanaka_2022-2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..bb69a002 --- /dev/null +++ b/stac/otago/wanaka_2022-2023/dem_1m/2193/collection.json @@ -0,0 +1,37 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N71H070GHTVKCKYRY0P4AD", + "title": "Otago - Wanaka LiDAR 1m DEM (2022-2023)", + "description": "Digital Elevation Model within the Otago - Wanaka region captured in 2022-2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CA12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Queenstown-Lakes District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[169.0896929, -44.8099309, 169.3439075, -44.5472619]] }, + "temporal": { "interval": [["2022-11-26T11:00:00Z", "2023-01-10T11:00:00Z"]] } + } +} From db8020c744b3e587edc3da8566827b2b4433ac9c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:25:20 +1200 Subject: [PATCH 024/309] feat: import Nelson and Tasman - Top of the South Flood LiDAR 1m DSM (2022) (#99) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 84 +++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dsm_1m/2193/collection.json diff --git a/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dsm_1m/2193/collection.json b/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dsm_1m/2193/collection.json new file mode 100644 index 00000000..42f19636 --- /dev/null +++ b/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dsm_1m/2193/collection.json @@ -0,0 +1,84 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N6NQMW470GHJ6N0WKFZ397", + "title": "Nelson and Tasman - Top of the South Flood LiDAR 1m DSM (2022)", + "description": "Digital Surface Model within the Nelson and Tasman - Top of the South Flood region captured in 2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "\"Nelson City Council", "roles": ["licensor"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Waka Kotahi", "roles": ["licensor"] }, + { "name": "National Emergency Management Agency\"", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.7437525, -41.5623833, 173.715274, -40.7839011]] }, + "temporal": { "interval": [["2022-08-22T12:00:00Z", "2022-09-05T12:00:00Z"]] } + } +} From 8def5cc4d57b3e0655d26f4b36efe08c09707231 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:25:24 +1200 Subject: [PATCH 025/309] feat: import Otago - Coastal Catchments LiDAR 1m DSM (2021) (#98) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 212 ++++++++++++++++++ 1 file changed, 212 insertions(+) create mode 100644 stac/otago/coastal-catchments_2021/dsm_1m/2193/collection.json diff --git a/stac/otago/coastal-catchments_2021/dsm_1m/2193/collection.json b/stac/otago/coastal-catchments_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..2dc5b0b7 --- /dev/null +++ b/stac/otago/coastal-catchments_2021/dsm_1m/2193/collection.json @@ -0,0 +1,212 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N5DTWRDHWXS2A779DFS15G", + "title": "Otago - Coastal Catchments LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Otago - Coastal Catchments region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[169.1442885, -46.691381, 171.2058988, -44.8508836]] }, + "temporal": { "interval": [["2021-06-24T12:00:00Z", "2021-09-30T11:00:00Z"]] } + } +} From bbfd1d3737f2fead2c8db49e5793e997cd214c63 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:25:28 +1200 Subject: [PATCH 026/309] feat: import Nelson and Tasman - Top of the South Flood LiDAR 1m DEM (2022) (#97) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 84 +++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dem_1m/2193/collection.json diff --git a/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dem_1m/2193/collection.json b/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..f79d1c31 --- /dev/null +++ b/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dem_1m/2193/collection.json @@ -0,0 +1,84 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N6NJKXDG0DH6KZ6SP5FF46", + "title": "Nelson and Tasman - Top of the South Flood LiDAR 1m DEM (2022)", + "description": "Digital Elevation Model within the Nelson and Tasman - Top of the South Flood region captured in 2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "\"Nelson City Council", "roles": ["licensor"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Waka Kotahi", "roles": ["licensor"] }, + { "name": "National Emergency Management Agency\"", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.7437525, -41.5623833, 173.715274, -40.7839011]] }, + "temporal": { "interval": [["2022-08-22T12:00:00Z", "2022-09-05T12:00:00Z"]] } + } +} From 2f05176245a1d02bdff022ad6dbbddebc59c9b64 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:25:32 +1200 Subject: [PATCH 027/309] feat: import Tasman - Waimea Dam LiDAR 1m DEM (2023) (#96) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 stac/tasman/waimea-dam_2023/dem_1m/2193/collection.json diff --git a/stac/tasman/waimea-dam_2023/dem_1m/2193/collection.json b/stac/tasman/waimea-dam_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..2024c116 --- /dev/null +++ b/stac/tasman/waimea-dam_2023/dem_1m/2193/collection.json @@ -0,0 +1,26 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N6J5ZGVQXCHQA2KY9PA6CG", + "title": "Tasman - Waimea Dam LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Tasman - Waimea Dam region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[173.143628, -41.4975302, 173.2012794, -41.4325902]] }, + "temporal": { "interval": [["2023-03-08T11:00:00Z", "2023-03-08T11:00:00Z"]] } + } +} From 317f8215dc1b543363c9ffafd6c58a079e796884 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:25:36 +1200 Subject: [PATCH 028/309] feat: import Tasman - Waimea Dam LiDAR 1m DSM (2023) (#95) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 stac/tasman/waimea-dam_2023/dsm_1m/2193/collection.json diff --git a/stac/tasman/waimea-dam_2023/dsm_1m/2193/collection.json b/stac/tasman/waimea-dam_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..a2f0c88c --- /dev/null +++ b/stac/tasman/waimea-dam_2023/dsm_1m/2193/collection.json @@ -0,0 +1,26 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N6MZY105DBWNC88B4TV437", + "title": "Tasman - Waimea Dam LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Tasman - Waimea Dam region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[173.143628, -41.4975302, 173.2012794, -41.4325902]] }, + "temporal": { "interval": [["2023-03-08T11:00:00Z", "2023-03-08T11:00:00Z"]] } + } +} From 1a1bb7d1cb6159afa453ff2c80bd55555f19fba3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:25:40 +1200 Subject: [PATCH 029/309] feat: import Otago - Coastal Catchments LiDAR 1m DEM (2021) (#94) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 212 ++++++++++++++++++ 1 file changed, 212 insertions(+) create mode 100644 stac/otago/coastal-catchments_2021/dem_1m/2193/collection.json diff --git a/stac/otago/coastal-catchments_2021/dem_1m/2193/collection.json b/stac/otago/coastal-catchments_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..ab607ca4 --- /dev/null +++ b/stac/otago/coastal-catchments_2021/dem_1m/2193/collection.json @@ -0,0 +1,212 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N5B239PWF39WNVER4H254G", + "title": "Otago - Coastal Catchments LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Otago - Coastal Catchments region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[169.1442885, -46.691381, 171.2058988, -44.8508836]] }, + "temporal": { "interval": [["2021-06-24T12:00:00Z", "2021-09-30T11:00:00Z"]] } + } +} From 4d2ea7fcb9c2854814fca1823feb7bac0bbca27f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:25:44 +1200 Subject: [PATCH 030/309] feat: import Canterbury LiDAR 1m DSM (2020) (#93) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 456 ++++++++++++++++++ 1 file changed, 456 insertions(+) create mode 100644 stac/canterbury/canterbury_2020/dsm_1m/2193/collection.json diff --git a/stac/canterbury/canterbury_2020/dsm_1m/2193/collection.json b/stac/canterbury/canterbury_2020/dsm_1m/2193/collection.json new file mode 100644 index 00000000..030c209c --- /dev/null +++ b/stac/canterbury/canterbury_2020/dsm_1m/2193/collection.json @@ -0,0 +1,456 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N47DF853R5B2C131YWR90M", + "title": "Canterbury LiDAR 1m DSM (2020)", + "description": "Digital Surface Model within the Canterbury region captured in 2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[170.8532618, -44.98452, 174.0724206, -41.8817418]] }, + "temporal": { "interval": [["2020-04-30T12:00:00Z", "2020-11-11T11:00:00Z"]] } + } +} From ad37dd817d3750733fbec4c3a5797c57f54278a9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:25:48 +1200 Subject: [PATCH 031/309] feat: import Stewart Island / Rakiura - Oban LiDAR 1m DSM (2021) (#92) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 stac/southland/stewart-island-rakiura-oban_2021/dsm_1m/2193/collection.json diff --git a/stac/southland/stewart-island-rakiura-oban_2021/dsm_1m/2193/collection.json b/stac/southland/stewart-island-rakiura-oban_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..a5a23298 --- /dev/null +++ b/stac/southland/stewart-island-rakiura-oban_2021/dsm_1m/2193/collection.json @@ -0,0 +1,29 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N57MV9SNQR55070ZMBWENT", + "title": "Stewart Island / Rakiura - Oban LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Stewart Island / Rakiura - Oban region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CH09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CH10_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CJ09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CJ10_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Southland", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[168.0465809, -46.970433, 168.1839243, -46.8359485]] }, + "temporal": { "interval": [["2021-09-02T12:00:00Z", "2021-09-02T12:00:00Z"]] } + } +} From 4a0db590e53d116ac2b303178d3bb9fb90c6e522 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:25:52 +1200 Subject: [PATCH 032/309] feat: import Canterbury LiDAR 1m DEM (2020) (#91) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 456 ++++++++++++++++++ 1 file changed, 456 insertions(+) create mode 100644 stac/canterbury/canterbury_2020/dem_1m/2193/collection.json diff --git a/stac/canterbury/canterbury_2020/dem_1m/2193/collection.json b/stac/canterbury/canterbury_2020/dem_1m/2193/collection.json new file mode 100644 index 00000000..ff69cbf9 --- /dev/null +++ b/stac/canterbury/canterbury_2020/dem_1m/2193/collection.json @@ -0,0 +1,456 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N478VBB30BD7FGD8VGTGCY", + "title": "Canterbury LiDAR 1m DEM (2020)", + "description": "Digital Elevation Model within the Canterbury region captured in 2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[170.8532618, -44.98452, 174.0724206, -41.8817418]] }, + "temporal": { "interval": [["2020-04-30T12:00:00Z", "2020-11-11T11:00:00Z"]] } + } +} From b34edd455bba5ef9f2275cc790e07751830cdf20 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:25:56 +1200 Subject: [PATCH 033/309] feat: import Stewart Island / Rakiura - Oban LiDAR 1m DEM (2021) (#90) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 stac/southland/stewart-island-rakiura-oban_2021/dem_1m/2193/collection.json diff --git a/stac/southland/stewart-island-rakiura-oban_2021/dem_1m/2193/collection.json b/stac/southland/stewart-island-rakiura-oban_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..8fe13ca3 --- /dev/null +++ b/stac/southland/stewart-island-rakiura-oban_2021/dem_1m/2193/collection.json @@ -0,0 +1,29 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N4KDD0JJBYHTG9V1HGKG3K", + "title": "Stewart Island / Rakiura - Oban LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Stewart Island / Rakiura - Oban region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CH09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CH10_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CJ09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CJ10_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Southland", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[168.0465809, -46.970433, 168.1839243, -46.8359485]] }, + "temporal": { "interval": [["2021-09-02T12:00:00Z", "2021-09-02T12:00:00Z"]] } + } +} From 1983d2805a16a801af02f6f28564c48f2144cc76 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:26:00 +1200 Subject: [PATCH 034/309] feat: import Tasman - Tasman Bay LiDAR 1m DSM (2022) (#89) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 stac/tasman/tasman-bay_2022/dsm_1m/2193/collection.json diff --git a/stac/tasman/tasman-bay_2022/dsm_1m/2193/collection.json b/stac/tasman/tasman-bay_2022/dsm_1m/2193/collection.json new file mode 100644 index 00000000..1dd32058 --- /dev/null +++ b/stac/tasman/tasman-bay_2022/dsm_1m/2193/collection.json @@ -0,0 +1,54 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N4CV0X1CRNJHNQ1M096B3R", + "title": "Tasman - Tasman Bay LiDAR 1m DSM (2022)", + "description": "Digital Surface Model within the Tasman - Tasman Bay region captured in 2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.913651, -41.5624698, 173.2582727, -41.0435943]] }, + "temporal": { "interval": [["2022-10-13T11:00:00Z", "2022-11-06T11:00:00Z"]] } + } +} From 55ee988efc8a17958d169e6148cce77271c82d81 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:26:04 +1200 Subject: [PATCH 035/309] feat: import Taranaki LiDAR 1m DSM (2021) (#88) Co-authored-by: elevation[bot] --- .../taranaki_2021/dsm_1m/2193/collection.json | 308 ++++++++++++++++++ 1 file changed, 308 insertions(+) create mode 100644 stac/taranaki/taranaki_2021/dsm_1m/2193/collection.json diff --git a/stac/taranaki/taranaki_2021/dsm_1m/2193/collection.json b/stac/taranaki/taranaki_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..10d12dff --- /dev/null +++ b/stac/taranaki/taranaki_2021/dsm_1m/2193/collection.json @@ -0,0 +1,308 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6Q2PW0J2JCHA2F90WY14QK6", + "title": "Taranaki LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Taranaki region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BG30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Taranaki Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[173.6951122, -39.9290771, 175.0828484, -38.6936157]] }, + "temporal": { "interval": [["2021-04-02T11:00:00Z", "2021-10-15T11:00:00Z"]] } + } +} From 3f6136052c8934e2e0268f73f9338f1377109375 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:26:07 +1200 Subject: [PATCH 036/309] feat: import Northland LiDAR 1m DSM (2018-2020) (#87) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 527 ++++++++++++++++++ 1 file changed, 527 insertions(+) create mode 100644 stac/northland/northland_2018-2020/dsm_1m/2193/collection.json diff --git a/stac/northland/northland_2018-2020/dsm_1m/2193/collection.json b/stac/northland/northland_2018-2020/dsm_1m/2193/collection.json new file mode 100644 index 00000000..e9d06cef --- /dev/null +++ b/stac/northland/northland_2018-2020/dsm_1m/2193/collection.json @@ -0,0 +1,527 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6QHA3HADCB2NT6NK4EVBZP1", + "title": "Northland LiDAR 1m DSM (2018-2020)", + "description": "Digital Surface Model within the Northland region captured in 2018-2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AS21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AS21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "RPS", "roles": ["producer"] }, + { "name": "Northland Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[171.9837701, -36.4327099, 174.8350624, -34.0962294]] }, + "temporal": { "interval": [["2018-11-30T11:00:00Z", "2020-01-31T11:00:00Z"]] } + } +} From 4bd789eedd4a46504b1680b7edd4967d34b728ac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:26:12 +1200 Subject: [PATCH 037/309] feat: import Taranaki LiDAR 1m DEM (2021) (#86) Co-authored-by: elevation[bot] --- .../taranaki_2021/dem_1m/2193/collection.json | 307 ++++++++++++++++++ 1 file changed, 307 insertions(+) create mode 100644 stac/taranaki/taranaki_2021/dem_1m/2193/collection.json diff --git a/stac/taranaki/taranaki_2021/dem_1m/2193/collection.json b/stac/taranaki/taranaki_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..7068658a --- /dev/null +++ b/stac/taranaki/taranaki_2021/dem_1m/2193/collection.json @@ -0,0 +1,307 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6NJGK1G43VT2JP2WN50SHVG", + "title": "Taranaki LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Taranaki region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BG30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Taranaki Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[173.6951122, -39.9290771, 175.0828484, -38.6936157]] }, + "temporal": { "interval": [["2021-04-02T11:00:00Z", "2021-10-15T11:00:00Z"]] } + } +} From b1065350bd328200eba39ffb5b33ed52093fa8a2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:26:15 +1200 Subject: [PATCH 038/309] feat: import Tasman - Tasman Bay LiDAR 1m DEM (2022) (#85) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 stac/tasman/tasman-bay_2022/dem_1m/2193/collection.json diff --git a/stac/tasman/tasman-bay_2022/dem_1m/2193/collection.json b/stac/tasman/tasman-bay_2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..a2781334 --- /dev/null +++ b/stac/tasman/tasman-bay_2022/dem_1m/2193/collection.json @@ -0,0 +1,54 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N4BJEYDZ60P0BPEQQZZFNB", + "title": "Tasman - Tasman Bay LiDAR 1m DEM (2022)", + "description": "Digital Elevation Model within the Tasman - Tasman Bay region captured in 2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.913651, -41.5624698, 173.2582727, -41.0435943]] }, + "temporal": { "interval": [["2022-10-13T11:00:00Z", "2022-11-06T11:00:00Z"]] } + } +} From 2b2021ee25afbae475c36a4203b6f069f7e96e01 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:26:19 +1200 Subject: [PATCH 039/309] feat: import Northland LiDAR 1m DEM (2018-2020) (#84) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 527 ++++++++++++++++++ 1 file changed, 527 insertions(+) create mode 100644 stac/northland/northland_2018-2020/dem_1m/2193/collection.json diff --git a/stac/northland/northland_2018-2020/dem_1m/2193/collection.json b/stac/northland/northland_2018-2020/dem_1m/2193/collection.json new file mode 100644 index 00000000..19b48e71 --- /dev/null +++ b/stac/northland/northland_2018-2020/dem_1m/2193/collection.json @@ -0,0 +1,527 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6QGG9FTM9BM5MN9R5Y68AQP", + "title": "Northland LiDAR 1m DEM (2018-2020)", + "description": "Digital Elevation Model within the Northland region captured in 2018-2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AS21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AS21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "RPS", "roles": ["producer"] }, + { "name": "Northland Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[171.9837701, -36.4327099, 174.8350624, -34.0962294]] }, + "temporal": { "interval": [["2018-11-30T11:00:00Z", "2020-01-31T11:00:00Z"]] } + } +} From a3e52cba7ca4dfc63bed9c70484e6b2fa7b8e48f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:26:23 +1200 Subject: [PATCH 040/309] feat: import Marlborough LiDAR 1m DEM (2020-2021) (#83) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 309 ++++++++++++++++++ 1 file changed, 309 insertions(+) create mode 100644 stac/marlborough/marlborough_2020-2021/dem_1m/2193/collection.json diff --git a/stac/marlborough/marlborough_2020-2021/dem_1m/2193/collection.json b/stac/marlborough/marlborough_2020-2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..a53ae31f --- /dev/null +++ b/stac/marlborough/marlborough_2020-2021/dem_1m/2193/collection.json @@ -0,0 +1,309 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6QEEVM3CMSF2KETE29GE4DV", + "title": "Marlborough LiDAR 1m DEM (2020-2021)", + "description": "Digital Elevation Model within the Marlborough region captured in 2020-2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Marlborough District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.8555058, -42.0156027, 174.458987, -40.6496832]] }, + "temporal": { "interval": [["2020-02-09T11:00:00Z", "2021-07-01T12:00:00Z"]] } + } +} From f9a818ac0448dac1459af9aa259b4c9dbc68b29c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:26:27 +1200 Subject: [PATCH 041/309] feat: import Marlborough LiDAR 1m DSM (2020-2021) (#82) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 309 ++++++++++++++++++ 1 file changed, 309 insertions(+) create mode 100644 stac/marlborough/marlborough_2020-2021/dsm_1m/2193/collection.json diff --git a/stac/marlborough/marlborough_2020-2021/dsm_1m/2193/collection.json b/stac/marlborough/marlborough_2020-2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..ad03765c --- /dev/null +++ b/stac/marlborough/marlborough_2020-2021/dsm_1m/2193/collection.json @@ -0,0 +1,309 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6QEFCX2RXQ5A7SX5DWK8SK0", + "title": "Marlborough LiDAR 1m DSM (2020-2021)", + "description": "Digital Surface Model within the Marlborough region captured in 2020-2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Marlborough District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.8555058, -42.0156027, 174.458987, -40.6496832]] }, + "temporal": { "interval": [["2020-02-09T11:00:00Z", "2021-07-01T12:00:00Z"]] } + } +} From e39ba1d344785b781e55c59f6ccbe0bce3f5408f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:26:31 +1200 Subject: [PATCH 042/309] feat: import Gisborne LiDAR 1m DSM (2018-2020) (#81) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 329 ++++++++++++++++++ 1 file changed, 329 insertions(+) create mode 100644 stac/gisborne/gisborne_2018-2020/dsm_1m/2193/collection.json diff --git a/stac/gisborne/gisborne_2018-2020/dsm_1m/2193/collection.json b/stac/gisborne/gisborne_2018-2020/dsm_1m/2193/collection.json new file mode 100644 index 00000000..d5487b2f --- /dev/null +++ b/stac/gisborne/gisborne_2018-2020/dsm_1m/2193/collection.json @@ -0,0 +1,329 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6QKE5Y1P8ZAMSPS8547VQ86", + "title": "Gisborne LiDAR 1m DSM (2018-2020)", + "description": "Digital Surface Model within the Gisborne region captured in 2018-2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Gisborne District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[177.1042804, -38.9989083, 178.5813461, -37.4863429]] }, + "temporal": { "interval": [["2018-12-30T11:00:00Z", "2020-10-08T11:00:00Z"]] } + } +} From fcf6e6f04153e8843290b3f4ce408dc3b8a13785 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:26:35 +1200 Subject: [PATCH 043/309] feat: import Gisborne LiDAR 1m DEM (2018-2020) (#80) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 329 ++++++++++++++++++ 1 file changed, 329 insertions(+) create mode 100644 stac/gisborne/gisborne_2018-2020/dem_1m/2193/collection.json diff --git a/stac/gisborne/gisborne_2018-2020/dem_1m/2193/collection.json b/stac/gisborne/gisborne_2018-2020/dem_1m/2193/collection.json new file mode 100644 index 00000000..3b98b8ed --- /dev/null +++ b/stac/gisborne/gisborne_2018-2020/dem_1m/2193/collection.json @@ -0,0 +1,329 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6QJG0DJ7CK1V18EV9M7B7YF", + "title": "Gisborne LiDAR 1m DEM (2018-2020)", + "description": "Digital Elevation Model within the Gisborne region captured in 2018-2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Gisborne District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[177.1042804, -38.9989083, 178.5813461, -37.4863429]] }, + "temporal": { "interval": [["2018-12-30T11:00:00Z", "2020-10-08T11:00:00Z"]] } + } +} From 44747133344aab281e584850b0909eae734994d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:27:13 +1200 Subject: [PATCH 044/309] feat: import West Coast LiDAR 1m DSM (2020-2022) (#79) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 280 ++++++++++++++++++ 1 file changed, 280 insertions(+) create mode 100644 stac/west-coast/west-coast_2020-2022/dsm_1m/2193/collection.json diff --git a/stac/west-coast/west-coast_2020-2022/dsm_1m/2193/collection.json b/stac/west-coast/west-coast_2020-2022/dsm_1m/2193/collection.json new file mode 100644 index 00000000..8f683f1b --- /dev/null +++ b/stac/west-coast/west-coast_2020-2022/dsm_1m/2193/collection.json @@ -0,0 +1,280 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H7H2JPJCJ1XXHDXW9QK2C04P", + "title": "West Coast LiDAR 1m DSM (2020-2022)", + "description": "Digital Surface Model within the West Coast region captured in 2020-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "West Coast Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[168.0352097, -44.3199292, 171.6419363, -41.8108859]] }, + "temporal": { "interval": [["2020-05-15T12:00:00Z", "2022-02-13T11:00:00Z"]] } + } +} From 6207adbe92239b61b647cb1a51c9cefc5ee47ef1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:27:17 +1200 Subject: [PATCH 045/309] feat: import West Coast LiDAR 1m DEM (2020-2022) (#78) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 280 ++++++++++++++++++ 1 file changed, 280 insertions(+) create mode 100644 stac/west-coast/west-coast_2020-2022/dem_1m/2193/collection.json diff --git a/stac/west-coast/west-coast_2020-2022/dem_1m/2193/collection.json b/stac/west-coast/west-coast_2020-2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..f4612fd5 --- /dev/null +++ b/stac/west-coast/west-coast_2020-2022/dem_1m/2193/collection.json @@ -0,0 +1,280 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H7H2JPK8AR65P0QB8PZV1YJ9", + "title": "West Coast LiDAR 1m DEM (2020-2022)", + "description": "Digital Elevation Model within the West Coast region captured in 2020-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "West Coast Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[168.0352097, -44.3199292, 171.6419363, -41.8108859]] }, + "temporal": { "interval": [["2020-05-15T12:00:00Z", "2022-02-13T11:00:00Z"]] } + } +} From 1a4f43c490a9f408361f4f1c2600ffd97271048f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:27:21 +1200 Subject: [PATCH 046/309] feat: import Otago - Dunedin and Mosgiel LiDAR 1m DSM (2021) (#77) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 stac/otago/dunedin-and-mosgiel_2021/dsm_1m/2193/collection.json diff --git a/stac/otago/dunedin-and-mosgiel_2021/dsm_1m/2193/collection.json b/stac/otago/dunedin-and-mosgiel_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..7529a57a --- /dev/null +++ b/stac/otago/dunedin-and-mosgiel_2021/dsm_1m/2193/collection.json @@ -0,0 +1,32 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N3CFW4H84GCJPKT4JMN3QG", + "title": "Otago - Dunedin and Mosgiel LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Otago - Dunedin and Mosgiel region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0403.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[170.3063778, -45.9445839, 170.5595063, -45.8095509]] }, + "temporal": { "interval": [["2021-06-23T12:00:00Z", "2021-06-23T12:00:00Z"]] } + } +} From b17675d4a78e272a73daf9f5555fbd7a5ec7501f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:27:25 +1200 Subject: [PATCH 047/309] feat: import Auckland North LiDAR 1m DSM (2016-2018) (#76) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 217 ++++++++++++++++++ 1 file changed, 217 insertions(+) create mode 100644 stac/auckland/auckland-north_2016-2018/dsm_1m/2193/collection.json diff --git a/stac/auckland/auckland-north_2016-2018/dsm_1m/2193/collection.json b/stac/auckland/auckland-north_2016-2018/dsm_1m/2193/collection.json new file mode 100644 index 00000000..4d974296 --- /dev/null +++ b/stac/auckland/auckland-north_2016-2018/dsm_1m/2193/collection.json @@ -0,0 +1,217 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N2AA5XW4KE4PTZW9P27ZVZ", + "title": "Auckland North LiDAR 1m DSM (2016-2018)", + "description": "Digital Surface Model within the Auckland North region captured in 2016-2018.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Auckland Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.0977806, -37.0772518, 175.5940431, -36.0228458]] }, + "temporal": { "interval": [["2016-08-15T12:00:00Z", "2018-08-08T12:00:00Z"]] } + } +} From 52bcdeca2bc50274e09c41ad1d737783853836fa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:27:29 +1200 Subject: [PATCH 048/309] feat: import Nelson LiDAR 1m DSM (2021) (#75) Co-authored-by: elevation[bot] --- .../nelson_2021/dsm_1m/2193/collection.json | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 stac/nelson/nelson_2021/dsm_1m/2193/collection.json diff --git a/stac/nelson/nelson_2021/dsm_1m/2193/collection.json b/stac/nelson/nelson_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..c24278ea --- /dev/null +++ b/stac/nelson/nelson_2021/dsm_1m/2193/collection.json @@ -0,0 +1,53 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N3028MANKVW7KQ6W9B190C", + "title": "Nelson LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Nelson region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Nelson City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[173.1432012, -41.4325902, 173.657408, -41.0417549]] }, + "temporal": { "interval": [["2021-01-09T11:00:00Z", "2021-06-23T12:00:00Z"]] } + } +} From aa6b249bd8c35ece4308187fbb7cbbdb3c084703 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:27:33 +1200 Subject: [PATCH 049/309] feat: import Nelson LiDAR 1m DEM (2021) (#74) Co-authored-by: elevation[bot] --- .../nelson_2021/dem_1m/2193/collection.json | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 stac/nelson/nelson_2021/dem_1m/2193/collection.json diff --git a/stac/nelson/nelson_2021/dem_1m/2193/collection.json b/stac/nelson/nelson_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..10630a9b --- /dev/null +++ b/stac/nelson/nelson_2021/dem_1m/2193/collection.json @@ -0,0 +1,53 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N2Y0PGT5F5YFDPW62BTS7J", + "title": "Nelson LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Nelson region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Nelson City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[173.1432012, -41.4325902, 173.657408, -41.0417549]] }, + "temporal": { "interval": [["2021-01-09T11:00:00Z", "2021-06-23T12:00:00Z"]] } + } +} From a7aa061b594372c46a81c3a5e50c85653319cf46 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:27:38 +1200 Subject: [PATCH 050/309] feat: import Otago - Dunedin and Mosgiel LiDAR 1m DEM (2021) (#73) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 stac/otago/dunedin-and-mosgiel_2021/dem_1m/2193/collection.json diff --git a/stac/otago/dunedin-and-mosgiel_2021/dem_1m/2193/collection.json b/stac/otago/dunedin-and-mosgiel_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..22a9c2bb --- /dev/null +++ b/stac/otago/dunedin-and-mosgiel_2021/dem_1m/2193/collection.json @@ -0,0 +1,32 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N3BXWF868CCTYDQQG4A570", + "title": "Otago - Dunedin and Mosgiel LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Otago - Dunedin and Mosgiel region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0403.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[170.3063778, -45.9445839, 170.5595063, -45.8095509]] }, + "temporal": { "interval": [["2021-06-23T12:00:00Z", "2021-06-23T12:00:00Z"]] } + } +} From 910b3cb74b8697d2f2df944af9f20c25491370f9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:27:41 +1200 Subject: [PATCH 051/309] feat: import Wellington - Hutt City LiDAR 1m DSM (2021) (#72) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 stac/wellington/hutt-city_2021/dsm_1m/2193/collection.json diff --git a/stac/wellington/hutt-city_2021/dsm_1m/2193/collection.json b/stac/wellington/hutt-city_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..da37e4f8 --- /dev/null +++ b/stac/wellington/hutt-city_2021/dsm_1m/2193/collection.json @@ -0,0 +1,37 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N2BW8Q71J23CRXJDQVT79T", + "title": "Wellington - Hutt City LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Wellington - Hutt City region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Hutt City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.802131, -41.3527997, 175.034859, -41.0906186]] }, + "temporal": { "interval": [["2021-03-22T11:00:00Z", "2021-03-26T11:00:00Z"]] } + } +} From f9c2ffff9f1f8a07c2084331b37eabd3f347f7a8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:27:46 +1200 Subject: [PATCH 052/309] feat: import Auckland North LiDAR 1m DEM (2016-2018) (#71) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 217 ++++++++++++++++++ 1 file changed, 217 insertions(+) create mode 100644 stac/auckland/auckland-north_2016-2018/dem_1m/2193/collection.json diff --git a/stac/auckland/auckland-north_2016-2018/dem_1m/2193/collection.json b/stac/auckland/auckland-north_2016-2018/dem_1m/2193/collection.json new file mode 100644 index 00000000..03712cda --- /dev/null +++ b/stac/auckland/auckland-north_2016-2018/dem_1m/2193/collection.json @@ -0,0 +1,217 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H7GYNVQ0015G7NNJYV5DQG0M", + "title": "Auckland North LiDAR 1m DEM (2016-2018)", + "description": "Digital Elevation Model within the Auckland North region captured in 2016-2018.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Auckland Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.0977806, -37.0772518, 175.5940431, -36.0228458]] }, + "temporal": { "interval": [["2016-08-15T12:00:00Z", "2018-08-08T12:00:00Z"]] } + } +} From fb3f0059ee34ba3b1fa8340aa3e6b17073c8e69f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:27:50 +1200 Subject: [PATCH 053/309] feat: import Wellington - Hutt City LiDAR 1m DEM (2021) (#70) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 stac/wellington/hutt-city_2021/dem_1m/2193/collection.json diff --git a/stac/wellington/hutt-city_2021/dem_1m/2193/collection.json b/stac/wellington/hutt-city_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..959727c1 --- /dev/null +++ b/stac/wellington/hutt-city_2021/dem_1m/2193/collection.json @@ -0,0 +1,37 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N2AC8W252PEAX6GNS0W4BX", + "title": "Wellington - Hutt City LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Wellington - Hutt City region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Hutt City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.802131, -41.3527997, 175.034859, -41.0906186]] }, + "temporal": { "interval": [["2021-03-22T11:00:00Z", "2021-03-26T11:00:00Z"]] } + } +} From cb67155733718b570719aab75e361c069e4e6254 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:27:53 +1200 Subject: [PATCH 054/309] feat: import Otago - Queenstown LiDAR 1m DSM (2021) (#69) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 stac/otago/queenstown_2021/dsm_1m/2193/collection.json diff --git a/stac/otago/queenstown_2021/dsm_1m/2193/collection.json b/stac/otago/queenstown_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..a48a3843 --- /dev/null +++ b/stac/otago/queenstown_2021/dsm_1m/2193/collection.json @@ -0,0 +1,38 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N256ZF2SRWMDZAJJYF8WP6", + "title": "Otago - Queenstown LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Otago - Queenstown region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0204.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Queenstown-Lakes District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[168.5763338, -45.1165141, 168.8945028, -44.9157948]] }, + "temporal": { "interval": [["2021-03-12T11:00:00Z", "2021-03-13T11:00:00Z"]] } + } +} From 51b0000223dbe0161c0477da0d463d1a47b0c448 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:27:57 +1200 Subject: [PATCH 055/309] =?UTF-8?q?feat:=20import=20Manawat=C5=AB-Whanganu?= =?UTF-8?q?i=20-=20Whanganui=20Urban=20LiDAR=201m=20DSM=20(2020-2021)=20(#?= =?UTF-8?q?68)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 stac/manawatu-whanganui/whanganui-urban_2020-2021/dsm_1m/2193/collection.json diff --git a/stac/manawatu-whanganui/whanganui-urban_2020-2021/dsm_1m/2193/collection.json b/stac/manawatu-whanganui/whanganui-urban_2020-2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..41c5c742 --- /dev/null +++ b/stac/manawatu-whanganui/whanganui-urban_2020-2021/dsm_1m/2193/collection.json @@ -0,0 +1,49 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N252FHHPMMHJQGMSF8AKB1", + "title": "Manawatū-Whanganui - Whanganui Urban LiDAR 1m DSM (2020-2021)", + "description": "Digital Surface Model within the Manawatū-Whanganui - Whanganui Urban region captured in 2020-2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Whanganui District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.8799205, -40.0534343, 175.386853, -39.7867148]] }, + "temporal": { "interval": [["2020-09-07T12:00:00Z", "2021-02-02T11:00:00Z"]] } + } +} From df2c4bb081d6c9fe907db3ddd75897d2275f4492 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:28:01 +1200 Subject: [PATCH 056/309] =?UTF-8?q?feat:=20import=20Manawat=C5=AB-Whanganu?= =?UTF-8?q?i=20-=20Whanganui=20Urban=20LiDAR=201m=20DEM=20(2020-2021)=20(#?= =?UTF-8?q?67)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 stac/manawatu-whanganui/whanganui-urban_2020-2021/dem_1m/2193/collection.json diff --git a/stac/manawatu-whanganui/whanganui-urban_2020-2021/dem_1m/2193/collection.json b/stac/manawatu-whanganui/whanganui-urban_2020-2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..0d23f275 --- /dev/null +++ b/stac/manawatu-whanganui/whanganui-urban_2020-2021/dem_1m/2193/collection.json @@ -0,0 +1,49 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N21YSARGW5D7EHGZGME1Q4", + "title": "Manawatū-Whanganui - Whanganui Urban LiDAR 1m DEM (2020-2021)", + "description": "Digital Elevation Model within the Manawatū-Whanganui - Whanganui Urban region captured in 2020-2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Whanganui District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.8799205, -40.0534343, 175.386853, -39.7867148]] }, + "temporal": { "interval": [["2020-09-07T12:00:00Z", "2021-02-02T11:00:00Z"]] } + } +} From ef397bebad39125614c0b9fce3865a19b4d3bcc1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:28:05 +1200 Subject: [PATCH 057/309] feat: import Bay of Plenty LiDAR 1m DSM (2018-2019) (#66) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 111 ++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 stac/bay-of-plenty/bay-of-plenty_2018-2019/dsm_1m/2193/collection.json diff --git a/stac/bay-of-plenty/bay-of-plenty_2018-2019/dsm_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2018-2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..2b0c6251 --- /dev/null +++ b/stac/bay-of-plenty/bay-of-plenty_2018-2019/dsm_1m/2193/collection.json @@ -0,0 +1,111 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N1V6XQAEA91M7PB24S8SBB", + "title": "Bay of Plenty LiDAR 1m DSM (2018-2019)", + "description": "Digital Surface Model within the Bay of Plenty region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0501.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "BOPLASS", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[175.8509111, -38.5211801, 177.3479462, -37.3721055]] }, + "temporal": { "interval": [["2018-11-30T11:00:00Z", "2019-04-29T12:00:00Z"]] } + } +} From 083c0c526832819b31e0c20bab5082558ccb1c4d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:28:09 +1200 Subject: [PATCH 058/309] feat: import Otago - Queenstown LiDAR 1m DEM (2021) (#65) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 stac/otago/queenstown_2021/dem_1m/2193/collection.json diff --git a/stac/otago/queenstown_2021/dem_1m/2193/collection.json b/stac/otago/queenstown_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..0ffe325a --- /dev/null +++ b/stac/otago/queenstown_2021/dem_1m/2193/collection.json @@ -0,0 +1,38 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N254E7RA3Q1XYWS0WQHTEY", + "title": "Otago - Queenstown LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Otago - Queenstown region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0204.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Queenstown-Lakes District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[168.5763338, -45.1165141, 168.8945028, -44.9157948]] }, + "temporal": { "interval": [["2021-03-12T11:00:00Z", "2021-03-13T11:00:00Z"]] } + } +} From 655326a3f20fdd743baf91c3525c87d9ef08fcbe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:28:13 +1200 Subject: [PATCH 059/309] feat: import Nelson and Tasman LiDAR 1m DEM (2008-2015) (#64) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 140 ++++++++++++++++++ 1 file changed, 140 insertions(+) create mode 100644 stac/nelson/nelson-and-tasman_2008-2015/dem_1m/2193/collection.json diff --git a/stac/nelson/nelson-and-tasman_2008-2015/dem_1m/2193/collection.json b/stac/nelson/nelson-and-tasman_2008-2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..2b0cad68 --- /dev/null +++ b/stac/nelson/nelson-and-tasman_2008-2015/dem_1m/2193/collection.json @@ -0,0 +1,140 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N1T7QR9JYSTHY5Q5DXH1NX", + "title": "Nelson and Tasman LiDAR 1m DEM (2008-2015)", + "description": "Digital Elevation Model within the Nelson and Tasman region captured in 2008-2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "\"NZ Aerial Mapping", "roles": ["producer"] }, + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "AAM NZ\"", "roles": ["producer"] }, + { "name": "\"Nelson City Council", "roles": ["licensor"] }, + { "name": "Tasman District Council\"", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.2197649, -41.8218466, 173.6014303, -40.4594477]] }, + "temporal": { "interval": [["2008-04-30T12:00:00Z", "2015-12-30T11:00:00Z"]] } + } +} From a642f139ff7c0d52dd0a1213bc461d18e469f259 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:28:17 +1200 Subject: [PATCH 060/309] feat: import Bay of Plenty LiDAR 1m DEM (2018-2019) (#63) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 111 ++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 stac/bay-of-plenty/bay-of-plenty_2018-2019/dem_1m/2193/collection.json diff --git a/stac/bay-of-plenty/bay-of-plenty_2018-2019/dem_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2018-2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..99f9dd5f --- /dev/null +++ b/stac/bay-of-plenty/bay-of-plenty_2018-2019/dem_1m/2193/collection.json @@ -0,0 +1,111 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N1V00XXT81YRAWZHB1XVV6", + "title": "Bay of Plenty LiDAR 1m DEM (2018-2019)", + "description": "Digital Elevation Model within the Bay of Plenty region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0501.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "BOPLASS", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[175.8509111, -38.5211801, 177.3479462, -37.3721055]] }, + "temporal": { "interval": [["2018-11-30T11:00:00Z", "2019-04-29T12:00:00Z"]] } + } +} From 039a667e3bcb276ca32533caff0ffea5b7d26b42 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:28:21 +1200 Subject: [PATCH 061/309] =?UTF-8?q?feat:=20import=20Wellington=20-=20K?= =?UTF-8?q?=C4=81piti=20Coast=20LiDAR=201m=20DSM=20(2021)=20(#62)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 stac/wellington/kapiti-coast_2021/dsm_1m/2193/collection.json diff --git a/stac/wellington/kapiti-coast_2021/dsm_1m/2193/collection.json b/stac/wellington/kapiti-coast_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..9576bcfd --- /dev/null +++ b/stac/wellington/kapiti-coast_2021/dsm_1m/2193/collection.json @@ -0,0 +1,44 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N1PC1WX8T8YCXWKG6DCS60", + "title": "Wellington - Kāpiti Coast LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Wellington - Kāpiti Coast region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0102.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Kāpiti Coast District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.9089866, -41.0277519, 175.2506622, -40.6337799]] }, + "temporal": { "interval": [["2021-03-12T11:00:00Z", "2021-03-14T11:00:00Z"]] } + } +} From d36c2b5010b0bfd8c56a34659c3d325d5ad45fa9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:28:25 +1200 Subject: [PATCH 062/309] =?UTF-8?q?feat:=20import=20Wellington=20-=20K?= =?UTF-8?q?=C4=81piti=20Coast=20LiDAR=201m=20DEM=20(2021)=20(#61)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 stac/wellington/kapiti-coast_2021/dem_1m/2193/collection.json diff --git a/stac/wellington/kapiti-coast_2021/dem_1m/2193/collection.json b/stac/wellington/kapiti-coast_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..541996f8 --- /dev/null +++ b/stac/wellington/kapiti-coast_2021/dem_1m/2193/collection.json @@ -0,0 +1,44 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H7GYN7M3VCK7ERN3HRZ4XYHE", + "title": "Wellington - Kāpiti Coast LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Wellington - Kāpiti Coast region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0102.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Kāpiti Coast District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.9089866, -41.0277519, 175.2506622, -40.6337799]] }, + "temporal": { "interval": [["2021-03-12T11:00:00Z", "2021-03-14T11:00:00Z"]] } + } +} From 1b23546130ec67ad0b47df40ab38fe91c4fef5bb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:28:29 +1200 Subject: [PATCH 063/309] feat: import Tasman - Golden Bay LiDAR 1m DSM (2017) (#60) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 77 +++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 stac/tasman/golden-bay_2017/dsm_1m/2193/collection.json diff --git a/stac/tasman/golden-bay_2017/dsm_1m/2193/collection.json b/stac/tasman/golden-bay_2017/dsm_1m/2193/collection.json new file mode 100644 index 00000000..79f31d90 --- /dev/null +++ b/stac/tasman/golden-bay_2017/dsm_1m/2193/collection.json @@ -0,0 +1,77 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N1H4K24AYENS579XXFGF16", + "title": "Tasman - Golden Bay LiDAR 1m DSM (2017)", + "description": "Digital Surface Model within the Tasman - Golden Bay region captured in 2017.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.401518, -41.8218757, 173.2014805, -40.4590873]] }, + "temporal": { "interval": [["2017-11-23T11:00:00Z", "2017-12-15T11:00:00Z"]] } + } +} From a9baa33563fefd1cee13bed4a7281805588c3262 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:28:33 +1200 Subject: [PATCH 064/309] feat: import Canterbury - Christchurch LiDAR 1m DSM (2020-2021) (#59) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 stac/canterbury/christchurch_2020-2021/dsm_1m/2193/collection.json diff --git a/stac/canterbury/christchurch_2020-2021/dsm_1m/2193/collection.json b/stac/canterbury/christchurch_2020-2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..35c68a95 --- /dev/null +++ b/stac/canterbury/christchurch_2020-2021/dsm_1m/2193/collection.json @@ -0,0 +1,53 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N1MX7VR2WH7M5Y33D3A6A2", + "title": "Canterbury - Christchurch LiDAR 1m DSM (2020-2021)", + "description": "Digital Surface Model within the Canterbury - Christchurch region captured in 2020-2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "\"Christchurch City Council", "roles": ["licensor"] }, + { "name": "Environment Canterbury\"", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.3758499, -43.7020304, 172.8513887, -43.376959]] }, + "temporal": { "interval": [["2020-12-17T11:00:00Z", "2021-02-16T11:00:00Z"]] } + } +} From 13ebb994165ae32567c337f5cfb22ee14e3f601d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:28:37 +1200 Subject: [PATCH 065/309] feat: import Canterbury - Christchurch LiDAR 1m DEM (2020-2021) (#58) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json diff --git a/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json b/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..43839001 --- /dev/null +++ b/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json @@ -0,0 +1,53 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H7GYMZBF93Q76DR24K0AP3AC", + "title": "Canterbury - Christchurch LiDAR 1m DEM (2020-2021)", + "description": "Digital Elevation Model within the Canterbury - Christchurch region captured in 2020-2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "\"Christchurch City Council", "roles": ["licensor"] }, + { "name": "Environment Canterbury\"", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.3758499, -43.7020304, 172.8513887, -43.376959]] }, + "temporal": { "interval": [["2020-12-17T11:00:00Z", "2021-02-16T11:00:00Z"]] } + } +} From e250fc9b96d8a75c8b4c3533b5fd66518176194d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:28:41 +1200 Subject: [PATCH 066/309] feat: import Tasman - Golden Bay LiDAR 1m DEM (2017) (#57) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 77 +++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 stac/tasman/golden-bay_2017/dem_1m/2193/collection.json diff --git a/stac/tasman/golden-bay_2017/dem_1m/2193/collection.json b/stac/tasman/golden-bay_2017/dem_1m/2193/collection.json new file mode 100644 index 00000000..16600f1b --- /dev/null +++ b/stac/tasman/golden-bay_2017/dem_1m/2193/collection.json @@ -0,0 +1,77 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N1D3Q19K8XKM44P0F3P8F0", + "title": "Tasman - Golden Bay LiDAR 1m DEM (2017)", + "description": "Digital Elevation Model within the Tasman - Golden Bay region captured in 2017.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.401518, -41.8218757, 173.2014805, -40.4590873]] }, + "temporal": { "interval": [["2017-11-23T11:00:00Z", "2017-12-15T11:00:00Z"]] } + } +} From 931c77be81f67ff3767253d8a15e925a0377ecb8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:28:45 +1200 Subject: [PATCH 067/309] feat: import Wellington - Upper Hutt City LiDAR 1m DEM (2021) (#56) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 stac/wellington/upper-hutt-city_2021/dem_1m/2193/collection.json diff --git a/stac/wellington/upper-hutt-city_2021/dem_1m/2193/collection.json b/stac/wellington/upper-hutt-city_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..c07f88f5 --- /dev/null +++ b/stac/wellington/upper-hutt-city_2021/dem_1m/2193/collection.json @@ -0,0 +1,32 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N1HAS784PPE6NMR11C6J57", + "title": "Wellington - Upper Hutt City LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Wellington - Upper Hutt City region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0104.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Upper Hutt City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.9717275, -41.2212486, 175.2023473, -41.0237366]] }, + "temporal": { "interval": [["2021-03-24T11:00:00Z", "2021-03-26T11:00:00Z"]] } + } +} From f475e1948911cecee516647857ca8cb2bcfc3446 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:28:49 +1200 Subject: [PATCH 068/309] feat: import Wellington - Upper Hutt City LiDAR 1m DSM (2021) (#55) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 stac/wellington/upper-hutt-city_2021/dsm_1m/2193/collection.json diff --git a/stac/wellington/upper-hutt-city_2021/dsm_1m/2193/collection.json b/stac/wellington/upper-hutt-city_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..2c0a5b5f --- /dev/null +++ b/stac/wellington/upper-hutt-city_2021/dsm_1m/2193/collection.json @@ -0,0 +1,32 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N1HWH2DD3B4ZP57YKFCD77", + "title": "Wellington - Upper Hutt City LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Wellington - Upper Hutt City region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0104.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Upper Hutt City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.9717275, -41.2212486, 175.2023473, -41.0237366]] }, + "temporal": { "interval": [["2021-03-24T11:00:00Z", "2021-03-26T11:00:00Z"]] } + } +} From 3ac3bae7718f6068fcd347328099c0152688a8f1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:28:53 +1200 Subject: [PATCH 069/309] feat: import Auckland South LiDAR 1m DEM (2016-2017) (#54) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 108 ++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 stac/auckland/auckland-south_2016-2017/dem_1m/2193/collection.json diff --git a/stac/auckland/auckland-south_2016-2017/dem_1m/2193/collection.json b/stac/auckland/auckland-south_2016-2017/dem_1m/2193/collection.json new file mode 100644 index 00000000..26e1d2ef --- /dev/null +++ b/stac/auckland/auckland-south_2016-2017/dem_1m/2193/collection.json @@ -0,0 +1,108 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H7GYMZBFZTRDFZ87Q2C4JXV6", + "title": "Auckland South LiDAR 1m DEM (2016-2017)", + "description": "Digital Elevation Model within the Auckland South region captured in 2016-2017.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Auckland Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.4837264, -37.3346925, 175.3504479, -36.8082191]] }, + "temporal": { "interval": [["2016-09-21T12:00:00Z", "2017-06-21T12:00:00Z"]] } + } +} From 01026147bbcaf41233a6d8ca6933ef1ec50fe28e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:28:57 +1200 Subject: [PATCH 070/309] feat: import Auckland South LiDAR 1m DSM (2016-2017) (#53) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 110 ++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 stac/auckland/auckland-south_2016-2017/dsm_1m/2193/collection.json diff --git a/stac/auckland/auckland-south_2016-2017/dsm_1m/2193/collection.json b/stac/auckland/auckland-south_2016-2017/dsm_1m/2193/collection.json new file mode 100644 index 00000000..27c94a95 --- /dev/null +++ b/stac/auckland/auckland-south_2016-2017/dsm_1m/2193/collection.json @@ -0,0 +1,110 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N10RCDEDDAVR8MFBB4YK81", + "title": "Auckland South LiDAR 1m DSM (2016-2017)", + "description": "Digital Surface Model within the Auckland South region captured in 2016-2017.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Auckland Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.4837264, -37.3346925, 175.3504479, -36.8082191]] }, + "temporal": { "interval": [["2016-09-21T12:00:00Z", "2017-06-21T12:00:00Z"]] } + } +} From cc9c20c7d557659cb8dff87bfb9bae3b38dd816f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:29:01 +1200 Subject: [PATCH 071/309] =?UTF-8?q?feat:=20import=20Manawat=C5=AB-Whanganu?= =?UTF-8?q?i=20-=20Palmerston=20North=20LiDAR=201m=20DEM=20(2018)=20(#52)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 stac/manawatu-whanganui/palmerston-north_2018/dem_1m/2193/collection.json diff --git a/stac/manawatu-whanganui/palmerston-north_2018/dem_1m/2193/collection.json b/stac/manawatu-whanganui/palmerston-north_2018/dem_1m/2193/collection.json new file mode 100644 index 00000000..0e100db4 --- /dev/null +++ b/stac/manawatu-whanganui/palmerston-north_2018/dem_1m/2193/collection.json @@ -0,0 +1,48 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N0TBSG9Q1D7N0C2FWGQRHW", + "title": "Manawatū-Whanganui - Palmerston North LiDAR 1m DEM (2018)", + "description": "Digital Elevation Model within the Manawatū-Whanganui - Palmerston North region captured in 2018.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Palmerston North City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[175.4592799, -40.5620358, 175.8008159, -40.231557]] }, + "temporal": { "interval": [["2018-08-28T12:00:00Z", "2018-09-27T12:00:00Z"]] } + } +} From 233d6a81478df85cb7b50ac533d92bca7c2b5d19 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:30:19 +1200 Subject: [PATCH 072/309] =?UTF-8?q?feat:=20import=20Manawat=C5=AB-Whanganu?= =?UTF-8?q?i=20-=20Palmerston=20North=20LiDAR=201m=20DSM=20(2018)=20(#51)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 stac/manawatu-whanganui/palmerston-north_2018/dsm_1m/2193/collection.json diff --git a/stac/manawatu-whanganui/palmerston-north_2018/dsm_1m/2193/collection.json b/stac/manawatu-whanganui/palmerston-north_2018/dsm_1m/2193/collection.json new file mode 100644 index 00000000..d10055c0 --- /dev/null +++ b/stac/manawatu-whanganui/palmerston-north_2018/dsm_1m/2193/collection.json @@ -0,0 +1,48 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N0TFZVFK6G2RDD0VT8NX33", + "title": "Manawatū-Whanganui - Palmerston North LiDAR 1m DSM (2018)", + "description": "Digital Surface Model within the Manawatū-Whanganui - Palmerston North region captured in 2018.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Palmerston North City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[175.4592799, -40.5620358, 175.8008159, -40.231557]] }, + "temporal": { "interval": [["2018-08-28T12:00:00Z", "2018-09-27T12:00:00Z"]] } + } +} From 806d9885eb22f4f05da8c9c2e11259ea65e2c2e0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:30:23 +1200 Subject: [PATCH 073/309] feat: import Tasman - Abel Tasman and Golden Bay LiDAR 1m DSM (2016) (#50) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 stac/tasman/abel-tasman-and-golden-bay_2016/dsm_1m/2193/collection.json diff --git a/stac/tasman/abel-tasman-and-golden-bay_2016/dsm_1m/2193/collection.json b/stac/tasman/abel-tasman-and-golden-bay_2016/dsm_1m/2193/collection.json new file mode 100644 index 00000000..a7b16916 --- /dev/null +++ b/stac/tasman/abel-tasman-and-golden-bay_2016/dsm_1m/2193/collection.json @@ -0,0 +1,53 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N0H9ZGG2Y8QFTAJBZ0R8A2", + "title": "Tasman - Abel Tasman and Golden Bay LiDAR 1m DSM (2016)", + "description": "Digital Surface Model within the Tasman - Abel Tasman and Golden Bay region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.6868094, -41.1733388, 173.0857515, -40.7188997]] }, + "temporal": { "interval": [["2016-12-12T11:00:00Z", "2016-12-13T11:00:00Z"]] } + } +} From 9bfc202f0f12f8018cdd8c5fb0d37d6435da2c6c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:30:27 +1200 Subject: [PATCH 074/309] feat: import Otago - Balclutha LiDAR 1m DSM (2020) (#49) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 stac/otago/balclutha_2020/dsm_1m/2193/collection.json diff --git a/stac/otago/balclutha_2020/dsm_1m/2193/collection.json b/stac/otago/balclutha_2020/dsm_1m/2193/collection.json new file mode 100644 index 00000000..f37b4cf4 --- /dev/null +++ b/stac/otago/balclutha_2020/dsm_1m/2193/collection.json @@ -0,0 +1,49 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N0SYH9TZSTJFJH2WNPRF9J", + "title": "Otago - Balclutha LiDAR 1m DSM (2020)", + "description": "Digital Surface Model within the Otago - Balclutha region captured in 2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[169.5984967, -46.4456066, 169.9866335, -46.1150135]] }, + "temporal": { "interval": [["2020-01-15T11:00:00Z", "2020-01-17T11:00:00Z"]] } + } +} From c693d4a8589200b7a1e13692f005696cac6a9858 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:30:30 +1200 Subject: [PATCH 075/309] feat: import Otago - Balclutha LiDAR 1m DEM (2020) (#48) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 stac/otago/balclutha_2020/dem_1m/2193/collection.json diff --git a/stac/otago/balclutha_2020/dem_1m/2193/collection.json b/stac/otago/balclutha_2020/dem_1m/2193/collection.json new file mode 100644 index 00000000..2b9b7ade --- /dev/null +++ b/stac/otago/balclutha_2020/dem_1m/2193/collection.json @@ -0,0 +1,49 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N0KFCMHWZKTGRRRJBW8P88", + "title": "Otago - Balclutha LiDAR 1m DEM (2020)", + "description": "Digital Elevation Model within the Otago - Balclutha region captured in 2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[169.5984967, -46.4456066, 169.9866335, -46.1150135]] }, + "temporal": { "interval": [["2020-01-15T11:00:00Z", "2020-01-17T11:00:00Z"]] } + } +} From fac539c0dc2d068927fef029e8a4eb68a0a1202b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:30:33 +1200 Subject: [PATCH 076/309] feat: import Tasman - Abel Tasman and Golden Bay LiDAR 1m DEM (2016) (#47) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 stac/tasman/abel-tasman-and-golden-bay_2016/dem_1m/2193/collection.json diff --git a/stac/tasman/abel-tasman-and-golden-bay_2016/dem_1m/2193/collection.json b/stac/tasman/abel-tasman-and-golden-bay_2016/dem_1m/2193/collection.json new file mode 100644 index 00000000..24661930 --- /dev/null +++ b/stac/tasman/abel-tasman-and-golden-bay_2016/dem_1m/2193/collection.json @@ -0,0 +1,53 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N0FG2HT8VGPSFPSH2K26M2", + "title": "Tasman - Abel Tasman and Golden Bay LiDAR 1m DEM (2016)", + "description": "Digital Elevation Model within the Tasman - Abel Tasman and Golden Bay region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.6868094, -41.1733388, 173.0857515, -40.7188997]] }, + "temporal": { "interval": [["2016-12-12T11:00:00Z", "2016-12-13T11:00:00Z"]] } + } +} From 1c01389ed92e5d357b8eb483d725a6c7f80cb20f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:30:37 +1200 Subject: [PATCH 077/309] feat: import Canterbury LiDAR 1m DSM (2016-2017) (#46) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 200 ++++++++++++++++++ 1 file changed, 200 insertions(+) create mode 100644 stac/canterbury/canterbury_2016-2017/dsm_1m/2193/collection.json diff --git a/stac/canterbury/canterbury_2016-2017/dsm_1m/2193/collection.json b/stac/canterbury/canterbury_2016-2017/dsm_1m/2193/collection.json new file mode 100644 index 00000000..dcb5ce40 --- /dev/null +++ b/stac/canterbury/canterbury_2016-2017/dsm_1m/2193/collection.json @@ -0,0 +1,200 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N0EVDWZSHXVV1YQK1CS35E", + "title": "Canterbury LiDAR 1m DSM (2016-2017)", + "description": "Digital Surface Model within the Canterbury region captured in 2016-2017.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[169.7662116, -45.432701, 172.672706, -43.4392042]] }, + "temporal": { "interval": [["2016-10-31T11:00:00Z", "2017-01-30T11:00:00Z"]] } + } +} From c5dc2968e001962578792e909f3441a1f5781403 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:30:41 +1200 Subject: [PATCH 078/309] feat: import Canterbury LiDAR 1m DEM (2016-2017) (#45) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 200 ++++++++++++++++++ 1 file changed, 200 insertions(+) create mode 100644 stac/canterbury/canterbury_2016-2017/dem_1m/2193/collection.json diff --git a/stac/canterbury/canterbury_2016-2017/dem_1m/2193/collection.json b/stac/canterbury/canterbury_2016-2017/dem_1m/2193/collection.json new file mode 100644 index 00000000..4d407aca --- /dev/null +++ b/stac/canterbury/canterbury_2016-2017/dem_1m/2193/collection.json @@ -0,0 +1,200 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N06W6QGTVZDRDBHV2P57EV", + "title": "Canterbury LiDAR 1m DEM (2016-2017)", + "description": "Digital Elevation Model within the Canterbury region captured in 2016-2017.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[169.7662116, -45.432701, 172.672706, -43.4392042]] }, + "temporal": { "interval": [["2016-10-31T11:00:00Z", "2017-01-30T11:00:00Z"]] } + } +} From 7a76ebb2d57d341bff4edef4e138095dbf36a48d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:30:45 +1200 Subject: [PATCH 079/309] feat: import Tasman - Richmond and Motueka LiDAR 1m DSM (2015) (#44) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 stac/tasman/richmond-and-motueka_2015/dsm_1m/2193/collection.json diff --git a/stac/tasman/richmond-and-motueka_2015/dsm_1m/2193/collection.json b/stac/tasman/richmond-and-motueka_2015/dsm_1m/2193/collection.json new file mode 100644 index 00000000..fd334a86 --- /dev/null +++ b/stac/tasman/richmond-and-motueka_2015/dsm_1m/2193/collection.json @@ -0,0 +1,47 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N06NAENW95RBY17MN2M00A", + "title": "Tasman - Richmond and Motueka LiDAR 1m DSM (2015)", + "description": "Digital Surface Model within the Tasman - Richmond and Motueka region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.914164, -41.4976164, 173.2582727, -41.0435943]] }, + "temporal": { "interval": [["2015-11-12T11:00:00Z", "2015-11-13T11:00:00Z"]] } + } +} From 6441485c38e9a12eb2cfe43259a2ffba8439722b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:30:49 +1200 Subject: [PATCH 080/309] feat: import Tasman - Richmond and Motueka LiDAR 1m DEM (2015) (#43) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 stac/tasman/richmond-and-motueka_2015/dem_1m/2193/collection.json diff --git a/stac/tasman/richmond-and-motueka_2015/dem_1m/2193/collection.json b/stac/tasman/richmond-and-motueka_2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..6fdd83d5 --- /dev/null +++ b/stac/tasman/richmond-and-motueka_2015/dem_1m/2193/collection.json @@ -0,0 +1,47 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N05QZCR6M04B93K27WRFZ1", + "title": "Tasman - Richmond and Motueka LiDAR 1m DEM (2015)", + "description": "Digital Elevation Model within the Tasman - Richmond and Motueka region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.914164, -41.4976164, 173.2582727, -41.0435943]] }, + "temporal": { "interval": [["2015-11-12T11:00:00Z", "2015-11-13T11:00:00Z"]] } + } +} From b3314c4f61892fc1b78cdea50131bbcb56d86754 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:30:52 +1200 Subject: [PATCH 081/309] feat: import Canterbury - Banks Peninsula LiDAR 1m DEM (2018-2019) (#42) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 72 +++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 stac/canterbury/banks-peninsula_2018-2019/dem_1m/2193/collection.json diff --git a/stac/canterbury/banks-peninsula_2018-2019/dem_1m/2193/collection.json b/stac/canterbury/banks-peninsula_2018-2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..124b3ee6 --- /dev/null +++ b/stac/canterbury/banks-peninsula_2018-2019/dem_1m/2193/collection.json @@ -0,0 +1,72 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MZPSK3G7GBJWQQZSNPBQHZ", + "title": "Canterbury - Banks Peninsula LiDAR 1m DEM (2018-2019)", + "description": "Digital Elevation Model within the Canterbury - Banks Peninsula region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.5527303, -43.9615254, 173.149415, -43.5716925]] }, + "temporal": { "interval": [["2018-07-17T12:00:00Z", "2019-02-09T11:00:00Z"]] } + } +} From 292df8a34dde5350ecefc10434fb43a3e0f04465 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:30:56 +1200 Subject: [PATCH 082/309] feat: import Canterbury - Banks Peninsula LiDAR 1m DSM (2018-2019) (#41) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 72 +++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 stac/canterbury/banks-peninsula_2018-2019/dsm_1m/2193/collection.json diff --git a/stac/canterbury/banks-peninsula_2018-2019/dsm_1m/2193/collection.json b/stac/canterbury/banks-peninsula_2018-2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..37693d1d --- /dev/null +++ b/stac/canterbury/banks-peninsula_2018-2019/dsm_1m/2193/collection.json @@ -0,0 +1,72 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6N04ET1C6XKCVQ2ZA6A0FZQ", + "title": "Canterbury - Banks Peninsula LiDAR 1m DSM (2018-2019)", + "description": "Digital Surface Model within the Canterbury - Banks Peninsula region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.5527303, -43.9615254, 173.149415, -43.5716925]] }, + "temporal": { "interval": [["2018-07-17T12:00:00Z", "2019-02-09T11:00:00Z"]] } + } +} From 013f0e51e3974ca4a2f49090f6ab771ba15ce458 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:00 +1200 Subject: [PATCH 083/309] =?UTF-8?q?feat:=20import=20Manawat=C5=AB=20-=20Wh?= =?UTF-8?q?anganui=20LiDAR=201m=20DSM=20(2015-2016)=20(#40)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 178 ++++++++++++++++++ 1 file changed, 178 insertions(+) create mode 100644 stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dsm_1m/2193/collection.json diff --git a/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dsm_1m/2193/collection.json b/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dsm_1m/2193/collection.json new file mode 100644 index 00000000..f0c3b5cb --- /dev/null +++ b/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dsm_1m/2193/collection.json @@ -0,0 +1,178 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MYEVKNBME6K5GBXJ3AGR7C", + "title": "Manawatū - Whanganui LiDAR 1m DSM (2015-2016)", + "description": "Digital Surface Model within the Manawatū - Whanganui region captured in 2015-2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Horizons Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.7100346, -40.765512, 176.0833559, -38.7557257]] }, + "temporal": { "interval": [["2015-12-26T11:00:00Z", "2016-12-16T11:00:00Z"]] } + } +} From d9584dc0e7a0f1076df0b54f556f3036289faab9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:04 +1200 Subject: [PATCH 084/309] =?UTF-8?q?feat:=20import=20Manawat=C5=AB=20-=20Wh?= =?UTF-8?q?anganui=20LiDAR=201m=20DEM=20(2015-2016)=20(#39)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 178 ++++++++++++++++++ 1 file changed, 178 insertions(+) create mode 100644 stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dem_1m/2193/collection.json diff --git a/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dem_1m/2193/collection.json b/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dem_1m/2193/collection.json new file mode 100644 index 00000000..130a2ea2 --- /dev/null +++ b/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dem_1m/2193/collection.json @@ -0,0 +1,178 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MYDNJXZNHBBPNZXAY6ZHQN", + "title": "Manawatū - Whanganui LiDAR 1m DEM (2015-2016)", + "description": "Digital Elevation Model within the Manawatū - Whanganui region captured in 2015-2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Horizons Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.7100346, -40.765512, 176.0833559, -38.7557257]] }, + "temporal": { "interval": [["2015-12-26T11:00:00Z", "2016-12-16T11:00:00Z"]] } + } +} From 223b61c2e4d7d096202223c1a8634c3a1223662d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:07 +1200 Subject: [PATCH 085/309] feat: import Canterbury - Christchurch and Ashley River LiDAR 1m DEM (2018-2019) (#38) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 61 +++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 stac/canterbury/christchurch-and-ashley-river_2018-2019/dem_1m/2193/collection.json diff --git a/stac/canterbury/christchurch-and-ashley-river_2018-2019/dem_1m/2193/collection.json b/stac/canterbury/christchurch-and-ashley-river_2018-2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..da28f980 --- /dev/null +++ b/stac/canterbury/christchurch-and-ashley-river_2018-2019/dem_1m/2193/collection.json @@ -0,0 +1,61 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MY7J5WYBC5BWYCEWB65096", + "title": "Canterbury - Christchurch and Ashley River LiDAR 1m DEM (2018-2019)", + "description": "Digital Elevation Model within the Canterbury - Christchurch and Ashley River region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.3758499, -43.7020304, 172.8513887, -43.1818868]] }, + "temporal": { "interval": [["2018-07-19T12:00:00Z", "2019-02-28T11:00:00Z"]] } + } +} From e3acba7a34bb06a397420a029a923593141fc71d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:11 +1200 Subject: [PATCH 086/309] feat: import Marlborough LiDAR 1m DEM (2018) (#37) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 77 +++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 stac/marlborough/marlborough_2018/dem_1m/2193/collection.json diff --git a/stac/marlborough/marlborough_2018/dem_1m/2193/collection.json b/stac/marlborough/marlborough_2018/dem_1m/2193/collection.json new file mode 100644 index 00000000..120f90a4 --- /dev/null +++ b/stac/marlborough/marlborough_2018/dem_1m/2193/collection.json @@ -0,0 +1,77 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H7GXPYWA568JTM3S66RK5ZMR", + "title": "Marlborough LiDAR 1m DEM (2018)", + "description": "Digital Elevation Model within the Marlborough region captured in 2018.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Marlborough District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[173.2590459, -41.948916, 174.2425113, -41.2327826]] }, + "temporal": { "interval": [["2018-05-25T12:00:00Z", "2018-09-11T12:00:00Z"]] } + } +} From 78b3c693cefa34c7aceda2bc841d8adc887e6686 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:15 +1200 Subject: [PATCH 087/309] feat: import Canterbury - Christchurch and Ashley River LiDAR 1m DSM (2018-2019) (#36) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 61 +++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 stac/canterbury/christchurch-and-ashley-river_2018-2019/dsm_1m/2193/collection.json diff --git a/stac/canterbury/christchurch-and-ashley-river_2018-2019/dsm_1m/2193/collection.json b/stac/canterbury/christchurch-and-ashley-river_2018-2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..46f96635 --- /dev/null +++ b/stac/canterbury/christchurch-and-ashley-river_2018-2019/dsm_1m/2193/collection.json @@ -0,0 +1,61 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MY8NJYXBB9V98DRSE5QD1K", + "title": "Canterbury - Christchurch and Ashley River LiDAR 1m DSM (2018-2019)", + "description": "Digital Surface Model within the Canterbury - Christchurch and Ashley River region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.3758499, -43.7020304, 172.8513887, -43.1818868]] }, + "temporal": { "interval": [["2018-07-19T12:00:00Z", "2019-02-28T11:00:00Z"]] } + } +} From ed528ee1eab5e4aacb8f80ded1b5740865263425 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:19 +1200 Subject: [PATCH 088/309] feat: import Marlborough LiDAR 1m DSM (2018) (#35) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 77 +++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 stac/marlborough/marlborough_2018/dsm_1m/2193/collection.json diff --git a/stac/marlborough/marlborough_2018/dsm_1m/2193/collection.json b/stac/marlborough/marlborough_2018/dsm_1m/2193/collection.json new file mode 100644 index 00000000..26853349 --- /dev/null +++ b/stac/marlborough/marlborough_2018/dsm_1m/2193/collection.json @@ -0,0 +1,77 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H7GXQPTMTXW985R0SDBAMT3F", + "title": "Marlborough LiDAR 1m DSM (2018)", + "description": "Digital Surface Model within the Marlborough region captured in 2018.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Marlborough District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[173.2590459, -41.948916, 174.2425113, -41.2327826]] }, + "temporal": { "interval": [["2018-05-25T12:00:00Z", "2018-09-11T12:00:00Z"]] } + } +} From d76dc4b11b6cd76990794527999235385f8217af Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:23 +1200 Subject: [PATCH 089/309] feat: import Waikato - Hamilton LiDAR 1m DEM (2019) (#34) Co-authored-by: elevation[bot] --- .../hamilton_2019/dem_1m/2193/collection.json | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 stac/waikato/hamilton_2019/dem_1m/2193/collection.json diff --git a/stac/waikato/hamilton_2019/dem_1m/2193/collection.json b/stac/waikato/hamilton_2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..f5ea43fc --- /dev/null +++ b/stac/waikato/hamilton_2019/dem_1m/2193/collection.json @@ -0,0 +1,48 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MX5ANWAXWS9KJCMED2VRJ8", + "title": "Waikato - Hamilton LiDAR 1m DEM (2019)", + "description": "Digital Elevation Model within the Waikato - Hamilton region captured in 2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0502.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Hamilton City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[175.0930298, -37.9097967, 175.4295474, -37.5845465]] }, + "temporal": { "interval": [["2019-11-02T11:00:00Z", "2019-11-04T11:00:00Z"]] } + } +} From c55aa48719a2cb698206376b9951ef48356c815d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:26 +1200 Subject: [PATCH 090/309] feat: import Waikato - Hamilton LiDAR 1m DSM (2019) (#33) Co-authored-by: elevation[bot] --- .../hamilton_2019/dsm_1m/2193/collection.json | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 stac/waikato/hamilton_2019/dsm_1m/2193/collection.json diff --git a/stac/waikato/hamilton_2019/dsm_1m/2193/collection.json b/stac/waikato/hamilton_2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..bb76c3b2 --- /dev/null +++ b/stac/waikato/hamilton_2019/dsm_1m/2193/collection.json @@ -0,0 +1,48 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MX6QS9SS9EXR41H1J3QV0X", + "title": "Waikato - Hamilton LiDAR 1m DSM (2019)", + "description": "Digital Surface Model within the Waikato - Hamilton region captured in 2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0502.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Hamilton City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[175.0930298, -37.9097967, 175.4295474, -37.5845465]] }, + "temporal": { "interval": [["2019-11-02T11:00:00Z", "2019-11-04T11:00:00Z"]] } + } +} From 775e4084f0a2d555966b68c311458f98fe40b48a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:30 +1200 Subject: [PATCH 091/309] feat: import Canterbury LiDAR 1m DSM (2018-2019) (#32) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 315 ++++++++++++++++++ 1 file changed, 315 insertions(+) create mode 100644 stac/canterbury/canterbury_2018-2019/dsm_1m/2193/collection.json diff --git a/stac/canterbury/canterbury_2018-2019/dsm_1m/2193/collection.json b/stac/canterbury/canterbury_2018-2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..7759d8a7 --- /dev/null +++ b/stac/canterbury/canterbury_2018-2019/dsm_1m/2193/collection.json @@ -0,0 +1,315 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MX1VM221WN8QYRYH99QVAJ", + "title": "Canterbury LiDAR 1m DSM (2018-2019)", + "description": "Digital Surface Model within the Canterbury region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BU23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[170.6822667, -44.98452, 173.1465831, -42.5999333]] }, + "temporal": { "interval": [["2018-03-13T11:00:00Z", "2019-04-30T12:00:00Z"]] } + } +} From 666cc194a96c8a3450e246826066079c6cbfb7c5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:33 +1200 Subject: [PATCH 092/309] feat: import Canterbury LiDAR 1m DEM (2018-2019) (#31) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 315 ++++++++++++++++++ 1 file changed, 315 insertions(+) create mode 100644 stac/canterbury/canterbury_2018-2019/dem_1m/2193/collection.json diff --git a/stac/canterbury/canterbury_2018-2019/dem_1m/2193/collection.json b/stac/canterbury/canterbury_2018-2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..3fbd3004 --- /dev/null +++ b/stac/canterbury/canterbury_2018-2019/dem_1m/2193/collection.json @@ -0,0 +1,315 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MX09NP65GC05WZ7KZSDGZ0", + "title": "Canterbury LiDAR 1m DEM (2018-2019)", + "description": "Digital Elevation Model within the Canterbury region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BU23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[170.6822667, -44.98452, 173.1465831, -42.5999333]] }, + "temporal": { "interval": [["2018-03-13T11:00:00Z", "2019-04-30T12:00:00Z"]] } + } +} From c88ccd80e76e535432e3d78e21ee6eb7a5e2995f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:37 +1200 Subject: [PATCH 093/309] feat: import Waikato - Huntly LiDAR 1m DSM (2015-2019) (#30) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 78 +++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 stac/waikato/huntly_2015-2019/dsm_1m/2193/collection.json diff --git a/stac/waikato/huntly_2015-2019/dsm_1m/2193/collection.json b/stac/waikato/huntly_2015-2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..be34c927 --- /dev/null +++ b/stac/waikato/huntly_2015-2019/dsm_1m/2193/collection.json @@ -0,0 +1,78 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MWVQVN83JB4QF86RK2AAX1", + "title": "Waikato - Huntly LiDAR 1m DSM (2015-2019)", + "description": "Digital Surface Model within the Waikato - Huntly region captured in 2015-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.6525807, -37.6503992, 175.688171, -37.196423]] }, + "temporal": { "interval": [["2015-01-31T11:00:00Z", "2019-01-30T11:00:00Z"]] } + } +} From 34f4dadd7feb3ee954606e0202104d8920d9c6b5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:41 +1200 Subject: [PATCH 094/309] feat: import Waikato - Huntly LiDAR 1m DEM (2015-2019) (#29) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 78 +++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 stac/waikato/huntly_2015-2019/dem_1m/2193/collection.json diff --git a/stac/waikato/huntly_2015-2019/dem_1m/2193/collection.json b/stac/waikato/huntly_2015-2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..7557189b --- /dev/null +++ b/stac/waikato/huntly_2015-2019/dem_1m/2193/collection.json @@ -0,0 +1,78 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MWV65TYVF4APWY45S7F87Z", + "title": "Waikato - Huntly LiDAR 1m DEM (2015-2019)", + "description": "Digital Elevation Model within the Waikato - Huntly region captured in 2015-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.6525807, -37.6503992, 175.688171, -37.196423]] }, + "temporal": { "interval": [["2015-01-31T11:00:00Z", "2019-01-30T11:00:00Z"]] } + } +} From fcbb3ae4e47b955e8c4ce53d3a6276797931e5a2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:46 +1200 Subject: [PATCH 095/309] feat: import Wellington City LiDAR 1m DEM (2019-2020) (#28) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 stac/wellington/wellington-city_2019-2020/dem_1m/2193/collection.json diff --git a/stac/wellington/wellington-city_2019-2020/dem_1m/2193/collection.json b/stac/wellington/wellington-city_2019-2020/dem_1m/2193/collection.json new file mode 100644 index 00000000..5b36d459 --- /dev/null +++ b/stac/wellington/wellington-city_2019-2020/dem_1m/2193/collection.json @@ -0,0 +1,37 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H7GWW48C9K2AXK5MRSA6BGGP", + "title": "Wellington City LiDAR 1m DEM (2019-2020)", + "description": "Digital Elevation Model within the Wellington City region captured in 2019-2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Wellington City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.6877591, -41.4202865, 174.9202826, -41.0935096]] }, + "temporal": { "interval": [["2019-03-19T11:00:00Z", "2020-03-13T11:00:00Z"]] } + } +} From d72b4d94a0adb19deb0264696b1cadfcd07dbcd0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:49 +1200 Subject: [PATCH 096/309] feat: import Wellington City LiDAR 1m DSM (2019-2020) (#27) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 stac/wellington/wellington-city_2019-2020/dsm_1m/2193/collection.json diff --git a/stac/wellington/wellington-city_2019-2020/dsm_1m/2193/collection.json b/stac/wellington/wellington-city_2019-2020/dsm_1m/2193/collection.json new file mode 100644 index 00000000..dd0a1a6d --- /dev/null +++ b/stac/wellington/wellington-city_2019-2020/dsm_1m/2193/collection.json @@ -0,0 +1,37 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H7GXPYVT65JPN0DYWS5HZCQS", + "title": "Wellington City LiDAR 1m DSM (2019-2020)", + "description": "Digital Surface Model within the Wellington City region captured in 2019-2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Wellington City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.6877591, -41.4202865, 174.9202826, -41.0935096]] }, + "temporal": { "interval": [["2019-03-19T11:00:00Z", "2020-03-13T11:00:00Z"]] } + } +} From cdd6f6d600e7b5791c3c3708daea8015a1b9e069 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:53 +1200 Subject: [PATCH 097/309] feat: import Waikato - Thames LiDAR 1m DSM (2017-2019) (#26) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 stac/waikato/thames_2017-2019/dsm_1m/2193/collection.json diff --git a/stac/waikato/thames_2017-2019/dsm_1m/2193/collection.json b/stac/waikato/thames_2017-2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..86530c00 --- /dev/null +++ b/stac/waikato/thames_2017-2019/dsm_1m/2193/collection.json @@ -0,0 +1,38 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MWZRNCK20A9R8H68SBGFWN", + "title": "Waikato - Thames LiDAR 1m DSM (2017-2019)", + "description": "Digital Surface Model within the Waikato - Thames region captured in 2017-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[175.5102693, -37.4459782, 175.7400516, -37.0581599]] }, + "temporal": { "interval": [["2017-07-01T12:00:00Z", "2019-02-03T11:00:00Z"]] } + } +} From 218fa2022f86f4e6ce51a9717217bedb41f9afb3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:31:57 +1200 Subject: [PATCH 098/309] feat: import Waikato - Thames LiDAR 1m DEM (2017-2019) (#25) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 stac/waikato/thames_2017-2019/dem_1m/2193/collection.json diff --git a/stac/waikato/thames_2017-2019/dem_1m/2193/collection.json b/stac/waikato/thames_2017-2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..89f82a25 --- /dev/null +++ b/stac/waikato/thames_2017-2019/dem_1m/2193/collection.json @@ -0,0 +1,38 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MWZD4JWXAN6RPAWX6MZEET", + "title": "Waikato - Thames LiDAR 1m DEM (2017-2019)", + "description": "Digital Elevation Model within the Waikato - Thames region captured in 2017-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[175.5102693, -37.4459782, 175.7400516, -37.0581599]] }, + "temporal": { "interval": [["2017-07-01T12:00:00Z", "2019-02-03T11:00:00Z"]] } + } +} From b827b69711014deaf034bee9eb663592ec7a191d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:32:01 +1200 Subject: [PATCH 099/309] feat: import Otago LiDAR 1m DEM (2016) (#24) Co-authored-by: elevation[bot] --- .../otago_2016/dem_1m/2193/collection.json | 185 ++++++++++++++++++ 1 file changed, 185 insertions(+) create mode 100644 stac/otago/otago_2016/dem_1m/2193/collection.json diff --git a/stac/otago/otago_2016/dem_1m/2193/collection.json b/stac/otago/otago_2016/dem_1m/2193/collection.json new file mode 100644 index 00000000..40fe30bf --- /dev/null +++ b/stac/otago/otago_2016/dem_1m/2193/collection.json @@ -0,0 +1,185 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MW0YMS2SY95CGRFJQZ4073", + "title": "Otago LiDAR 1m DEM (2016)", + "description": "Digital Elevation Model within the Otago region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[168.8244481, -46.4456066, 171.2058988, -44.6725407]] }, + "temporal": { "interval": [["2016-03-01T11:00:00Z", "2016-04-09T12:00:00Z"]] } + } +} From 9a11cf3f47804ab2c81c27b76b8dadcac52fcec4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:32:04 +1200 Subject: [PATCH 100/309] feat: import Otago LiDAR 1m DSM (2016) (#23) Co-authored-by: elevation[bot] --- .../otago_2016/dsm_1m/2193/collection.json | 185 ++++++++++++++++++ 1 file changed, 185 insertions(+) create mode 100644 stac/otago/otago_2016/dsm_1m/2193/collection.json diff --git a/stac/otago/otago_2016/dsm_1m/2193/collection.json b/stac/otago/otago_2016/dsm_1m/2193/collection.json new file mode 100644 index 00000000..19288a1c --- /dev/null +++ b/stac/otago/otago_2016/dsm_1m/2193/collection.json @@ -0,0 +1,185 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MW0YTX56BV5Q6QJ8GF6S0B", + "title": "Otago LiDAR 1m DSM (2016)", + "description": "Digital Surface Model within the Otago region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[168.8244481, -46.4456066, 171.2058988, -44.6725407]] }, + "temporal": { "interval": [["2016-03-01T11:00:00Z", "2016-04-09T12:00:00Z"]] } + } +} From 7c832bf8845baeb42a94cefbca8caf25691b3c17 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 01:32:08 +0000 Subject: [PATCH 101/309] feat: import Tasman - Motueka River Valley LiDAR 1m DSM (2018-2019) (#22) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 stac/tasman/motueka-river-valley_2018-2019/dsm_1m/2193/collection.json diff --git a/stac/tasman/motueka-river-valley_2018-2019/dsm_1m/2193/collection.json b/stac/tasman/motueka-river-valley_2018-2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..e9d77ceb --- /dev/null +++ b/stac/tasman/motueka-river-valley_2018-2019/dsm_1m/2193/collection.json @@ -0,0 +1,54 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MW0YMT940QHDBFKNBYWFB7", + "title": "Tasman - Motueka River Valley LiDAR 1m DSM (2018-2019)", + "description": "Digital Surface Model within the Tasman - Motueka River Valley region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.5686916, -41.4975302, 173.1434853, -41.0435377]] }, + "temporal": { "interval": [["2018-11-14T11:00:00Z", "2019-02-12T11:00:00Z"]] } + } +} From 4d0137eb8d7ceb1842007f593b5cc81727e948c2 Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Fri, 18 Aug 2023 13:54:13 +1200 Subject: [PATCH 102/309] fix: remove extraneous quotes in providers (#110) --- .../christchurch_2020-2021/dsm_1m/2193/collection.json | 4 ++-- .../dem_1m/2193/collection.json | 4 ++-- .../dsm_1m/2193/collection.json | 4 ++-- .../dem_1m/2193/collection.json | 8 ++++---- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/stac/canterbury/christchurch_2020-2021/dsm_1m/2193/collection.json b/stac/canterbury/christchurch_2020-2021/dsm_1m/2193/collection.json index 35c68a95..553eabb3 100644 --- a/stac/canterbury/christchurch_2020-2021/dsm_1m/2193/collection.json +++ b/stac/canterbury/christchurch_2020-2021/dsm_1m/2193/collection.json @@ -42,8 +42,8 @@ ], "providers": [ { "name": "Landpro", "roles": ["producer"] }, - { "name": "\"Christchurch City Council", "roles": ["licensor"] }, - { "name": "Environment Canterbury\"", "roles": ["licensor"] }, + { "name": "Christchurch City Council", "roles": ["licensor"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], "extent": { diff --git a/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dem_1m/2193/collection.json b/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dem_1m/2193/collection.json index f79d1c31..294a1897 100644 --- a/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dem_1m/2193/collection.json +++ b/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dem_1m/2193/collection.json @@ -71,10 +71,10 @@ ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, - { "name": "\"Nelson City Council", "roles": ["licensor"] }, + { "name": "Nelson City Council", "roles": ["licensor"] }, { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Waka Kotahi", "roles": ["licensor"] }, - { "name": "National Emergency Management Agency\"", "roles": ["licensor"] }, + { "name": "National Emergency Management Agency", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], "extent": { diff --git a/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dsm_1m/2193/collection.json b/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dsm_1m/2193/collection.json index 42f19636..11fa9d26 100644 --- a/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dsm_1m/2193/collection.json +++ b/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dsm_1m/2193/collection.json @@ -71,10 +71,10 @@ ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, - { "name": "\"Nelson City Council", "roles": ["licensor"] }, + { "name": "Nelson City Council", "roles": ["licensor"] }, { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Waka Kotahi", "roles": ["licensor"] }, - { "name": "National Emergency Management Agency\"", "roles": ["licensor"] }, + { "name": "National Emergency Management Agency", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], "extent": { diff --git a/stac/nelson/nelson-and-tasman_2008-2015/dem_1m/2193/collection.json b/stac/nelson/nelson-and-tasman_2008-2015/dem_1m/2193/collection.json index 2b0cad68..f4501286 100644 --- a/stac/nelson/nelson-and-tasman_2008-2015/dem_1m/2193/collection.json +++ b/stac/nelson/nelson-and-tasman_2008-2015/dem_1m/2193/collection.json @@ -126,11 +126,11 @@ { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" } ], "providers": [ - { "name": "\"NZ Aerial Mapping", "roles": ["producer"] }, + { "name": "NZ Aerial Mapping", "roles": ["producer"] }, { "name": "Aerial Surveys", "roles": ["producer"] }, - { "name": "AAM NZ\"", "roles": ["producer"] }, - { "name": "\"Nelson City Council", "roles": ["licensor"] }, - { "name": "Tasman District Council\"", "roles": ["licensor"] }, + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Nelson City Council", "roles": ["licensor"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], "extent": { From 42c55e03a7bd5d8ff54a81a8c3dc089bf3df8859 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:54:16 +1200 Subject: [PATCH 103/309] feat: import Waikato - Reporoa and Upper Piako River LiDAR 1m DSM (2019) (#21) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 stac/waikato/reporoa-and-upper-piako-river_2019/dsm_1m/2193/collection.json diff --git a/stac/waikato/reporoa-and-upper-piako-river_2019/dsm_1m/2193/collection.json b/stac/waikato/reporoa-and-upper-piako-river_2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..003b4cd4 --- /dev/null +++ b/stac/waikato/reporoa-and-upper-piako-river_2019/dsm_1m/2193/collection.json @@ -0,0 +1,51 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MV682Q281QWG8J9JN1P9VE", + "title": "Waikato - Reporoa and Upper Piako River LiDAR 1m DSM (2019)", + "description": "Digital Surface Model within the Waikato - Reporoa and Upper Piako River region captured in 2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0402.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[175.584141, -38.5310391, 176.5480563, -37.6392367]] }, + "temporal": { "interval": [["2019-04-15T12:00:00Z", "2019-04-16T12:00:00Z"]] } + } +} From 3e279aa2d7bd18a076bf66390ec0c2b17f6e9ad8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:54:25 +1200 Subject: [PATCH 104/309] feat: import Waikato - Reporoa and Upper Piako River LiDAR 1m DEM (2019) (#19) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 stac/waikato/reporoa-and-upper-piako-river_2019/dem_1m/2193/collection.json diff --git a/stac/waikato/reporoa-and-upper-piako-river_2019/dem_1m/2193/collection.json b/stac/waikato/reporoa-and-upper-piako-river_2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..8219e7ea --- /dev/null +++ b/stac/waikato/reporoa-and-upper-piako-river_2019/dem_1m/2193/collection.json @@ -0,0 +1,51 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MV67Y20D6T4YKVQYRDPT99", + "title": "Waikato - Reporoa and Upper Piako River LiDAR 1m DEM (2019)", + "description": "Digital Elevation Model within the Waikato - Reporoa and Upper Piako River region captured in 2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0402.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[175.584141, -38.5310391, 176.5480563, -37.6392367]] }, + "temporal": { "interval": [["2019-04-15T12:00:00Z", "2019-04-16T12:00:00Z"]] } + } +} From 7f633a77a2c5314f9ca947c13027a0e5fcdf405b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:54:29 +1200 Subject: [PATCH 105/309] feat: import Tasman - Motueka River Valley LiDAR 1m DEM (2018-2019) (#18) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 stac/tasman/motueka-river-valley_2018-2019/dem_1m/2193/collection.json diff --git a/stac/tasman/motueka-river-valley_2018-2019/dem_1m/2193/collection.json b/stac/tasman/motueka-river-valley_2018-2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..63c7acf1 --- /dev/null +++ b/stac/tasman/motueka-river-valley_2018-2019/dem_1m/2193/collection.json @@ -0,0 +1,54 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MW0YP2PHJWCKWJHDED7M73", + "title": "Tasman - Motueka River Valley LiDAR 1m DEM (2018-2019)", + "description": "Digital Elevation Model within the Tasman - Motueka River Valley region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[172.5686916, -41.4975302, 173.1434853, -41.0435377]] }, + "temporal": { "interval": [["2018-11-14T11:00:00Z", "2019-02-12T11:00:00Z"]] } + } +} From 678ee0cce332c187df7b3932d8611ea0c9b8deb0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:54:37 +1200 Subject: [PATCH 106/309] feat: import Otago - Queenstown LiDAR 1m DSM (2016) (#16) Co-authored-by: elevation[bot] --- .../dsm_1m/2193/collection.json | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 stac/otago/queenstown_2016/dsm_1m/2193/collection.json diff --git a/stac/otago/queenstown_2016/dsm_1m/2193/collection.json b/stac/otago/queenstown_2016/dsm_1m/2193/collection.json new file mode 100644 index 00000000..b3d4ef28 --- /dev/null +++ b/stac/otago/queenstown_2016/dsm_1m/2193/collection.json @@ -0,0 +1,44 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MT3VRQJS60J01Q9DV7JWB7", + "title": "Otago - Queenstown LiDAR 1m DSM (2016)", + "description": "Digital Surface Model within the Otago - Queenstown region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[168.5763338, -45.1811534, 168.9551722, -44.9134657]] }, + "temporal": { "interval": [["2016-02-29T11:00:00Z", "2016-04-20T12:00:00Z"]] } + } +} From 0e6f8e8ae071af1d64ba4e6f0dcf73327643291d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:54:41 +1200 Subject: [PATCH 107/309] feat: import Northland - Whangarei Heads LiDAR 1m DSM (2016) (#15) Co-authored-by: elevation[bot] Co-authored-by: Alice Fage --- .../dsm_1m/2193/collection.json | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 stac/northland/whangarei-heads_2016/dsm_1m/2193/collection.json diff --git a/stac/northland/whangarei-heads_2016/dsm_1m/2193/collection.json b/stac/northland/whangarei-heads_2016/dsm_1m/2193/collection.json new file mode 100644 index 00000000..b8b07529 --- /dev/null +++ b/stac/northland/whangarei-heads_2016/dsm_1m/2193/collection.json @@ -0,0 +1,33 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MWQGATEQ3A5H5AMAQ4FH5M", + "title": "Northland - Whangarei Heads LiDAR 1m DSM (2016)", + "description": "Digital Surface Model within the Northland - Whangarei Heads region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0403.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "licensor", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.3531843, -35.9079461, 174.6223831, -35.7132637]] }, + "temporal": { "interval": [["2016-11-20T11:00:00Z", "2016-11-21T11:00:00Z"]] } + } +} From 5918b93329d3f0080a8d4ad5d6d6bcdee91b3808 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:54:46 +1200 Subject: [PATCH 108/309] feat: import Otago - Queenstown LiDAR 1m DEM (2016) (#14) Co-authored-by: elevation[bot] --- .../dem_1m/2193/collection.json | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 stac/otago/queenstown_2016/dem_1m/2193/collection.json diff --git a/stac/otago/queenstown_2016/dem_1m/2193/collection.json b/stac/otago/queenstown_2016/dem_1m/2193/collection.json new file mode 100644 index 00000000..2ac25d94 --- /dev/null +++ b/stac/otago/queenstown_2016/dem_1m/2193/collection.json @@ -0,0 +1,44 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MT3W1X65CC5VTTBN4ZC9KY", + "title": "Otago - Queenstown LiDAR 1m DEM (2016)", + "description": "Digital Elevation Model within the Otago - Queenstown region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[168.5763338, -45.1811534, 168.9551722, -44.9134657]] }, + "temporal": { "interval": [["2016-02-29T11:00:00Z", "2016-04-20T12:00:00Z"]] } + } +} From 347ec5cedebaf85be0df7f7c9966984ce7539d1b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:54:49 +1200 Subject: [PATCH 109/309] feat: import Northland - Whangarei Heads LiDAR 1m DEM (2016) (#13) Co-authored-by: elevation[bot] Co-authored-by: Alice Fage --- .../dem_1m/2193/collection.json | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 stac/northland/whangarei-heads_2016/dem_1m/2193/collection.json diff --git a/stac/northland/whangarei-heads_2016/dem_1m/2193/collection.json b/stac/northland/whangarei-heads_2016/dem_1m/2193/collection.json new file mode 100644 index 00000000..2d1fa3b9 --- /dev/null +++ b/stac/northland/whangarei-heads_2016/dem_1m/2193/collection.json @@ -0,0 +1,33 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MWQ6ZS9139WD54VAK2Z5AM", + "title": "Northland - Whangarei Heads LiDAR 1m DEM (2016)", + "description": "Digital Elevation Model within the Northland - Whangarei Heads region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0403.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "licensor", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[174.3531843, -35.9079461, 174.6223831, -35.7132637]] }, + "temporal": { "interval": [["2016-11-20T11:00:00Z", "2016-11-21T11:00:00Z"]] } + } +} From c84041b31a291de98417fadab9bd5177d29552d8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 14:08:01 +1200 Subject: [PATCH 110/309] feat: import Marlborough - Blenheim LiDAR 1m DSM (2014) (#17) Co-authored-by: elevation[bot] --- .../blenheim_2014/dsm_1m/2193/collection.json | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 stac/marlborough/blenheim_2014/dsm_1m/2193/collection.json diff --git a/stac/marlborough/blenheim_2014/dsm_1m/2193/collection.json b/stac/marlborough/blenheim_2014/dsm_1m/2193/collection.json new file mode 100644 index 00000000..bb4b4f22 --- /dev/null +++ b/stac/marlborough/blenheim_2014/dsm_1m/2193/collection.json @@ -0,0 +1,60 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MV67X3M75KRCZ965EKH21B", + "title": "Marlborough - Blenheim LiDAR 1m DSM (2014)", + "description": "Digital Surface Model within the Marlborough - Blenheim region captured in 2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "\"NZ Aerial Mapping", "roles": ["producer"] }, + { "name": "Aerial Surveys\"", "roles": ["producer"] }, + { "name": "Marlborough District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[173.5463195, -41.6882374, 174.18235, -41.3624698]] }, + "temporal": { "interval": [["2014-02-22T11:00:00Z", "2014-05-02T12:00:00Z"]] } + } +} From 3969d0e23b8adfcb75a931f4db327377efe62c54 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 14:08:11 +1200 Subject: [PATCH 111/309] feat: import Marlborough - Blenheim LiDAR 1m DEM (2014) (#20) Co-authored-by: elevation[bot] --- .../blenheim_2014/dem_1m/2193/collection.json | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 stac/marlborough/blenheim_2014/dem_1m/2193/collection.json diff --git a/stac/marlborough/blenheim_2014/dem_1m/2193/collection.json b/stac/marlborough/blenheim_2014/dem_1m/2193/collection.json new file mode 100644 index 00000000..3b05b324 --- /dev/null +++ b/stac/marlborough/blenheim_2014/dem_1m/2193/collection.json @@ -0,0 +1,60 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01H6MV683MK291ZCVSRD8FH46T", + "title": "Marlborough - Blenheim LiDAR 1m DEM (2014)", + "description": "Digital Elevation Model within the Marlborough - Blenheim region captured in 2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "\"NZ Aerial Mapping", "roles": ["producer"] }, + { "name": "Aerial Surveys\"", "roles": ["producer"] }, + { "name": "Marlborough District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "extent": { + "spatial": { "bbox": [[173.5463195, -41.6882374, 174.18235, -41.3624698]] }, + "temporal": { "interval": [["2014-02-22T11:00:00Z", "2014-05-02T12:00:00Z"]] } + } +} From 9c010cbc67b677a3fb5120d773d6d451c2adbaf2 Mon Sep 17 00:00:00 2001 From: Victor Engmark Date: Thu, 30 Nov 2023 14:00:30 +1300 Subject: [PATCH 112/309] feat: Pin actions to hashes TDE-934 (#111) Done with pin-github-action 1.9.1 using `npx pin-github-action .github/workflows/*.yml`. --- .github/workflows/create-pr.yml | 2 +- .github/workflows/publish.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create-pr.yml b/.github/workflows/create-pr.yml index ddbac825..81bd9620 100644 --- a/.github/workflows/create-pr.yml +++ b/.github/workflows/create-pr.yml @@ -7,7 +7,7 @@ jobs: create-pull-request: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 - name: pull-request run: | diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5a43f19e..3150ac30 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,7 +13,7 @@ jobs: contents: read steps: - - uses: linz/action-typescript@v3 + - uses: linz/action-typescript@dee99184c4305aea6c380a52db9b2d7abaaa3e78 # v3 # FIXME: catalog.json is not pushed to the repository (temporary solution) - name: Create Catalog @@ -29,7 +29,7 @@ jobs: - name: AWS Configure if: github.ref == 'refs/heads/master' - uses: aws-actions/configure-aws-credentials@v2 + uses: aws-actions/configure-aws-credentials@5fd3084fc36e372ff1fff382a39b10d03659f355 # v2 with: aws-region: ap-southeast-2 mask-aws-account-id: true From 3fc55f12f96c76420226a51e94e717a8e98673ba Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Thu, 30 Nov 2023 14:12:54 +1300 Subject: [PATCH 113/309] ci: remove creation of pull request TDE-940 (#112) The Pull Request is now triggered by `argo-tasks` and so is not required in the CICD for this repo. --- .github/workflows/create-pr.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/create-pr.yml diff --git a/.github/workflows/create-pr.yml b/.github/workflows/create-pr.yml deleted file mode 100644 index 81bd9620..00000000 --- a/.github/workflows/create-pr.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Pull Request Action -on: - push: - branches: - - feat/bot-* -jobs: - create-pull-request: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 - - - name: pull-request - run: | - gh pr edit ${{ github.ref_name }} --title '${{ github.event.head_commit.message }}' --body '' && - gh pr reopen ${{ github.ref_name }} || - gh pr create --base master --title '${{ github.event.head_commit.message }}' --body '' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 13121ef45962529040cbc4fce6ecc8a2dea97fae Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Wed, 6 Dec 2023 10:26:29 +1300 Subject: [PATCH 114/309] fix: validate STAC Catalog TDE-967 (#113) The STAC Catalog was not validated. This doesn't validate the collection links, but it does check the structure of the catalog is valid. --- .github/workflows/publish.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3150ac30..f2108581 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,12 +16,17 @@ jobs: - uses: linz/action-typescript@dee99184c4305aea6c380a52db9b2d7abaaa3e78 # v3 # FIXME: catalog.json is not pushed to the repository (temporary solution) - - name: Create Catalog + - name: Create STAC Catalog uses: docker://ghcr.io/linz/argo-tasks:v2 with: args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ - - name: Validate STAC + - name: Validate STAC Catalog + uses: docker://ghcr.io/linz/argo-tasks:v2 + with: + args: stac-validate /github/workspace/stac/catalog.json + + - name: Validate STAC Collections run: | # Enable double star operator shopt -s globstar From ddc076749804234e2204241dba065e0ddede8fa1 Mon Sep 17 00:00:00 2001 From: paulfouquet <86932794+paulfouquet@users.noreply.github.com> Date: Tue, 27 Feb 2024 11:39:23 +1300 Subject: [PATCH 115/309] feat: temporary disable stac catalog creation and stac-sync TDE-1003 (#116) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - As the data will be publish to the ODR bucket, the STAC Catalog would be in an incoherent state while some STAC Collections will point to linz-elevation and some other to nz-elevation bucket. To avoid issues and making confusion, we decided to temporary deactivate the STAC Catalog. - In order to prevent copying over the existing STAC Collection files that belong to `linz-elevation` bucket, temporary deactivate `stac-sync` --- .github/workflows/publish.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f2108581..d3f26960 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,15 +16,15 @@ jobs: - uses: linz/action-typescript@dee99184c4305aea6c380a52db9b2d7abaaa3e78 # v3 # FIXME: catalog.json is not pushed to the repository (temporary solution) - - name: Create STAC Catalog - uses: docker://ghcr.io/linz/argo-tasks:v2 - with: - args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ + # - name: Create STAC Catalog + # uses: docker://ghcr.io/linz/argo-tasks:v2 + # with: + # args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ - - name: Validate STAC Catalog - uses: docker://ghcr.io/linz/argo-tasks:v2 - with: - args: stac-validate /github/workspace/stac/catalog.json + # - name: Validate STAC Catalog + # uses: docker://ghcr.io/linz/argo-tasks:v2 + # with: + # args: stac-validate /github/workspace/stac/catalog.json - name: Validate STAC Collections run: | @@ -41,8 +41,8 @@ jobs: role-to-assume: ${{ secrets.AWS_CI_ROLE }} # Sync STAC files only on push to 'master' - - name: Sync STAC - uses: docker://ghcr.io/linz/argo-tasks:v2 - if: github.ref == 'refs/heads/master' - with: - args: stac-sync /github/workspace/stac/ s3://linz-elevation/ \ No newline at end of file + # - name: Sync STAC + # uses: docker://ghcr.io/linz/argo-tasks:v2 + # if: github.ref == 'refs/heads/master' + # with: + # args: stac-sync /github/workspace/stac/ s3://linz-elevation/ From 85e265338394158baeae1113353cfb606c24354e Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Tue, 27 Feb 2024 16:22:10 +1300 Subject: [PATCH 116/309] feat: import Canterbury - Mackenzie LiDAR 1m DSM (2015) (#118) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json b/stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json index 6b1afb5d..2a9acab5 100644 --- a/stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json +++ b/stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json @@ -1,9 +1,9 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MT3W2070RQTV2GYW4P1MXE", + "id": "01HQM8KTDJ4NTX0TSBQ59M58N6", "title": "Canterbury - Mackenzie LiDAR 1m DSM (2015)", - "description": "Digital Surface Model within the Canterbury - Mackenzie region captured in 2015.", + "description": "Digital Surface Model within the Canterbury region captured in 2015.", "license": "CC-BY-4.0", "links": [ { @@ -59,10 +59,26 @@ ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, - { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "licensor", "processor"] } + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["licensor", "host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Mackenzie", "extent": { "spatial": { "bbox": [[169.9006493, -44.5118652, 170.5154636, -43.9938781]] }, "temporal": { "interval": [["2015-02-09T11:00:00Z", "2015-02-10T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204ce9621accd67b824480f351309531088541f5edaecea92347bdc7ec956b0e14", + "file:size": 54581 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 76fda5fa42199b23608a8a8944305a2b694ccf97 Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Tue, 27 Feb 2024 16:38:08 +1300 Subject: [PATCH 117/309] feat: update catalog link to point to odr bucker in template (#119) --- template/catalog.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/template/catalog.json b/template/catalog.json index 9b012c36..21386acb 100644 --- a/template/catalog.json +++ b/template/catalog.json @@ -1,10 +1,10 @@ { "stac_version": "1.0.0", "type": "Catalog", - "id": "linz-elevation", - "description": "Toitū Te Whenua Land Information New Zealand makes New Zealand's publicly owned elevation archive freely available to use under an open licence.", + "id": "nz-elevation", + "description": "Toitū Te Whenua Land Information New Zealand makes New Zealand's publicly owned elevation archive freely available to use under an open licence. This public S3 bucket has been made available to enable bulk access and cloud-based data processing.", "links": [ - { "rel": "self", "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json" }, + { "rel": "self", "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json" }, { "rel": "root", "href": "./catalog.json" } ] } From 8438bc4f0bc3875e11ac5c1fbb6f4d58d86fd746 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 07:46:11 +1300 Subject: [PATCH 118/309] feat: import Gisborne LiDAR 1m DEM (2023) (#138) --- .../gisborne_2023/dem_1m/2193/collection.json | 183 ++++++++++++++++++ 1 file changed, 183 insertions(+) create mode 100644 stac/gisborne/gisborne_2023/dem_1m/2193/collection.json diff --git a/stac/gisborne/gisborne_2023/dem_1m/2193/collection.json b/stac/gisborne/gisborne_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..e79d2cdd --- /dev/null +++ b/stac/gisborne/gisborne_2023/dem_1m/2193/collection.json @@ -0,0 +1,183 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMDFKQ68GXZAZNG4SQ0401C", + "title": "Gisborne LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Gisborne region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "gisborne", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[177.1042804, -38.9989083, 178.3620224, -38.3263176]] }, + "temporal": { "interval": [["2023-09-10T12:00:00Z", "2023-09-19T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12206962afb78ee99fa7c5d24861da92377fc7a96f3ff1be2ec3df85d19fb6e4a5fa", + "file:size": 11370 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From a100d31b11a237f7e980f8749bfcfb77932a2bc9 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 07:46:29 +1300 Subject: [PATCH 119/309] feat: import Gisborne LiDAR 1m DSM (2023) (#142) --- .../gisborne_2023/dsm_1m/2193/collection.json | 183 ++++++++++++++++++ 1 file changed, 183 insertions(+) create mode 100644 stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json diff --git a/stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json b/stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..7e0b57c3 --- /dev/null +++ b/stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json @@ -0,0 +1,183 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMDFZP3KT8EFJK778REJJR1", + "title": "Gisborne LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Gisborne region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "gisborne", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[177.1042804, -38.9989083, 178.3620224, -38.3263176]] }, + "temporal": { "interval": [["2023-09-10T12:00:00Z", "2023-09-19T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12208da51d526b20e7f47089fc920692ca235aa56afffff59ae4b0a40f7ab61726aa", + "file:size": 10127812 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 9d26410130ae0efe1d6936d892b1bc3918d61be3 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 07:48:07 +1300 Subject: [PATCH 120/309] feat: import Otago LiDAR 1m DSM (2016) (#141) --- .../otago_2016/dsm_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/otago/otago_2016/dsm_1m/2193/collection.json b/stac/otago/otago_2016/dsm_1m/2193/collection.json index 19288a1c..05fd9d49 100644 --- a/stac/otago/otago_2016/dsm_1m/2193/collection.json +++ b/stac/otago/otago_2016/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MW0YTX56BV5Q6QJ8GF6S0B", + "id": "01HQMB8SCQQRJ98W6CG5WFP32E", "title": "Otago LiDAR 1m DSM (2016)", "description": "Digital Surface Model within the Otago region captured in 2016.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -178,8 +178,23 @@ { "name": "Otago Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[168.8244481, -46.4456066, 171.2058988, -44.6725407]] }, "temporal": { "interval": [["2016-03-01T11:00:00Z", "2016-04-09T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220bd5a570ccc5a1f05bddb6b88ad196b48ee87442e7453cc35941ceb2c1331ce5d", + "file:size": 24585 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 2505af4c5043aeea1d8996461b3df701bc8d415c Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 07:48:26 +1300 Subject: [PATCH 121/309] feat: import Otago LiDAR 1m DEM (2016) (#137) --- .../otago_2016/dem_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/otago/otago_2016/dem_1m/2193/collection.json b/stac/otago/otago_2016/dem_1m/2193/collection.json index 40fe30bf..34413658 100644 --- a/stac/otago/otago_2016/dem_1m/2193/collection.json +++ b/stac/otago/otago_2016/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MW0YMS2SY95CGRFJQZ4073", + "id": "01HQMB8PDN1QVY92SWQN9CKMYQ", "title": "Otago LiDAR 1m DEM (2016)", "description": "Digital Elevation Model within the Otago region captured in 2016.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -178,8 +178,23 @@ { "name": "Otago Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[168.8244481, -46.4456066, 171.2058988, -44.6725407]] }, "temporal": { "interval": [["2016-03-01T11:00:00Z", "2016-04-09T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122022935f6f6bcda5ddde62fd60522f7e4815423a2b910d3b974bf23b920a9cdbfe", + "file:size": 25400 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 1a32f61fad6ebb067fd6cc3085868ce139cfc45a Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 07:49:10 +1300 Subject: [PATCH 122/309] feat: import Waikato - Thames LiDAR 1m DEM (2017-2019) (#136) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/waikato/thames_2017-2019/dem_1m/2193/collection.json b/stac/waikato/thames_2017-2019/dem_1m/2193/collection.json index 89f82a25..3805fce0 100644 --- a/stac/waikato/thames_2017-2019/dem_1m/2193/collection.json +++ b/stac/waikato/thames_2017-2019/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MWZD4JWXAN6RPAWX6MZEET", + "id": "01HQMCC3RDTG6G61TR953B9A1V", "title": "Waikato - Thames LiDAR 1m DEM (2017-2019)", - "description": "Digital Elevation Model within the Waikato - Thames region captured in 2017-2019.", + "description": "Digital Elevation Model within the Waikato region captured in 2017-2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -31,8 +31,24 @@ { "name": "Waikato Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Thames", "extent": { "spatial": { "bbox": [[175.5102693, -37.4459782, 175.7400516, -37.0581599]] }, "temporal": { "interval": [["2017-07-01T12:00:00Z", "2019-02-03T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220bf1b806cd6dbc104e9d7f48c0e9f20d983c833fd24505e7147c50f81d6171710", + "file:size": 1931 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 2322cb55bf4e590794cb8369851c55840593bc02 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 07:49:19 +1300 Subject: [PATCH 123/309] feat: import Waikato - Thames LiDAR 1m DSM (2017-2019) (#135) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/waikato/thames_2017-2019/dsm_1m/2193/collection.json b/stac/waikato/thames_2017-2019/dsm_1m/2193/collection.json index 86530c00..fb452c47 100644 --- a/stac/waikato/thames_2017-2019/dsm_1m/2193/collection.json +++ b/stac/waikato/thames_2017-2019/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MWZRNCK20A9R8H68SBGFWN", + "id": "01HQMCC7SQYQWQ2QQ98W4R5X92", "title": "Waikato - Thames LiDAR 1m DSM (2017-2019)", - "description": "Digital Surface Model within the Waikato - Thames region captured in 2017-2019.", + "description": "Digital Surface Model within the Waikato region captured in 2017-2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -31,8 +31,24 @@ { "name": "Waikato Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Thames", "extent": { "spatial": { "bbox": [[175.5102693, -37.4459782, 175.7400516, -37.0581599]] }, "temporal": { "interval": [["2017-07-01T12:00:00Z", "2019-02-03T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220bf1b806cd6dbc104e9d7f48c0e9f20d983c833fd24505e7147c50f81d6171710", + "file:size": 1931 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 6c06f508a9bd1b90c6d55232b75e8b3012ffc4fd Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 07:49:52 +1300 Subject: [PATCH 124/309] feat: import Waikato - Huntly LiDAR 1m DSM (2015-2019) (#134) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/waikato/huntly_2015-2019/dsm_1m/2193/collection.json b/stac/waikato/huntly_2015-2019/dsm_1m/2193/collection.json index be34c927..0221bfa4 100644 --- a/stac/waikato/huntly_2015-2019/dsm_1m/2193/collection.json +++ b/stac/waikato/huntly_2015-2019/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MWVQVN83JB4QF86RK2AAX1", + "id": "01HQMC55GJN7RRTCX0KZKN8A7S", "title": "Waikato - Huntly LiDAR 1m DSM (2015-2019)", - "description": "Digital Surface Model within the Waikato - Huntly region captured in 2015-2019.", + "description": "Digital Surface Model within the Waikato region captured in 2015-2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -71,8 +71,24 @@ { "name": "Waikato Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Huntly", "extent": { "spatial": { "bbox": [[174.6525807, -37.6503992, 175.688171, -37.196423]] }, "temporal": { "interval": [["2015-01-31T11:00:00Z", "2019-01-30T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12205ab56c35a61eb276e6e4765c2b36762f7a97959d979ab0be3eccac9b24cd919b", + "file:size": 15181 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 7707b6869a47032083275f7ad3714b2a207d041e Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 07:49:55 +1300 Subject: [PATCH 125/309] feat: import Waikato - Huntly LiDAR 1m DEM (2015-2019) (#133) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/waikato/huntly_2015-2019/dem_1m/2193/collection.json b/stac/waikato/huntly_2015-2019/dem_1m/2193/collection.json index 7557189b..9b9fcbbd 100644 --- a/stac/waikato/huntly_2015-2019/dem_1m/2193/collection.json +++ b/stac/waikato/huntly_2015-2019/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MWV65TYVF4APWY45S7F87Z", + "id": "01HQMC51D40ZX601ECSSH30E75", "title": "Waikato - Huntly LiDAR 1m DEM (2015-2019)", - "description": "Digital Elevation Model within the Waikato - Huntly region captured in 2015-2019.", + "description": "Digital Elevation Model within the Waikato region captured in 2015-2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -71,8 +71,24 @@ { "name": "Waikato Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Huntly", "extent": { "spatial": { "bbox": [[174.6525807, -37.6503992, 175.688171, -37.196423]] }, "temporal": { "interval": [["2015-01-31T11:00:00Z", "2019-01-30T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122095532dc957e00f26de996c8726b5d9d2d69b300cf24c66f76535e4d151c4430a", + "file:size": 14839 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 257a62a5b2631e334b1eae174b75848f512a2317 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 07:51:18 +1300 Subject: [PATCH 126/309] feat: import Northland - Whangarei Heads LiDAR 1m DSM (2016) (#130) --- .../dsm_1m/2193/collection.json | 26 +++++++++++++++---- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/stac/northland/whangarei-heads_2016/dsm_1m/2193/collection.json b/stac/northland/whangarei-heads_2016/dsm_1m/2193/collection.json index b8b07529..5b1fe73c 100644 --- a/stac/northland/whangarei-heads_2016/dsm_1m/2193/collection.json +++ b/stac/northland/whangarei-heads_2016/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MWQGATEQ3A5H5AMAQ4FH5M", + "id": "01HQMBSZ1H2FA249V15NWF1EQ0", "title": "Northland - Whangarei Heads LiDAR 1m DSM (2016)", - "description": "Digital Surface Model within the Northland - Whangarei Heads region captured in 2016.", + "description": "Digital Surface Model within the Northland region captured in 2016.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -24,10 +24,26 @@ ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, - { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "licensor", "processor"] } + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["licensor", "host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "northland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Whangarei Heads", "extent": { "spatial": { "bbox": [[174.3531843, -35.9079461, 174.6223831, -35.7132637]] }, "temporal": { "interval": [["2016-11-20T11:00:00Z", "2016-11-21T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12203751c44d888c83e1c6d4904578ef84dfbe10107641b40fbfd669ec6e08c29699", + "file:size": 22626 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From c33dda62b1d07b4bb14893b651b470ff680fc3b2 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 07:51:21 +1300 Subject: [PATCH 127/309] feat: import Northland - Whangarei Heads LiDAR 1m DEM (2016) (#129) --- .../dem_1m/2193/collection.json | 26 +++++++++++++++---- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/stac/northland/whangarei-heads_2016/dem_1m/2193/collection.json b/stac/northland/whangarei-heads_2016/dem_1m/2193/collection.json index 2d1fa3b9..7ca87d9d 100644 --- a/stac/northland/whangarei-heads_2016/dem_1m/2193/collection.json +++ b/stac/northland/whangarei-heads_2016/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MWQ6ZS9139WD54VAK2Z5AM", + "id": "01HQMBSMQY950TP25ZV0Q9YZN2", "title": "Northland - Whangarei Heads LiDAR 1m DEM (2016)", - "description": "Digital Elevation Model within the Northland - Whangarei Heads region captured in 2016.", + "description": "Digital Elevation Model within the Northland region captured in 2016.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -24,10 +24,26 @@ ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, - { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "licensor", "processor"] } + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["licensor", "host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "northland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Whangarei Heads", "extent": { "spatial": { "bbox": [[174.3531843, -35.9079461, 174.6223831, -35.7132637]] }, "temporal": { "interval": [["2016-11-20T11:00:00Z", "2016-11-21T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220416e4f36e79a6bf88333cbeac78afabf816aaa3e8bf2b05c9c001f6ed36d2a13", + "file:size": 23045 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 3be3a514cb10f03dac5a6044516991fb68007878 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 07:52:00 +1300 Subject: [PATCH 128/309] feat: import Tasman - Motueka River Valley LiDAR 1m DEM (2018-2019) (#128) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/tasman/motueka-river-valley_2018-2019/dem_1m/2193/collection.json b/stac/tasman/motueka-river-valley_2018-2019/dem_1m/2193/collection.json index 63c7acf1..264c58fa 100644 --- a/stac/tasman/motueka-river-valley_2018-2019/dem_1m/2193/collection.json +++ b/stac/tasman/motueka-river-valley_2018-2019/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MW0YP2PHJWCKWJHDED7M73", + "id": "01HQMB9SANWRMAAJYWCTYPF5W1", "title": "Tasman - Motueka River Valley LiDAR 1m DEM (2018-2019)", - "description": "Digital Elevation Model within the Tasman - Motueka River Valley region captured in 2018-2019.", + "description": "Digital Elevation Model within the Tasman region captured in 2018-2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -47,8 +47,24 @@ { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Motueka River Valley", "extent": { "spatial": { "bbox": [[172.5686916, -41.4975302, 173.1434853, -41.0435377]] }, "temporal": { "interval": [["2018-11-14T11:00:00Z", "2019-02-12T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220aa35367b5abd9a671b92ca64cb52283b2ccc89d6c14a02ee244bb41e8c7e0be9", + "file:size": 8711 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 36f19eb1fea9aa8731f1b98b38820cebe11fb23f Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 07:52:03 +1300 Subject: [PATCH 129/309] feat: import Tasman - Motueka River Valley LiDAR 1m DSM (2018-2019) (#127) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/tasman/motueka-river-valley_2018-2019/dsm_1m/2193/collection.json b/stac/tasman/motueka-river-valley_2018-2019/dsm_1m/2193/collection.json index e9d77ceb..61864430 100644 --- a/stac/tasman/motueka-river-valley_2018-2019/dsm_1m/2193/collection.json +++ b/stac/tasman/motueka-river-valley_2018-2019/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MW0YMT940QHDBFKNBYWFB7", + "id": "01HQMBBBQN2Q73KEVPB3BKS8FD", "title": "Tasman - Motueka River Valley LiDAR 1m DSM (2018-2019)", - "description": "Digital Surface Model within the Tasman - Motueka River Valley region captured in 2018-2019.", + "description": "Digital Surface Model within the Tasman region captured in 2018-2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -47,8 +47,24 @@ { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Motueka River Valley", "extent": { "spatial": { "bbox": [[172.5686916, -41.4975302, 173.1434853, -41.0435377]] }, "temporal": { "interval": [["2018-11-14T11:00:00Z", "2019-02-12T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220aa35367b5abd9a671b92ca64cb52283b2ccc89d6c14a02ee244bb41e8c7e0be9", + "file:size": 8711 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 77febe826e2d9c450db1929b09480c3379ef3307 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 08:01:51 +1300 Subject: [PATCH 130/309] feat: import Tasman - Abel Tasman and Golden Bay LiDAR 1m DSM (2023) (#139) --- .../dsm_1m/2193/collection.json | 82 +++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 stac/tasman/abel-tasman-and-golden-bay_2023/dsm_1m/2193/collection.json diff --git a/stac/tasman/abel-tasman-and-golden-bay_2023/dsm_1m/2193/collection.json b/stac/tasman/abel-tasman-and-golden-bay_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..b893c26c --- /dev/null +++ b/stac/tasman/abel-tasman-and-golden-bay_2023/dsm_1m/2193/collection.json @@ -0,0 +1,82 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMDTT1A2G9V9ZQXN3S115RB", + "title": "Tasman - Abel Tasman and Golden Bay LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Tasman region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Abel Tasman and Golden Bay", + "extent": { + "spatial": { "bbox": [[172.401518, -41.1084811, 173.0857515, -40.589008]] }, + "temporal": { "interval": [["2023-08-06T12:00:00Z", "2023-08-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12202e42e69f3ffa27bdff3995e93471f0c1f8ad0b5f6f0c31d1f09829a0ba9fa2b7", + "file:size": 8762 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 6968de0476043e2b016ffc65817f62ad5e363568 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 08:01:56 +1300 Subject: [PATCH 131/309] feat: import Tasman - Abel Tasman and Golden Bay LiDAR 1m DEM (2023) (#140) --- .../dem_1m/2193/collection.json | 82 +++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 stac/tasman/abel-tasman-and-golden-bay_2023/dem_1m/2193/collection.json diff --git a/stac/tasman/abel-tasman-and-golden-bay_2023/dem_1m/2193/collection.json b/stac/tasman/abel-tasman-and-golden-bay_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..2ee4cafb --- /dev/null +++ b/stac/tasman/abel-tasman-and-golden-bay_2023/dem_1m/2193/collection.json @@ -0,0 +1,82 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMDGG25AWBPBT4F3T2NFRZH", + "title": "Tasman - Abel Tasman and Golden Bay LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Tasman region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Abel Tasman and Golden Bay", + "extent": { + "spatial": { "bbox": [[172.401518, -41.1084811, 173.0857515, -40.589008]] }, + "temporal": { "interval": [["2023-08-06T12:00:00Z", "2023-08-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12202e42e69f3ffa27bdff3995e93471f0c1f8ad0b5f6f0c31d1f09829a0ba9fa2b7", + "file:size": 8762 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From b6dbee6b6cfd028ec46fb0718e3a62750969f3e1 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 08:03:20 +1300 Subject: [PATCH 132/309] feat: import Waikato - Reporoa and Upper Piako River LiDAR 1m DSM (2019) (#123) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/waikato/reporoa-and-upper-piako-river_2019/dsm_1m/2193/collection.json b/stac/waikato/reporoa-and-upper-piako-river_2019/dsm_1m/2193/collection.json index 003b4cd4..621d8a50 100644 --- a/stac/waikato/reporoa-and-upper-piako-river_2019/dsm_1m/2193/collection.json +++ b/stac/waikato/reporoa-and-upper-piako-river_2019/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MV682Q281QWG8J9JN1P9VE", + "id": "01HQMAZXW6VDW1BC138P40B01N", "title": "Waikato - Reporoa and Upper Piako River LiDAR 1m DSM (2019)", - "description": "Digital Surface Model within the Waikato - Reporoa and Upper Piako River region captured in 2019.", + "description": "Digital Surface Model within the Waikato region captured in 2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -44,8 +44,24 @@ { "name": "Waikato Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Reporoa and Upper Piako River", "extent": { "spatial": { "bbox": [[175.584141, -38.5310391, 176.5480563, -37.6392367]] }, "temporal": { "interval": [["2019-04-15T12:00:00Z", "2019-04-16T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c58388c02869136abf95af099954b6f191f55b31199b819f48431d841c568627", + "file:size": 7147 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 379c4ec32ec33a64e721855fd980a0cce21aa2dd Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 08:03:25 +1300 Subject: [PATCH 133/309] feat: import Waikato - Reporoa and Upper Piako River LiDAR 1m DEM (2019) (#124) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/waikato/reporoa-and-upper-piako-river_2019/dem_1m/2193/collection.json b/stac/waikato/reporoa-and-upper-piako-river_2019/dem_1m/2193/collection.json index 8219e7ea..6ab5895e 100644 --- a/stac/waikato/reporoa-and-upper-piako-river_2019/dem_1m/2193/collection.json +++ b/stac/waikato/reporoa-and-upper-piako-river_2019/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MV67Y20D6T4YKVQYRDPT99", + "id": "01HQMAZNDSCA35108E1TQRGFF9", "title": "Waikato - Reporoa and Upper Piako River LiDAR 1m DEM (2019)", - "description": "Digital Elevation Model within the Waikato - Reporoa and Upper Piako River region captured in 2019.", + "description": "Digital Elevation Model within the Waikato region captured in 2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -44,8 +44,24 @@ { "name": "Waikato Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Reporoa and Upper Piako River", "extent": { "spatial": { "bbox": [[175.584141, -38.5310391, 176.5480563, -37.6392367]] }, "temporal": { "interval": [["2019-04-15T12:00:00Z", "2019-04-16T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c58388c02869136abf95af099954b6f191f55b31199b819f48431d841c568627", + "file:size": 7147 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 2545843fc49b1ccfbc1d5f8c9d9a89c3ee458a39 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 08:03:56 +1300 Subject: [PATCH 134/309] feat: import Otago - Queenstown LiDAR 1m DSM (2016) (#122) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/otago/queenstown_2016/dsm_1m/2193/collection.json b/stac/otago/queenstown_2016/dsm_1m/2193/collection.json index b3d4ef28..f3288a5c 100644 --- a/stac/otago/queenstown_2016/dsm_1m/2193/collection.json +++ b/stac/otago/queenstown_2016/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MT3VRQJS60J01Q9DV7JWB7", + "id": "01HQMAFJ28VVXF5YW2YMYKKSZJ", "title": "Otago - Queenstown LiDAR 1m DSM (2016)", - "description": "Digital Surface Model within the Otago - Queenstown region captured in 2016.", + "description": "Digital Surface Model within the Otago region captured in 2016.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -37,8 +37,24 @@ { "name": "Otago Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Queenstown", "extent": { "spatial": { "bbox": [[168.5763338, -45.1811534, 168.9551722, -44.9134657]] }, "temporal": { "interval": [["2016-02-29T11:00:00Z", "2016-04-20T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220f8c6d345c146bdf3c2bca418df6a77e70ce81f9b9c06cbc4252b21752dff3cd8", + "file:size": 5087 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 2924a78bb28e2c21dcbbf0a23b30b061e81529ed Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 08:04:00 +1300 Subject: [PATCH 135/309] feat: import Otago - Queenstown LiDAR 1m DEM (2016) (#121) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/otago/queenstown_2016/dem_1m/2193/collection.json b/stac/otago/queenstown_2016/dem_1m/2193/collection.json index 2ac25d94..906c3e74 100644 --- a/stac/otago/queenstown_2016/dem_1m/2193/collection.json +++ b/stac/otago/queenstown_2016/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MT3W1X65CC5VTTBN4ZC9KY", + "id": "01HQMAFJ2C1TGPNP15QVVT42JX", "title": "Otago - Queenstown LiDAR 1m DEM (2016)", - "description": "Digital Elevation Model within the Otago - Queenstown region captured in 2016.", + "description": "Digital Elevation Model within the Otago region captured in 2016.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -37,8 +37,24 @@ { "name": "Otago Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Queenstown", "extent": { "spatial": { "bbox": [[168.5763338, -45.1811534, 168.9551722, -44.9134657]] }, "temporal": { "interval": [["2016-02-29T11:00:00Z", "2016-04-20T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12200e1d70f0e3437b9a59d97512c0fd85413317f9fe446d2500dd0d086e6bf9402b", + "file:size": 4878 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 308e7b569213e0b22bbf3ff488f18f8aa8ed5a99 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:19:46 +1300 Subject: [PATCH 136/309] feat: import Canterbury LiDAR 1m DEM (2018-2019) (#144) --- .../dem_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/canterbury/canterbury_2018-2019/dem_1m/2193/collection.json b/stac/canterbury/canterbury_2018-2019/dem_1m/2193/collection.json index 3fbd3004..169f41fb 100644 --- a/stac/canterbury/canterbury_2018-2019/dem_1m/2193/collection.json +++ b/stac/canterbury/canterbury_2018-2019/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MX09NP65GC05WZ7KZSDGZ0", + "id": "01HQP7WEXZFTE4FQKG824CEGRS", "title": "Canterbury LiDAR 1m DEM (2018-2019)", "description": "Digital Elevation Model within the Canterbury region captured in 2018-2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -308,8 +308,23 @@ { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[170.6822667, -44.98452, 173.1465831, -42.5999333]] }, "temporal": { "interval": [["2018-03-13T11:00:00Z", "2019-04-30T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220baf6c982cefd9f4b39df1f5c250f316aa6b01836fdc08fee778d60b0abbc80df", + "file:size": 60519 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From eea02fdea0591863f861539ec17f90d9b3453e01 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:19:49 +1300 Subject: [PATCH 137/309] feat: import Canterbury LiDAR 1m DSM (2018-2019) (#143) --- .../dsm_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/canterbury/canterbury_2018-2019/dsm_1m/2193/collection.json b/stac/canterbury/canterbury_2018-2019/dsm_1m/2193/collection.json index 7759d8a7..f274b4de 100644 --- a/stac/canterbury/canterbury_2018-2019/dsm_1m/2193/collection.json +++ b/stac/canterbury/canterbury_2018-2019/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MX1VM221WN8QYRYH99QVAJ", + "id": "01HQP7J14PCMV3YDFNG4C1Z4AZ", "title": "Canterbury LiDAR 1m DSM (2018-2019)", "description": "Digital Surface Model within the Canterbury region captured in 2018-2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -308,8 +308,23 @@ { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[170.6822667, -44.98452, 173.1465831, -42.5999333]] }, "temporal": { "interval": [["2018-03-13T11:00:00Z", "2019-04-30T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204386d7937f59610dc50fabd096c6ca6d84fcd8a45e69cc724aa23d8736fb78fa", + "file:size": 60723 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From de2143be6f2cefce7f101f52ed536c7d736ec794 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:20:11 +1300 Subject: [PATCH 138/309] feat: import Northland - Marsden Point LiDAR 1m DEM (2016) (#146) --- .../dem_1m/2193/collection.json | 26 +++++++++++++++---- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/stac/northland/marsden-point_2016/dem_1m/2193/collection.json b/stac/northland/marsden-point_2016/dem_1m/2193/collection.json index 7bfa89fe..ed620438 100644 --- a/stac/northland/marsden-point_2016/dem_1m/2193/collection.json +++ b/stac/northland/marsden-point_2016/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MXWHVY6AJPGB0BCP7EB22F", + "id": "01HQP9CT9SMMQDS9AMB57Y9WD4", "title": "Northland - Marsden Point LiDAR 1m DEM (2016)", - "description": "Digital Elevation Model within the Northland - Marsden Point region captured in 2016.", + "description": "Digital Elevation Model within the Northland region captured in 2016.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -19,10 +19,26 @@ ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, - { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "licensor", "processor"] } + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["licensor", "host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "northland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Marsden Point", "extent": { "spatial": { "bbox": [[174.4073784, -35.909242, 174.516032, -35.7781586]] }, "temporal": { "interval": [["2016-11-08T11:00:00Z", "2016-11-20T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12201a4cc2d9a48a89b1043fc48a5c0932246d3141b5ba6af8b984758a72fddb45a0", + "file:size": 2558 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From b6e9726020847e5bae4ba7246c8b7eed5fe58fb7 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:20:16 +1300 Subject: [PATCH 139/309] feat: import Northland - Marsden Point LiDAR 1m DSM (2016) (#145) --- .../dsm_1m/2193/collection.json | 26 +++++++++++++++---- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/stac/northland/marsden-point_2016/dsm_1m/2193/collection.json b/stac/northland/marsden-point_2016/dsm_1m/2193/collection.json index 78b18631..1170c478 100644 --- a/stac/northland/marsden-point_2016/dsm_1m/2193/collection.json +++ b/stac/northland/marsden-point_2016/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MXY63YG5MB946779BMYQ1N", + "id": "01HQP9CTDEHC2FA5RKK9FQT95R", "title": "Northland - Marsden Point LiDAR 1m DSM (2016)", - "description": "Digital Surface Model within the Northland - Marsden Point region captured in 2016.", + "description": "Digital Surface Model within the Northland region captured in 2016.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -19,10 +19,26 @@ ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, - { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "licensor", "processor"] } + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["licensor", "host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "northland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Marsden Point", "extent": { "spatial": { "bbox": [[174.4073784, -35.909242, 174.516032, -35.7781586]] }, "temporal": { "interval": [["2016-11-08T11:00:00Z", "2016-11-20T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12201a4cc2d9a48a89b1043fc48a5c0932246d3141b5ba6af8b984758a72fddb45a0", + "file:size": 2558 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 9aaeb1e3e44f1aea8f8f1047d40b3a3b2fb29638 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:21:13 +1300 Subject: [PATCH 140/309] feat: import Waikato - Hamilton LiDAR 1m DSM (2019) (#148) --- .../hamilton_2019/dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/waikato/hamilton_2019/dsm_1m/2193/collection.json b/stac/waikato/hamilton_2019/dsm_1m/2193/collection.json index bb76c3b2..ec53fcbe 100644 --- a/stac/waikato/hamilton_2019/dsm_1m/2193/collection.json +++ b/stac/waikato/hamilton_2019/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MX6QS9SS9EXR41H1J3QV0X", + "id": "01HQP9CTEXN4D0Q32W5XBSJSP4", "title": "Waikato - Hamilton LiDAR 1m DSM (2019)", - "description": "Digital Surface Model within the Waikato - Hamilton region captured in 2019.", + "description": "Digital Surface Model within the Waikato region captured in 2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -41,8 +41,24 @@ { "name": "Hamilton City Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hamilton", "extent": { "spatial": { "bbox": [[175.0930298, -37.9097967, 175.4295474, -37.5845465]] }, "temporal": { "interval": [["2019-11-02T11:00:00Z", "2019-11-04T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220681cae03b44265c9bfdc02b1472d64bf0f8bf52c387718977fe33ee7b6ac9ba7", + "file:size": 5330 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From ab49f7f990a3351e62e42efffa55203f5a98f289 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:21:19 +1300 Subject: [PATCH 141/309] feat: import Waikato - Hamilton LiDAR 1m DEM (2019) (#147) --- .../hamilton_2019/dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/waikato/hamilton_2019/dem_1m/2193/collection.json b/stac/waikato/hamilton_2019/dem_1m/2193/collection.json index f5ea43fc..c510e3da 100644 --- a/stac/waikato/hamilton_2019/dem_1m/2193/collection.json +++ b/stac/waikato/hamilton_2019/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MX5ANWAXWS9KJCMED2VRJ8", + "id": "01HQP9CT3B20ZA2R70AE7DMYHN", "title": "Waikato - Hamilton LiDAR 1m DEM (2019)", - "description": "Digital Elevation Model within the Waikato - Hamilton region captured in 2019.", + "description": "Digital Elevation Model within the Waikato region captured in 2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -41,8 +41,24 @@ { "name": "Hamilton City Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hamilton", "extent": { "spatial": { "bbox": [[175.0930298, -37.9097967, 175.4295474, -37.5845465]] }, "temporal": { "interval": [["2019-11-02T11:00:00Z", "2019-11-04T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220681cae03b44265c9bfdc02b1472d64bf0f8bf52c387718977fe33ee7b6ac9ba7", + "file:size": 5330 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 0940dfeb395978f3e8431ebc9871f7f3a4c852f9 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:22:03 +1300 Subject: [PATCH 142/309] feat: import Marlborough LiDAR 1m DEM (2018) (#149) --- .../dem_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/marlborough/marlborough_2018/dem_1m/2193/collection.json b/stac/marlborough/marlborough_2018/dem_1m/2193/collection.json index 120f90a4..49e30bf4 100644 --- a/stac/marlborough/marlborough_2018/dem_1m/2193/collection.json +++ b/stac/marlborough/marlborough_2018/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H7GXPYWA568JTM3S66RK5ZMR", + "id": "01HQP9JYBMEF9T8D9YNTBN32TT", "title": "Marlborough LiDAR 1m DEM (2018)", "description": "Digital Elevation Model within the Marlborough region captured in 2018.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -70,8 +70,23 @@ { "name": "Marlborough District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "marlborough", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[173.2590459, -41.948916, 174.2425113, -41.2327826]] }, "temporal": { "interval": [["2018-05-25T12:00:00Z", "2018-09-11T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12201bead08e7cd674269ee3a7448827ecdac617779180b3ffa2136bba55e85bc4fd", + "file:size": 58696 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From bac93b088471b678065d40ff8c6012a52b26c0db Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:23:01 +1300 Subject: [PATCH 143/309] feat: import Canterbury - Christchurch and Ashley River LiDAR 1m DEM (2018-2019) (#151) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/canterbury/christchurch-and-ashley-river_2018-2019/dem_1m/2193/collection.json b/stac/canterbury/christchurch-and-ashley-river_2018-2019/dem_1m/2193/collection.json index da28f980..5e6cc9e9 100644 --- a/stac/canterbury/christchurch-and-ashley-river_2018-2019/dem_1m/2193/collection.json +++ b/stac/canterbury/christchurch-and-ashley-river_2018-2019/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MY7J5WYBC5BWYCEWB65096", + "id": "01HQP9MYMB02Q08R7DMZM9JC45", "title": "Canterbury - Christchurch and Ashley River LiDAR 1m DEM (2018-2019)", - "description": "Digital Elevation Model within the Canterbury - Christchurch and Ashley River region captured in 2018-2019.", + "description": "Digital Elevation Model within the Canterbury region captured in 2018-2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -54,8 +54,24 @@ { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Christchurch and Ashley River", "extent": { "spatial": { "bbox": [[172.3758499, -43.7020304, 172.8513887, -43.1818868]] }, "temporal": { "interval": [["2018-07-19T12:00:00Z", "2019-02-28T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12208d2a42956525a4d71ed3a296cdb62181d76127140f235f8ab9211e521ea53b10", + "file:size": 6876 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 0d85227dfa016fa4b0efb51dcb119b77f838a7f0 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:23:04 +1300 Subject: [PATCH 144/309] feat: import Canterbury - Christchurch and Ashley River LiDAR 1m DSM (2018-2019) (#152) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/canterbury/christchurch-and-ashley-river_2018-2019/dsm_1m/2193/collection.json b/stac/canterbury/christchurch-and-ashley-river_2018-2019/dsm_1m/2193/collection.json index 46f96635..8a73da46 100644 --- a/stac/canterbury/christchurch-and-ashley-river_2018-2019/dsm_1m/2193/collection.json +++ b/stac/canterbury/christchurch-and-ashley-river_2018-2019/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MY8NJYXBB9V98DRSE5QD1K", + "id": "01HQP9QP6RXGNJTPDK3GFV0HBQ", "title": "Canterbury - Christchurch and Ashley River LiDAR 1m DSM (2018-2019)", - "description": "Digital Surface Model within the Canterbury - Christchurch and Ashley River region captured in 2018-2019.", + "description": "Digital Surface Model within the Canterbury region captured in 2018-2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -54,8 +54,24 @@ { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Christchurch and Ashley River", "extent": { "spatial": { "bbox": [[172.3758499, -43.7020304, 172.8513887, -43.1818868]] }, "temporal": { "interval": [["2018-07-19T12:00:00Z", "2019-02-28T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220f874cb39914819aae3f04acf4026558ca96faf5474fde1343c0b57c9bdb15ca6", + "file:size": 7546 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 7880c51e1e1e53859ddaef2a1c39baf616566934 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:23:41 +1300 Subject: [PATCH 145/309] feat: import Canterbury - Banks Peninsula LiDAR 1m DEM (2018-2019) (#154) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/canterbury/banks-peninsula_2018-2019/dem_1m/2193/collection.json b/stac/canterbury/banks-peninsula_2018-2019/dem_1m/2193/collection.json index 124b3ee6..0a383144 100644 --- a/stac/canterbury/banks-peninsula_2018-2019/dem_1m/2193/collection.json +++ b/stac/canterbury/banks-peninsula_2018-2019/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MZPSK3G7GBJWQQZSNPBQHZ", + "id": "01HQP9XA866M33YXQE74N20HRR", "title": "Canterbury - Banks Peninsula LiDAR 1m DEM (2018-2019)", - "description": "Digital Elevation Model within the Canterbury - Banks Peninsula region captured in 2018-2019.", + "description": "Digital Elevation Model within the Canterbury region captured in 2018-2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -65,8 +65,24 @@ { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Banks Peninsula", "extent": { "spatial": { "bbox": [[172.5527303, -43.9615254, 173.149415, -43.5716925]] }, "temporal": { "interval": [["2018-07-17T12:00:00Z", "2019-02-09T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12200841314535bd72f6f3021d9f1466b1ea51731bcdf7b2014ca8b65d05ea7944d6", + "file:size": 10752 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From d35406f2ad79e96b75fe59054569f6ea120a7d7b Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:23:44 +1300 Subject: [PATCH 146/309] feat: import Canterbury - Banks Peninsula LiDAR 1m DSM (2018-2019) (#156) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/canterbury/banks-peninsula_2018-2019/dsm_1m/2193/collection.json b/stac/canterbury/banks-peninsula_2018-2019/dsm_1m/2193/collection.json index 37693d1d..fa8421cd 100644 --- a/stac/canterbury/banks-peninsula_2018-2019/dsm_1m/2193/collection.json +++ b/stac/canterbury/banks-peninsula_2018-2019/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N04ET1C6XKCVQ2ZA6A0FZQ", + "id": "01HQP9Y4AJD8ZHB0MWMFB3VZMN", "title": "Canterbury - Banks Peninsula LiDAR 1m DSM (2018-2019)", - "description": "Digital Surface Model within the Canterbury - Banks Peninsula region captured in 2018-2019.", + "description": "Digital Surface Model within the Canterbury region captured in 2018-2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -65,8 +65,24 @@ { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Banks Peninsula", "extent": { "spatial": { "bbox": [[172.5527303, -43.9615254, 173.149415, -43.5716925]] }, "temporal": { "interval": [["2018-07-17T12:00:00Z", "2019-02-09T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a3c6402388d80192e3746cef05038043dff8ffcb0cb2feda2ab14e56bbf72f8f", + "file:size": 10752 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 8956e198e003206cb41e3fb11f5b00baae11e297 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:24:19 +1300 Subject: [PATCH 147/309] feat: import Tasman - Richmond and Motueka LiDAR 1m DEM (2015) (#153) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/tasman/richmond-and-motueka_2015/dem_1m/2193/collection.json b/stac/tasman/richmond-and-motueka_2015/dem_1m/2193/collection.json index 6fdd83d5..8d12e1a2 100644 --- a/stac/tasman/richmond-and-motueka_2015/dem_1m/2193/collection.json +++ b/stac/tasman/richmond-and-motueka_2015/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N05QZCR6M04B93K27WRFZ1", + "id": "01HQP9Y7N922VPERFXMBKYQSCP", "title": "Tasman - Richmond and Motueka LiDAR 1m DEM (2015)", - "description": "Digital Elevation Model within the Tasman - Richmond and Motueka region captured in 2015.", + "description": "Digital Elevation Model within the Tasman region captured in 2015.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -40,8 +40,24 @@ { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Richmond and Motueka", "extent": { "spatial": { "bbox": [[172.914164, -41.4976164, 173.2582727, -41.0435943]] }, "temporal": { "interval": [["2015-11-12T11:00:00Z", "2015-11-13T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12206f9f281794b5dc95e331d354a5ed5ec71a93d68faec30181d085a85e7d9cc7e1", + "file:size": 1922 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From d9c0b61607b47bada2249ff83beb85d57e69735e Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:24:22 +1300 Subject: [PATCH 148/309] feat: import Tasman - Richmond and Motueka LiDAR 1m DSM (2015) (#155) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/tasman/richmond-and-motueka_2015/dsm_1m/2193/collection.json b/stac/tasman/richmond-and-motueka_2015/dsm_1m/2193/collection.json index fd334a86..63d8e84f 100644 --- a/stac/tasman/richmond-and-motueka_2015/dsm_1m/2193/collection.json +++ b/stac/tasman/richmond-and-motueka_2015/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N06NAENW95RBY17MN2M00A", + "id": "01HQP9ZSG6AFQV39TRRJDNDHT8", "title": "Tasman - Richmond and Motueka LiDAR 1m DSM (2015)", - "description": "Digital Surface Model within the Tasman - Richmond and Motueka region captured in 2015.", + "description": "Digital Surface Model within the Tasman region captured in 2015.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -40,8 +40,24 @@ { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Richmond and Motueka", "extent": { "spatial": { "bbox": [[172.914164, -41.4976164, 173.2582727, -41.0435943]] }, "temporal": { "interval": [["2015-11-12T11:00:00Z", "2015-11-13T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12206f9f281794b5dc95e331d354a5ed5ec71a93d68faec30181d085a85e7d9cc7e1", + "file:size": 1922 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 86e58a01c0ff41cd253580de42e5d6c0caee59bb Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:34:48 +1300 Subject: [PATCH 149/309] feat: import Tasman - Abel Tasman and Golden Bay LiDAR 1m DEM (2016) (#157) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/tasman/abel-tasman-and-golden-bay_2016/dem_1m/2193/collection.json b/stac/tasman/abel-tasman-and-golden-bay_2016/dem_1m/2193/collection.json index 24661930..6574365f 100644 --- a/stac/tasman/abel-tasman-and-golden-bay_2016/dem_1m/2193/collection.json +++ b/stac/tasman/abel-tasman-and-golden-bay_2016/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N0FG2HT8VGPSFPSH2K26M2", + "id": "01HQPA9MGASXVBXH1SRS3SYZ5B", "title": "Tasman - Abel Tasman and Golden Bay LiDAR 1m DEM (2016)", - "description": "Digital Elevation Model within the Tasman - Abel Tasman and Golden Bay region captured in 2016.", + "description": "Digital Elevation Model within the Tasman region captured in 2016.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -46,8 +46,24 @@ { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Abel Tasman and Golden Bay", "extent": { "spatial": { "bbox": [[172.6868094, -41.1733388, 173.0857515, -40.7188997]] }, "temporal": { "interval": [["2016-12-12T11:00:00Z", "2016-12-13T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a57875c2d6f78b06029600863fe479ee52de2b2f7c604be824a5550ca86d8869", + "file:size": 187920 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 075dd17c8d53c2fa7ca7018b2750a313dee4eb9b Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:34:51 +1300 Subject: [PATCH 150/309] feat: import Tasman - Abel Tasman and Golden Bay LiDAR 1m DSM (2016) (#158) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/tasman/abel-tasman-and-golden-bay_2016/dsm_1m/2193/collection.json b/stac/tasman/abel-tasman-and-golden-bay_2016/dsm_1m/2193/collection.json index a7b16916..3eb9ed8e 100644 --- a/stac/tasman/abel-tasman-and-golden-bay_2016/dsm_1m/2193/collection.json +++ b/stac/tasman/abel-tasman-and-golden-bay_2016/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N0H9ZGG2Y8QFTAJBZ0R8A2", + "id": "01HQPAA86PG6F76DG59SHZ76ZA", "title": "Tasman - Abel Tasman and Golden Bay LiDAR 1m DSM (2016)", - "description": "Digital Surface Model within the Tasman - Abel Tasman and Golden Bay region captured in 2016.", + "description": "Digital Surface Model within the Tasman region captured in 2016.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -46,8 +46,24 @@ { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Abel Tasman and Golden Bay", "extent": { "spatial": { "bbox": [[172.6868094, -41.1733388, 173.0857515, -40.7188997]] }, "temporal": { "interval": [["2016-12-12T11:00:00Z", "2016-12-13T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220fb5aead8951a43e80be9470ab27f4067d639daed7f6d27b9c4ac334d281b4db7", + "file:size": 364919 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 2ca278f7fafe90974c8d21029b92c5d7176eb0b8 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:35:28 +1300 Subject: [PATCH 151/309] feat: import Otago - Balclutha LiDAR 1m DSM (2020) (#160) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/otago/balclutha_2020/dsm_1m/2193/collection.json b/stac/otago/balclutha_2020/dsm_1m/2193/collection.json index f37b4cf4..5456cc0f 100644 --- a/stac/otago/balclutha_2020/dsm_1m/2193/collection.json +++ b/stac/otago/balclutha_2020/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N0SYH9TZSTJFJH2WNPRF9J", + "id": "01HQPAYDYQY45ZJ2415K2019M6", "title": "Otago - Balclutha LiDAR 1m DSM (2020)", - "description": "Digital Surface Model within the Otago - Balclutha region captured in 2020.", + "description": "Digital Surface Model within the Otago region captured in 2020.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -42,8 +42,24 @@ { "name": "Otago Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Balclutha", "extent": { "spatial": { "bbox": [[169.5984967, -46.4456066, 169.9866335, -46.1150135]] }, "temporal": { "interval": [["2020-01-15T11:00:00Z", "2020-01-17T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a137e1639ca8b9454530c728d902046cbf9081cffb089db9cd4360463e5efe2f", + "file:size": 1430 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From d7e4a85df254356618972dca90d10a189078ba3e Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:35:31 +1300 Subject: [PATCH 152/309] feat: import Otago - Balclutha LiDAR 1m DEM (2020) (#159) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/otago/balclutha_2020/dem_1m/2193/collection.json b/stac/otago/balclutha_2020/dem_1m/2193/collection.json index 2b9b7ade..6fbe9c3b 100644 --- a/stac/otago/balclutha_2020/dem_1m/2193/collection.json +++ b/stac/otago/balclutha_2020/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N0KFCMHWZKTGRRRJBW8P88", + "id": "01HQPAVJYFD06QZP1ET2GDPKRY", "title": "Otago - Balclutha LiDAR 1m DEM (2020)", - "description": "Digital Elevation Model within the Otago - Balclutha region captured in 2020.", + "description": "Digital Elevation Model within the Otago region captured in 2020.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -42,8 +42,24 @@ { "name": "Otago Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Balclutha", "extent": { "spatial": { "bbox": [[169.5984967, -46.4456066, 169.9866335, -46.1150135]] }, "temporal": { "interval": [["2020-01-15T11:00:00Z", "2020-01-17T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a137e1639ca8b9454530c728d902046cbf9081cffb089db9cd4360463e5efe2f", + "file:size": 1430 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From f0f564f9d69f9a56da5c96ceb8b5f0456105e730 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:43:14 +1300 Subject: [PATCH 153/309] feat: import Wellington City LiDAR 1m DSM (2019-2020) (#132) Co-authored-by: Daniel Silk --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/wellington/wellington-city_2019-2020/dsm_1m/2193/collection.json b/stac/wellington/wellington-city_2019-2020/dsm_1m/2193/collection.json index dd0a1a6d..f65f715a 100644 --- a/stac/wellington/wellington-city_2019-2020/dsm_1m/2193/collection.json +++ b/stac/wellington/wellington-city_2019-2020/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H7GXPYVT65JPN0DYWS5HZCQS", + "id": "01HQMBZ3AN7M16TBT28MJWXCAM", "title": "Wellington City LiDAR 1m DSM (2019-2020)", - "description": "Digital Surface Model within the Wellington City region captured in 2019-2020.", + "description": "Digital Surface Model within the Wellington region captured in 2019-2020.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -30,8 +30,24 @@ { "name": "Wellington City Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Wellington City", "extent": { "spatial": { "bbox": [[174.6877591, -41.4202865, 174.9202826, -41.0935096]] }, "temporal": { "interval": [["2019-03-19T11:00:00Z", "2020-03-13T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220385235693698fd3d7811a8bff51db607b8f69603f913005fbe6776bd8449d459", + "file:size": 4671 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 78dc4791dbd3a10b03090aeeecbb9e80c9d52825 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:43:49 +1300 Subject: [PATCH 154/309] feat: import Wellington City LiDAR 1m DEM (2019-2020) (#131) Co-authored-by: Daniel Silk --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/wellington/wellington-city_2019-2020/dem_1m/2193/collection.json b/stac/wellington/wellington-city_2019-2020/dem_1m/2193/collection.json index 5b36d459..f2746e36 100644 --- a/stac/wellington/wellington-city_2019-2020/dem_1m/2193/collection.json +++ b/stac/wellington/wellington-city_2019-2020/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H7GWW48C9K2AXK5MRSA6BGGP", + "id": "01HQMBZ0CC3ZD705NJ8GTHFKA1", "title": "Wellington City LiDAR 1m DEM (2019-2020)", - "description": "Digital Elevation Model within the Wellington City region captured in 2019-2020.", + "description": "Digital Elevation Model within the Wellington region captured in 2019-2020.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -30,8 +30,24 @@ { "name": "Wellington City Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Wellington City", "extent": { "spatial": { "bbox": [[174.6877591, -41.4202865, 174.9202826, -41.0935096]] }, "temporal": { "interval": [["2019-03-19T11:00:00Z", "2020-03-13T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122030d81e99d842a5791df0b36050b307569728b0b56afdd071c5243a9ad4ac3890", + "file:size": 4165 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From b3be7fb6fbea874bcca3a5343e2bc710627ef2c2 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 12:16:01 +1300 Subject: [PATCH 155/309] feat: import Canterbury - Mackenzie LiDAR 1m DEM (2015) (#117) Co-authored-by: Alice Fage Co-authored-by: Daniel Silk --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json b/stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json index 9efc6de5..3945ed34 100644 --- a/stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json +++ b/stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json @@ -1,9 +1,9 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MT3VPSEQ8PCFWHE468N10F", + "id": "01HQM3VFGWXGMJDH3XQE0YZFGT", "title": "Canterbury - Mackenzie LiDAR 1m DEM (2015)", - "description": "Digital Elevation Model within the Canterbury - Mackenzie region captured in 2015.", + "description": "Digital Elevation Model within the Canterbury region captured in 2015.", "license": "CC-BY-4.0", "links": [ { @@ -59,10 +59,26 @@ ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, - { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "licensor", "processor"] } + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["licensor", "host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Mackenzie", "extent": { "spatial": { "bbox": [[169.9006493, -44.5118652, 170.5154636, -43.9938781]] }, "temporal": { "interval": [["2015-02-09T11:00:00Z", "2015-02-10T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220d4d3463394f6e8f7917d5aed08f82cd11705f012bf5b0c284aedae01afa92856", + "file:size": 52996 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 0222b3d0c095cc2207456f20d342f7c44bce4f35 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:19:44 +1300 Subject: [PATCH 156/309] feat: import Marlborough LiDAR 1m DSM (2018) (#161) --- .../dsm_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/marlborough/marlborough_2018/dsm_1m/2193/collection.json b/stac/marlborough/marlborough_2018/dsm_1m/2193/collection.json index 26853349..4185f764 100644 --- a/stac/marlborough/marlborough_2018/dsm_1m/2193/collection.json +++ b/stac/marlborough/marlborough_2018/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H7GXQPTMTXW985R0SDBAMT3F", + "id": "01HQPBHHQXS723X54HNX2BREJW", "title": "Marlborough LiDAR 1m DSM (2018)", "description": "Digital Surface Model within the Marlborough region captured in 2018.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -70,8 +70,23 @@ { "name": "Marlborough District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "marlborough", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[173.2590459, -41.948916, 174.2425113, -41.2327826]] }, "temporal": { "interval": [["2018-05-25T12:00:00Z", "2018-09-11T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220b98747045bc10edd94126fd8f68e868f3b86091acbfa75fd94583b3a26dfb3fa", + "file:size": 16064 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 429388ab34431cc88a75dd09f2dc1ff4ef0804fe Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:20:56 +1300 Subject: [PATCH 157/309] feat: import Wellington - Hutt City LiDAR 1m DSM (2021) (#174) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/wellington/hutt-city_2021/dsm_1m/2193/collection.json b/stac/wellington/hutt-city_2021/dsm_1m/2193/collection.json index da37e4f8..b33a31d2 100644 --- a/stac/wellington/hutt-city_2021/dsm_1m/2193/collection.json +++ b/stac/wellington/hutt-city_2021/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N2BW8Q71J23CRXJDQVT79T", + "id": "01HQPFBSFMSK3EAGMX91XWSPST", "title": "Wellington - Hutt City LiDAR 1m DSM (2021)", - "description": "Digital Surface Model within the Wellington - Hutt City region captured in 2021.", + "description": "Digital Surface Model within the Wellington region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -30,8 +30,24 @@ { "name": "Hutt City Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hutt City", "extent": { "spatial": { "bbox": [[174.802131, -41.3527997, 175.034859, -41.0906186]] }, "temporal": { "interval": [["2021-03-22T11:00:00Z", "2021-03-26T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220fc0a49f60701778f24343bf415368e688f0ac78755398db295ce5b5b5e506610", + "file:size": 64992 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From fba767904460034b59b0ea893ff2477475165f2b Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:21:08 +1300 Subject: [PATCH 158/309] feat: import Wellington - Hutt City LiDAR 1m DEM (2021) (#173) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/wellington/hutt-city_2021/dem_1m/2193/collection.json b/stac/wellington/hutt-city_2021/dem_1m/2193/collection.json index 959727c1..3507490f 100644 --- a/stac/wellington/hutt-city_2021/dem_1m/2193/collection.json +++ b/stac/wellington/hutt-city_2021/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N2AC8W252PEAX6GNS0W4BX", + "id": "01HQPF9MT38NM2T02EW00BF45Z", "title": "Wellington - Hutt City LiDAR 1m DEM (2021)", - "description": "Digital Elevation Model within the Wellington - Hutt City region captured in 2021.", + "description": "Digital Elevation Model within the Wellington region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -30,8 +30,24 @@ { "name": "Hutt City Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hutt City", "extent": { "spatial": { "bbox": [[174.802131, -41.3527997, 175.034859, -41.0906186]] }, "temporal": { "interval": [["2021-03-22T11:00:00Z", "2021-03-26T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220e1dc00d6a8019789c90f86804c62ba6ff723aac58cabc834200c92251b7ce4f9", + "file:size": 54497 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 3f0670869c6a47f6857bf258839fb7524f48e323 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:21:52 +1300 Subject: [PATCH 159/309] feat: import Otago - Queenstown LiDAR 1m DEM (2021) (#171) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/otago/queenstown_2021/dem_1m/2193/collection.json b/stac/otago/queenstown_2021/dem_1m/2193/collection.json index 0ffe325a..54acd93d 100644 --- a/stac/otago/queenstown_2021/dem_1m/2193/collection.json +++ b/stac/otago/queenstown_2021/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N254E7RA3Q1XYWS0WQHTEY", + "id": "01HQPF4VXXV8BACCZ4TRQ1R7EZ", "title": "Otago - Queenstown LiDAR 1m DEM (2021)", - "description": "Digital Elevation Model within the Otago - Queenstown region captured in 2021.", + "description": "Digital Elevation Model within the Otago region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -31,8 +31,24 @@ { "name": "Queenstown-Lakes District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Queenstown", "extent": { "spatial": { "bbox": [[168.5763338, -45.1165141, 168.8945028, -44.9157948]] }, "temporal": { "interval": [["2021-03-12T11:00:00Z", "2021-03-13T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220242522ab01254958de58092c4463c5ceb17d7c5f1fa2ef9ecbc3c071dda2ebef", + "file:size": 5077 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 44b43edf6330619b4c0b25db4d358c2498696a17 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:21:55 +1300 Subject: [PATCH 160/309] feat: import Otago - Queenstown LiDAR 1m DSM (2021) (#172) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/otago/queenstown_2021/dsm_1m/2193/collection.json b/stac/otago/queenstown_2021/dsm_1m/2193/collection.json index a48a3843..a0845f08 100644 --- a/stac/otago/queenstown_2021/dsm_1m/2193/collection.json +++ b/stac/otago/queenstown_2021/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N256ZF2SRWMDZAJJYF8WP6", + "id": "01HQPF571HHNWJVZ26NE0ZZPRC", "title": "Otago - Queenstown LiDAR 1m DSM (2021)", - "description": "Digital Surface Model within the Otago - Queenstown region captured in 2021.", + "description": "Digital Surface Model within the Otago region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -31,8 +31,24 @@ { "name": "Queenstown-Lakes District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Queenstown", "extent": { "spatial": { "bbox": [[168.5763338, -45.1165141, 168.8945028, -44.9157948]] }, "temporal": { "interval": [["2021-03-12T11:00:00Z", "2021-03-13T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220458d0723ed665cd18ce2d6f35936ad93f54d9d84630ca09c23a9243a5708e6fc", + "file:size": 5075 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From d3592ab525d62390e27810f5b1cde5da5b979b47 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:23:50 +1300 Subject: [PATCH 161/309] feat: import West Coast LiDAR 1m DEM (2020-2022) (#179) --- .../dem_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/west-coast/west-coast_2020-2022/dem_1m/2193/collection.json b/stac/west-coast/west-coast_2020-2022/dem_1m/2193/collection.json index f4612fd5..c548814a 100644 --- a/stac/west-coast/west-coast_2020-2022/dem_1m/2193/collection.json +++ b/stac/west-coast/west-coast_2020-2022/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H7H2JPK8AR65P0QB8PZV1YJ9", + "id": "01HQPFNVQXKAFY9REJGE82AKZ9", "title": "West Coast LiDAR 1m DEM (2020-2022)", "description": "Digital Elevation Model within the West Coast region captured in 2020-2022.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -273,8 +273,23 @@ { "name": "West Coast Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "west-coast", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[168.0352097, -44.3199292, 171.6419363, -41.8108859]] }, "temporal": { "interval": [["2020-05-15T12:00:00Z", "2022-02-13T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a8ffb8a7f3adf42dbac72d38b802580327ae2b5fc7b4b54eab694f19c3cf42d0", + "file:size": 43499 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From bfb465395c29cc92992d87fecb06fb69f7bcf65d Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:23:52 +1300 Subject: [PATCH 162/309] feat: import West Coast LiDAR 1m DSM (2020-2022) (#180) --- .../dsm_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/west-coast/west-coast_2020-2022/dsm_1m/2193/collection.json b/stac/west-coast/west-coast_2020-2022/dsm_1m/2193/collection.json index 8f683f1b..30b92853 100644 --- a/stac/west-coast/west-coast_2020-2022/dsm_1m/2193/collection.json +++ b/stac/west-coast/west-coast_2020-2022/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H7H2JPJCJ1XXHDXW9QK2C04P", + "id": "01HQPFPN0JN80JMY68GRFCNYPN", "title": "West Coast LiDAR 1m DSM (2020-2022)", "description": "Digital Surface Model within the West Coast region captured in 2020-2022.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -273,8 +273,23 @@ { "name": "West Coast Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "west-coast", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[168.0352097, -44.3199292, 171.6419363, -41.8108859]] }, "temporal": { "interval": [["2020-05-15T12:00:00Z", "2022-02-13T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220afe8abd9d186fb402561844f22b56d312e74eb6357ccd6cf245690a0a10fe604", + "file:size": 45797 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 27cbd6cc2b90de0410937eb7b1a0d7291e2f222c Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:24:11 +1300 Subject: [PATCH 163/309] feat: import Tasman - Golden Bay LiDAR 1m DEM (2017) (#168) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/tasman/golden-bay_2017/dem_1m/2193/collection.json b/stac/tasman/golden-bay_2017/dem_1m/2193/collection.json index 16600f1b..a5427852 100644 --- a/stac/tasman/golden-bay_2017/dem_1m/2193/collection.json +++ b/stac/tasman/golden-bay_2017/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N1D3Q19K8XKM44P0F3P8F0", + "id": "01HQPEDCXEXA43NWG0GB4QMAW9", "title": "Tasman - Golden Bay LiDAR 1m DEM (2017)", - "description": "Digital Elevation Model within the Tasman - Golden Bay region captured in 2017.", + "description": "Digital Elevation Model within the Tasman region captured in 2017.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -70,8 +70,24 @@ { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Golden Bay", "extent": { "spatial": { "bbox": [[172.401518, -41.8218757, 173.2014805, -40.4590873]] }, "temporal": { "interval": [["2017-11-23T11:00:00Z", "2017-12-15T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220270491bd89e1b97ab03408d1da07d971428b4d6cf85f19c6874575a22d9dccd5", + "file:size": 246354 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 37aa0aa813857cf896d5061041ae39fe536eab63 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:24:22 +1300 Subject: [PATCH 164/309] feat: import Tasman - Golden Bay LiDAR 1m DSM (2017) (#169) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/tasman/golden-bay_2017/dsm_1m/2193/collection.json b/stac/tasman/golden-bay_2017/dsm_1m/2193/collection.json index 79f31d90..0381df7e 100644 --- a/stac/tasman/golden-bay_2017/dsm_1m/2193/collection.json +++ b/stac/tasman/golden-bay_2017/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N1H4K24AYENS579XXFGF16", + "id": "01HQPEDCXEZHXEEMRPHHY1X502", "title": "Tasman - Golden Bay LiDAR 1m DSM (2017)", - "description": "Digital Surface Model within the Tasman - Golden Bay region captured in 2017.", + "description": "Digital Surface Model within the Tasman region captured in 2017.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -70,8 +70,24 @@ { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Golden Bay", "extent": { "spatial": { "bbox": [[172.401518, -41.8218757, 173.2014805, -40.4590873]] }, "temporal": { "interval": [["2017-11-23T11:00:00Z", "2017-12-15T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12208d1d1d28d73374f8141e7a475b5d196545c2c2c04785d5a6dd113323f2c63d00", + "file:size": 279491 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 2786c027e48c40804ad310b6a119aff5955f866d Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:24:50 +1300 Subject: [PATCH 165/309] feat: import Nelson LiDAR 1m DSM (2021) (#177) --- .../nelson_2021/dsm_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/nelson/nelson_2021/dsm_1m/2193/collection.json b/stac/nelson/nelson_2021/dsm_1m/2193/collection.json index c24278ea..3e733b11 100644 --- a/stac/nelson/nelson_2021/dsm_1m/2193/collection.json +++ b/stac/nelson/nelson_2021/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N3028MANKVW7KQ6W9B190C", + "id": "01HQPFFD4ZX87G4MEPB9VQXD36", "title": "Nelson LiDAR 1m DSM (2021)", "description": "Digital Surface Model within the Nelson region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -46,8 +46,23 @@ { "name": "Nelson City Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "nelson", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[173.1432012, -41.4325902, 173.657408, -41.0417549]] }, "temporal": { "interval": [["2021-01-09T11:00:00Z", "2021-06-23T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220e9e3bb74d994ee9cedd17359c96e7b11c38fbf29096f4dae001641671137961c", + "file:size": 63593 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From f46c1a9e854e9d5230f3b86dbb3a8bc2d695d0a6 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:24:53 +1300 Subject: [PATCH 166/309] feat: import Nelson LiDAR 1m DEM (2021) (#175) --- .../nelson_2021/dem_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/nelson/nelson_2021/dem_1m/2193/collection.json b/stac/nelson/nelson_2021/dem_1m/2193/collection.json index 10630a9b..5e93dca0 100644 --- a/stac/nelson/nelson_2021/dem_1m/2193/collection.json +++ b/stac/nelson/nelson_2021/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N2Y0PGT5F5YFDPW62BTS7J", + "id": "01HQPFCF2E6EG5YC1G2RPXKBST", "title": "Nelson LiDAR 1m DEM (2021)", "description": "Digital Elevation Model within the Nelson region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -46,8 +46,23 @@ { "name": "Nelson City Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "nelson", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[173.1432012, -41.4325902, 173.657408, -41.0417549]] }, "temporal": { "interval": [["2021-01-09T11:00:00Z", "2021-06-23T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220e9e3bb74d994ee9cedd17359c96e7b11c38fbf29096f4dae001641671137961c", + "file:size": 63593 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From c9838ee18572f06645343c351ee8c769772ac37a Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:28:23 +1300 Subject: [PATCH 167/309] feat: import Wellington - Upper Hutt City LiDAR 1m DSM (2021) (#166) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/wellington/upper-hutt-city_2021/dsm_1m/2193/collection.json b/stac/wellington/upper-hutt-city_2021/dsm_1m/2193/collection.json index 2c0a5b5f..9f74b1f5 100644 --- a/stac/wellington/upper-hutt-city_2021/dsm_1m/2193/collection.json +++ b/stac/wellington/upper-hutt-city_2021/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N1HWH2DD3B4ZP57YKFCD77", + "id": "01HQPEMX4YRZA6FE2P8X42CP8A", "title": "Wellington - Upper Hutt City LiDAR 1m DSM (2021)", - "description": "Digital Surface Model within the Wellington - Upper Hutt City region captured in 2021.", + "description": "Digital Surface Model within the Wellington region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -25,8 +25,24 @@ { "name": "Upper Hutt City Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Upper Hutt City", "extent": { "spatial": { "bbox": [[174.9717275, -41.2212486, 175.2023473, -41.0237366]] }, "temporal": { "interval": [["2021-03-24T11:00:00Z", "2021-03-26T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12207c7972ea114de61f34d33020c4c72222f2d9244a09716c50b21b52ca5acbf221", + "file:size": 4770 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 82358c166a0ba9fcc9705f35927f8bc368aaacb5 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:28:26 +1300 Subject: [PATCH 168/309] feat: import Wellington - Upper Hutt City LiDAR 1m DEM (2021) (#165) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/wellington/upper-hutt-city_2021/dem_1m/2193/collection.json b/stac/wellington/upper-hutt-city_2021/dem_1m/2193/collection.json index c07f88f5..1efa37e4 100644 --- a/stac/wellington/upper-hutt-city_2021/dem_1m/2193/collection.json +++ b/stac/wellington/upper-hutt-city_2021/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N1HAS784PPE6NMR11C6J57", + "id": "01HQPEDD94P084NZMA8KTQSVCV", "title": "Wellington - Upper Hutt City LiDAR 1m DEM (2021)", - "description": "Digital Elevation Model within the Wellington - Upper Hutt City region captured in 2021.", + "description": "Digital Elevation Model within the Wellington region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -25,8 +25,24 @@ { "name": "Upper Hutt City Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Upper Hutt City", "extent": { "spatial": { "bbox": [[174.9717275, -41.2212486, 175.2023473, -41.0237366]] }, "temporal": { "interval": [["2021-03-24T11:00:00Z", "2021-03-26T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12207c7972ea114de61f34d33020c4c72222f2d9244a09716c50b21b52ca5acbf221", + "file:size": 4770 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 7d7420185dfb907761d7bd78b258a041a4612a4f Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:29:16 +1300 Subject: [PATCH 169/309] =?UTF-8?q?feat:=20import=20Wellington=20-=20K?= =?UTF-8?q?=C4=81piti=20Coast=20LiDAR=201m=20DSM=20(2021)=20(#170)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/wellington/kapiti-coast_2021/dsm_1m/2193/collection.json b/stac/wellington/kapiti-coast_2021/dsm_1m/2193/collection.json index 9576bcfd..ebcbbdcf 100644 --- a/stac/wellington/kapiti-coast_2021/dsm_1m/2193/collection.json +++ b/stac/wellington/kapiti-coast_2021/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N1PC1WX8T8YCXWKG6DCS60", + "id": "01HQPF1CPR7PB5HMKP583SNCAA", "title": "Wellington - Kāpiti Coast LiDAR 1m DSM (2021)", - "description": "Digital Surface Model within the Wellington - Kāpiti Coast region captured in 2021.", + "description": "Digital Surface Model within the Wellington region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -37,8 +37,24 @@ { "name": "Kāpiti Coast District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Kāpiti Coast", "extent": { "spatial": { "bbox": [[174.9089866, -41.0277519, 175.2506622, -40.6337799]] }, "temporal": { "interval": [["2021-03-12T11:00:00Z", "2021-03-14T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122005589fbc88edb964de76334f495163cb5ac7379644c22131d346a9e064b601ea", + "file:size": 33355 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 448585a204a67d69fb2aa9e07450e4731e370b7c Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:29:20 +1300 Subject: [PATCH 170/309] =?UTF-8?q?feat:=20import=20Wellington=20-=20K?= =?UTF-8?q?=C4=81piti=20Coast=20LiDAR=201m=20DEM=20(2021)=20(#167)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/wellington/kapiti-coast_2021/dem_1m/2193/collection.json b/stac/wellington/kapiti-coast_2021/dem_1m/2193/collection.json index 541996f8..d214c75b 100644 --- a/stac/wellington/kapiti-coast_2021/dem_1m/2193/collection.json +++ b/stac/wellington/kapiti-coast_2021/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H7GYN7M3VCK7ERN3HRZ4XYHE", + "id": "01HQPESP47FJ7SRPP3H26MCRAM", "title": "Wellington - Kāpiti Coast LiDAR 1m DEM (2021)", - "description": "Digital Elevation Model within the Wellington - Kāpiti Coast region captured in 2021.", + "description": "Digital Elevation Model within the Wellington region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -37,8 +37,24 @@ { "name": "Kāpiti Coast District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Kāpiti Coast", "extent": { "spatial": { "bbox": [[174.9089866, -41.0277519, 175.2506622, -40.6337799]] }, "temporal": { "interval": [["2021-03-12T11:00:00Z", "2021-03-14T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220095cc1f8b95ded37f9935d3f8d5bbbf04edb3926d981d622cfa9ce155b4e3e48", + "file:size": 33256 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 189f9efbc6a9dab8ecb53f81a53decfe4194d1d3 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:30:02 +1300 Subject: [PATCH 171/309] feat: import Otago - Dunedin and Mosgiel LiDAR 1m DSM (2021) (#178) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/otago/dunedin-and-mosgiel_2021/dsm_1m/2193/collection.json b/stac/otago/dunedin-and-mosgiel_2021/dsm_1m/2193/collection.json index 7529a57a..4d26d050 100644 --- a/stac/otago/dunedin-and-mosgiel_2021/dsm_1m/2193/collection.json +++ b/stac/otago/dunedin-and-mosgiel_2021/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N3CFW4H84GCJPKT4JMN3QG", + "id": "01HQPFMCE4RDF6BR8YZNVDT2TV", "title": "Otago - Dunedin and Mosgiel LiDAR 1m DSM (2021)", - "description": "Digital Surface Model within the Otago - Dunedin and Mosgiel region captured in 2021.", + "description": "Digital Surface Model within the Otago region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -25,8 +25,24 @@ { "name": "Otago Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Dunedin and Mosgiel", "extent": { "spatial": { "bbox": [[170.3063778, -45.9445839, 170.5595063, -45.8095509]] }, "temporal": { "interval": [["2021-06-23T12:00:00Z", "2021-06-23T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122000449178693c1d1702bb5a46023998b8e04196064e41429e6000071c32e4c154", + "file:size": 2149 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 070834b71a2bf58f1b6a842bb34b276df2756902 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:30:11 +1300 Subject: [PATCH 172/309] feat: import Otago - Dunedin and Mosgiel LiDAR 1m DEM (2021) (#176) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/otago/dunedin-and-mosgiel_2021/dem_1m/2193/collection.json b/stac/otago/dunedin-and-mosgiel_2021/dem_1m/2193/collection.json index 22a9c2bb..397cbe6b 100644 --- a/stac/otago/dunedin-and-mosgiel_2021/dem_1m/2193/collection.json +++ b/stac/otago/dunedin-and-mosgiel_2021/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N3BXWF868CCTYDQQG4A570", + "id": "01HQPFHPNGDENDH1YCPNXVYP42", "title": "Otago - Dunedin and Mosgiel LiDAR 1m DEM (2021)", - "description": "Digital Elevation Model within the Otago - Dunedin and Mosgiel region captured in 2021.", + "description": "Digital Elevation Model within the Otago region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -25,8 +25,24 @@ { "name": "Otago Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Dunedin and Mosgiel", "extent": { "spatial": { "bbox": [[170.3063778, -45.9445839, 170.5595063, -45.8095509]] }, "temporal": { "interval": [["2021-06-23T12:00:00Z", "2021-06-23T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12201e8262a6357b4ab5a085b00e950e98a3a4eaeaa6982a818b807b8b03e920a20e", + "file:size": 10000 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From c0b8521439f1c090f03f0962c08d345377db1f2b Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Wed, 28 Feb 2024 15:15:35 +1300 Subject: [PATCH 173/309] fix: gisborne 2023 updated dates (#188) --- stac/gisborne/gisborne_2023/dem_1m/2193/collection.json | 2 +- stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stac/gisborne/gisborne_2023/dem_1m/2193/collection.json b/stac/gisborne/gisborne_2023/dem_1m/2193/collection.json index e79d2cdd..4d03b5b6 100644 --- a/stac/gisborne/gisborne_2023/dem_1m/2193/collection.json +++ b/stac/gisborne/gisborne_2023/dem_1m/2193/collection.json @@ -167,7 +167,7 @@ "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[177.1042804, -38.9989083, 178.3620224, -38.3263176]] }, - "temporal": { "interval": [["2023-09-10T12:00:00Z", "2023-09-19T12:00:00Z"]] } + "temporal": { "interval": [["2023-09-10T12:00:00Z", "2023-11-12T11:00:00Z"]] } }, "assets": { "capture_area": { diff --git a/stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json b/stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json index 7e0b57c3..1de43c8b 100644 --- a/stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json +++ b/stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json @@ -167,7 +167,7 @@ "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[177.1042804, -38.9989083, 178.3620224, -38.3263176]] }, - "temporal": { "interval": [["2023-09-10T12:00:00Z", "2023-09-19T12:00:00Z"]] } + "temporal": { "interval": [["2023-09-10T12:00:00Z", "2023-11-12T11:00:00Z"]] } }, "assets": { "capture_area": { From 0fd485690e0678235bfdb8bff884a2bb77fc6d33 Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Wed, 28 Feb 2024 15:31:47 +1300 Subject: [PATCH 174/309] fix: mackenzie catalog link (#199) These collection PRs were created before the catalog template was updated for the `nz-elevation` bucket. --- stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json | 2 +- stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json b/stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json index 3945ed34..0ec65fd0 100644 --- a/stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json +++ b/stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json @@ -8,7 +8,7 @@ "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, diff --git a/stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json b/stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json index 2a9acab5..8dcd2685 100644 --- a/stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json +++ b/stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json @@ -8,7 +8,7 @@ "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, From 51ff38a7686598c8c8bc972c07d39310f861f8b1 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 15:37:54 +1300 Subject: [PATCH 175/309] feat: import Gisborne LiDAR 1m DSM (2018-2020) (#183) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/gisborne/gisborne_2018-2020/dsm_1m/2193/collection.json b/stac/gisborne/gisborne_2018-2020/dsm_1m/2193/collection.json index d5487b2f..9bd02eec 100644 --- a/stac/gisborne/gisborne_2018-2020/dsm_1m/2193/collection.json +++ b/stac/gisborne/gisborne_2018-2020/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6QKE5Y1P8ZAMSPS8547VQ86", + "id": "01HQPGG0W0NC0HV3R2YFTRS0CX", "title": "Gisborne LiDAR 1m DSM (2018-2020)", "description": "Digital Surface Model within the Gisborne region captured in 2018-2020.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -58,6 +58,7 @@ { "rel": "item", "href": "./BD45_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BD45_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BD45_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD46_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BE42_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./BE42_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./BE42_10000_0305.json", "type": "application/json" }, @@ -322,8 +323,23 @@ { "name": "Gisborne District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "gisborne", + "linz:security_classification": "unclassified", "extent": { - "spatial": { "bbox": [[177.1042804, -38.9989083, 178.5813461, -37.4863429]] }, + "spatial": { "bbox": [[177.1042804, -38.9989083, 178.6355576, -37.4863429]] }, "temporal": { "interval": [["2018-12-30T11:00:00Z", "2020-10-08T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122030cc7dcbe933c720eb02335f9359443042b75efea20d733b65106aa846b282a1", + "file:size": 24627 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From cd607c04dacb0b67bd18fdbbe13cf13ae60db4c5 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 15:38:04 +1300 Subject: [PATCH 176/309] feat: import Gisborne LiDAR 1m DEM (2018-2020) (#181) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/gisborne/gisborne_2018-2020/dem_1m/2193/collection.json b/stac/gisborne/gisborne_2018-2020/dem_1m/2193/collection.json index 3b98b8ed..92e254f4 100644 --- a/stac/gisborne/gisborne_2018-2020/dem_1m/2193/collection.json +++ b/stac/gisborne/gisborne_2018-2020/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6QJG0DJ7CK1V18EV9M7B7YF", + "id": "01HQPFS47XJEWC1PYV4EGVXEPW", "title": "Gisborne LiDAR 1m DEM (2018-2020)", "description": "Digital Elevation Model within the Gisborne region captured in 2018-2020.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -58,6 +58,7 @@ { "rel": "item", "href": "./BD45_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BD45_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BD45_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD46_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BE42_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./BE42_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./BE42_10000_0305.json", "type": "application/json" }, @@ -322,8 +323,23 @@ { "name": "Gisborne District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "gisborne", + "linz:security_classification": "unclassified", "extent": { - "spatial": { "bbox": [[177.1042804, -38.9989083, 178.5813461, -37.4863429]] }, + "spatial": { "bbox": [[177.1042804, -38.9989083, 178.6355576, -37.4863429]] }, "temporal": { "interval": [["2018-12-30T11:00:00Z", "2020-10-08T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12202c655ed16c76f4efd71660102e1345e7f4d7c2073eb6278f618c528cc37cb8e7", + "file:size": 23704 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From bdd13662f0b3648cdbe213dee4d6f8588252a611 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:05:25 +1300 Subject: [PATCH 177/309] feat: import Tasman - Waimea Dam LiDAR 1m DSM (2023) (#198) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/tasman/waimea-dam_2023/dsm_1m/2193/collection.json b/stac/tasman/waimea-dam_2023/dsm_1m/2193/collection.json index a2f0c88c..2d36e1f5 100644 --- a/stac/tasman/waimea-dam_2023/dsm_1m/2193/collection.json +++ b/stac/tasman/waimea-dam_2023/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N6MZY105DBWNC88B4TV437", + "id": "01HQPPKCHF11E2WK14JN54G78Y", "title": "Tasman - Waimea Dam LiDAR 1m DSM (2023)", - "description": "Digital Surface Model within the Tasman - Waimea Dam region captured in 2023.", + "description": "Digital Surface Model within the Tasman region captured in 2023.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -19,8 +19,24 @@ { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Waimea Dam", "extent": { "spatial": { "bbox": [[173.143628, -41.4975302, 173.2012794, -41.4325902]] }, "temporal": { "interval": [["2023-03-08T11:00:00Z", "2023-03-08T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122028f391ae3fde2da713cf3683525beff208987a7cc04e8366b61504d553f92c1a", + "file:size": 719 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 4a8cd79cd30cbe82ac2f9498f3b65de463039d82 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:05:33 +1300 Subject: [PATCH 178/309] feat: import Tasman - Waimea Dam LiDAR 1m DEM (2023) (#197) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/tasman/waimea-dam_2023/dem_1m/2193/collection.json b/stac/tasman/waimea-dam_2023/dem_1m/2193/collection.json index 2024c116..6f7da2f8 100644 --- a/stac/tasman/waimea-dam_2023/dem_1m/2193/collection.json +++ b/stac/tasman/waimea-dam_2023/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N6J5ZGVQXCHQA2KY9PA6CG", + "id": "01HQPPHEVZR2HR6QSF2FX41TVY", "title": "Tasman - Waimea Dam LiDAR 1m DEM (2023)", - "description": "Digital Elevation Model within the Tasman - Waimea Dam region captured in 2023.", + "description": "Digital Elevation Model within the Tasman region captured in 2023.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -19,8 +19,24 @@ { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Waimea Dam", "extent": { "spatial": { "bbox": [[173.143628, -41.4975302, 173.2012794, -41.4325902]] }, "temporal": { "interval": [["2023-03-08T11:00:00Z", "2023-03-08T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122028f391ae3fde2da713cf3683525beff208987a7cc04e8366b61504d553f92c1a", + "file:size": 719 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 159fe5048b0e0ff08ffd4d79e903407faf6c1907 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:05:36 +1300 Subject: [PATCH 179/309] feat: import Otago - Coastal Catchments LiDAR 1m DEM (2021) (#201) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/otago/coastal-catchments_2021/dem_1m/2193/collection.json b/stac/otago/coastal-catchments_2021/dem_1m/2193/collection.json index ab607ca4..9cace5c0 100644 --- a/stac/otago/coastal-catchments_2021/dem_1m/2193/collection.json +++ b/stac/otago/coastal-catchments_2021/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N5B239PWF39WNVER4H254G", + "id": "01HQPPAZB4TE3R6J7DHH1M9EBE", "title": "Otago - Coastal Catchments LiDAR 1m DEM (2021)", - "description": "Digital Elevation Model within the Otago - Coastal Catchments region captured in 2021.", + "description": "Digital Elevation Model within the Otago region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -205,8 +205,24 @@ { "name": "Otago Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Coastal Catchments", "extent": { "spatial": { "bbox": [[169.1442885, -46.691381, 171.2058988, -44.8508836]] }, "temporal": { "interval": [["2021-06-24T12:00:00Z", "2021-09-30T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220228cb7b22ba37af6fd142598575bacc15a3d89fa16dc7f2f66d7f99af09a4eba", + "file:size": 1063000 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 0b695154e5c683a812a5a6523b392df1b5244553 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:05:39 +1300 Subject: [PATCH 180/309] feat: import Otago - Coastal Catchments LiDAR 1m DSM (2021) (#200) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/otago/coastal-catchments_2021/dsm_1m/2193/collection.json b/stac/otago/coastal-catchments_2021/dsm_1m/2193/collection.json index 2dc5b0b7..018e573e 100644 --- a/stac/otago/coastal-catchments_2021/dsm_1m/2193/collection.json +++ b/stac/otago/coastal-catchments_2021/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N5DTWRDHWXS2A779DFS15G", + "id": "01HQPPCBF1ARC4AH4Y7P6V2QJS", "title": "Otago - Coastal Catchments LiDAR 1m DSM (2021)", - "description": "Digital Surface Model within the Otago - Coastal Catchments region captured in 2021.", + "description": "Digital Surface Model within the Otago region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -205,8 +205,24 @@ { "name": "Otago Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Coastal Catchments", "extent": { "spatial": { "bbox": [[169.1442885, -46.691381, 171.2058988, -44.8508836]] }, "temporal": { "interval": [["2021-06-24T12:00:00Z", "2021-09-30T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220ed9279caa564fccb22f68db5a62397f3b02dc6ce270b2594f46d0d4e422eb5c8", + "file:size": 194267 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From ecd7992e9001af209b9f84527c66e7b1017d07ee Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:11:26 +1300 Subject: [PATCH 181/309] feat: import Taranaki LiDAR 1m DSM (2021) (#190) --- .../taranaki_2021/dsm_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/taranaki/taranaki_2021/dsm_1m/2193/collection.json b/stac/taranaki/taranaki_2021/dsm_1m/2193/collection.json index 10d12dff..d3121daa 100644 --- a/stac/taranaki/taranaki_2021/dsm_1m/2193/collection.json +++ b/stac/taranaki/taranaki_2021/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6Q2PW0J2JCHA2F90WY14QK6", + "id": "01HQPP623X6NPBT9Q61NFCTCYB", "title": "Taranaki LiDAR 1m DSM (2021)", "description": "Digital Surface Model within the Taranaki region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -301,8 +301,23 @@ { "name": "Taranaki Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "taranaki", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[173.6951122, -39.9290771, 175.0828484, -38.6936157]] }, "temporal": { "interval": [["2021-04-02T11:00:00Z", "2021-10-15T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204989101c8b9b9b69ea6f9fb40e483930817b7c36235f1c9c471a69f9788a1526", + "file:size": 53726 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From d58663c0d15836921b83a8792c0b158e5b0b880b Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:11:29 +1300 Subject: [PATCH 182/309] feat: import Taranaki LiDAR 1m DEM (2021) (#196) --- .../taranaki_2021/dem_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/taranaki/taranaki_2021/dem_1m/2193/collection.json b/stac/taranaki/taranaki_2021/dem_1m/2193/collection.json index 7068658a..9269d2bc 100644 --- a/stac/taranaki/taranaki_2021/dem_1m/2193/collection.json +++ b/stac/taranaki/taranaki_2021/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6NJGK1G43VT2JP2WN50SHVG", + "id": "01HQPP623SNTZ3D1ZM1X4C3YRX", "title": "Taranaki LiDAR 1m DEM (2021)", "description": "Digital Elevation Model within the Taranaki region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -300,8 +300,23 @@ { "name": "Taranaki Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "taranaki", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[173.6951122, -39.9290771, 175.0828484, -38.6936157]] }, "temporal": { "interval": [["2021-04-02T11:00:00Z", "2021-10-15T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220f9a389e3cecc1e36bee704d4cec2e1e992da551f9dd606e44ebd22cd3391b309", + "file:size": 555756 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 89484d9fec9100556c3eb87dd44c044ae578b9f3 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:11:55 +1300 Subject: [PATCH 183/309] feat: import Northland LiDAR 1m DSM (2018-2020) (#184) --- .../dsm_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/northland/northland_2018-2020/dsm_1m/2193/collection.json b/stac/northland/northland_2018-2020/dsm_1m/2193/collection.json index e9d06cef..0fede7f9 100644 --- a/stac/northland/northland_2018-2020/dsm_1m/2193/collection.json +++ b/stac/northland/northland_2018-2020/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6QHA3HADCB2NT6NK4EVBZP1", + "id": "01HQPKEWSNXFVT87GH15PDG14D", "title": "Northland LiDAR 1m DSM (2018-2020)", "description": "Digital Surface Model within the Northland region captured in 2018-2020.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -520,8 +520,23 @@ { "name": "Northland Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "northland", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[171.9837701, -36.4327099, 174.8350624, -34.0962294]] }, "temporal": { "interval": [["2018-11-30T11:00:00Z", "2020-01-31T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220576d46a2a3b1c6a517ee392cb55e396bd11904d17c656a7cfc0b0c144a2c13b7", + "file:size": 64475 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 11085fc2b2a8f5fe71bb6899469d897979789f03 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:12:19 +1300 Subject: [PATCH 184/309] feat: import Northland LiDAR 1m DEM (2018-2020) (#182) --- .../dem_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/northland/northland_2018-2020/dem_1m/2193/collection.json b/stac/northland/northland_2018-2020/dem_1m/2193/collection.json index 19b48e71..e9143010 100644 --- a/stac/northland/northland_2018-2020/dem_1m/2193/collection.json +++ b/stac/northland/northland_2018-2020/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6QGG9FTM9BM5MN9R5Y68AQP", + "id": "01HQPGQP71Z495ZTJGTQTSK6N1", "title": "Northland LiDAR 1m DEM (2018-2020)", "description": "Digital Elevation Model within the Northland region captured in 2018-2020.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -520,8 +520,23 @@ { "name": "Northland Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "northland", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[171.9837701, -36.4327099, 174.8350624, -34.0962294]] }, "temporal": { "interval": [["2018-11-30T11:00:00Z", "2020-01-31T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220576d46a2a3b1c6a517ee392cb55e396bd11904d17c656a7cfc0b0c144a2c13b7", + "file:size": 64475 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 6c76b9b323e4342f11fab79bd31a8b33755cd7ef Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:12:19 +1300 Subject: [PATCH 185/309] feat: import Otago - Wanaka LiDAR 1m DSM (2022-2023) (#193) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/otago/wanaka_2022-2023/dsm_1m/2193/collection.json b/stac/otago/wanaka_2022-2023/dsm_1m/2193/collection.json index 3dad7b2e..d5a3e157 100644 --- a/stac/otago/wanaka_2022-2023/dsm_1m/2193/collection.json +++ b/stac/otago/wanaka_2022-2023/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6NF8V88169AMQ0HVQAH7RNM", + "id": "01HQPR1X9BX2QNGS1NDVB8K0KN", "title": "Otago - Wanaka LiDAR 1m DSM (2022-2023)", - "description": "Digital Surface Model within the Otago - Wanaka region captured in 2022-2023.", + "description": "Digital Surface Model within the Otago region captured in 2022-2023.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -30,8 +30,24 @@ { "name": "Queenstown-Lakes District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Wanaka", "extent": { "spatial": { "bbox": [[169.0896929, -44.8099309, 169.3439075, -44.5472619]] }, "temporal": { "interval": [["2022-11-26T11:00:00Z", "2023-01-10T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12209e03aa3f97b6c3b9c3d3025b0e1ab48f1ba400a80ae3be7fa52371b56fdca728", + "file:size": 3756 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 1ea78b7ba78aa0f0fe292f4df007f474efdec1ab Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:12:22 +1300 Subject: [PATCH 186/309] feat: import Otago - Wanaka LiDAR 1m DEM (2022-2023) (#192) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/otago/wanaka_2022-2023/dem_1m/2193/collection.json b/stac/otago/wanaka_2022-2023/dem_1m/2193/collection.json index bb69a002..ecfcbc99 100644 --- a/stac/otago/wanaka_2022-2023/dem_1m/2193/collection.json +++ b/stac/otago/wanaka_2022-2023/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N71H070GHTVKCKYRY0P4AD", + "id": "01HQPR199Z9PGVWE9EGEX5BBS2", "title": "Otago - Wanaka LiDAR 1m DEM (2022-2023)", - "description": "Digital Elevation Model within the Otago - Wanaka region captured in 2022-2023.", + "description": "Digital Elevation Model within the Otago region captured in 2022-2023.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -30,8 +30,24 @@ { "name": "Queenstown-Lakes District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Wanaka", "extent": { "spatial": { "bbox": [[169.0896929, -44.8099309, 169.3439075, -44.5472619]] }, "temporal": { "interval": [["2022-11-26T11:00:00Z", "2023-01-10T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12209e03aa3f97b6c3b9c3d3025b0e1ab48f1ba400a80ae3be7fa52371b56fdca728", + "file:size": 3756 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 93e61a04c40ac9bcc7f74429d290a0024c5decd2 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:19:18 +1300 Subject: [PATCH 187/309] feat: import Stewart Island / Rakiura - Oban LiDAR 1m DEM (2021) (#186) Co-authored-by: Daniel Silk --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/southland/stewart-island-rakiura-oban_2021/dem_1m/2193/collection.json b/stac/southland/stewart-island-rakiura-oban_2021/dem_1m/2193/collection.json index 8fe13ca3..9f02495d 100644 --- a/stac/southland/stewart-island-rakiura-oban_2021/dem_1m/2193/collection.json +++ b/stac/southland/stewart-island-rakiura-oban_2021/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N4KDD0JJBYHTG9V1HGKG3K", + "id": "01HQPP62407807PEYMT6YQDAVT", "title": "Stewart Island / Rakiura - Oban LiDAR 1m DEM (2021)", - "description": "Digital Elevation Model within the Stewart Island / Rakiura - Oban region captured in 2021.", + "description": "Digital Elevation Model within the Southland region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -22,8 +22,24 @@ { "name": "Environment Southland", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "southland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Stewart Island / Rakiura - Oban", "extent": { "spatial": { "bbox": [[168.0465809, -46.970433, 168.1839243, -46.8359485]] }, "temporal": { "interval": [["2021-09-02T12:00:00Z", "2021-09-02T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c3478a8823c9c4b53ae87b539e783db18c8f67812dfccc9321018d3f1903803e", + "file:size": 1342 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 26ae8f889a8805ce59c8480938ba280dcf99ff44 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:19:24 +1300 Subject: [PATCH 188/309] feat: import Stewart Island / Rakiura - Oban LiDAR 1m DSM (2021) (#187) Co-authored-by: Daniel Silk --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/southland/stewart-island-rakiura-oban_2021/dsm_1m/2193/collection.json b/stac/southland/stewart-island-rakiura-oban_2021/dsm_1m/2193/collection.json index a5a23298..3f2cb711 100644 --- a/stac/southland/stewart-island-rakiura-oban_2021/dsm_1m/2193/collection.json +++ b/stac/southland/stewart-island-rakiura-oban_2021/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N57MV9SNQR55070ZMBWENT", + "id": "01HQPP623W6VKW7M710STF24E4", "title": "Stewart Island / Rakiura - Oban LiDAR 1m DSM (2021)", - "description": "Digital Surface Model within the Stewart Island / Rakiura - Oban region captured in 2021.", + "description": "Digital Surface Model within the Southland region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -22,8 +22,24 @@ { "name": "Environment Southland", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "southland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Stewart Island / Rakiura - Oban", "extent": { "spatial": { "bbox": [[168.0465809, -46.970433, 168.1839243, -46.8359485]] }, "temporal": { "interval": [["2021-09-02T12:00:00Z", "2021-09-02T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c3478a8823c9c4b53ae87b539e783db18c8f67812dfccc9321018d3f1903803e", + "file:size": 1342 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From a0f24dd06a344cf620de827ac1bd3e30e02d8f14 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:19:25 +1300 Subject: [PATCH 189/309] feat: import Auckland South LiDAR 1m DEM (2016-2017) (#163) Co-authored-by: Daniel Silk --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/auckland/auckland-south_2016-2017/dem_1m/2193/collection.json b/stac/auckland/auckland-south_2016-2017/dem_1m/2193/collection.json index 26e1d2ef..83013630 100644 --- a/stac/auckland/auckland-south_2016-2017/dem_1m/2193/collection.json +++ b/stac/auckland/auckland-south_2016-2017/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H7GYMZBFZTRDFZ87Q2C4JXV6", + "id": "01HQPD3ZCFA9VXMTSQD85QRY4Q", "title": "Auckland South LiDAR 1m DEM (2016-2017)", - "description": "Digital Elevation Model within the Auckland South region captured in 2016-2017.", + "description": "Digital Elevation Model within the Auckland region captured in 2016-2017.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -101,8 +101,24 @@ { "name": "Auckland Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "auckland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Auckland South", "extent": { "spatial": { "bbox": [[174.4837264, -37.3346925, 175.3504479, -36.8082191]] }, "temporal": { "interval": [["2016-09-21T12:00:00Z", "2017-06-21T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12203c0191c1f0c51f8a0f6d92ba421ad83d74579ef2296e433be7e86ceb506ac3ff", + "file:size": 485157 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 56541071203302c29d08c6c6d83fcfae51670da4 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:19:31 +1300 Subject: [PATCH 190/309] feat: import Auckland South LiDAR 1m DSM (2016-2017) (#162) Co-authored-by: Daniel Silk --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/auckland/auckland-south_2016-2017/dsm_1m/2193/collection.json b/stac/auckland/auckland-south_2016-2017/dsm_1m/2193/collection.json index 27c94a95..034c59f5 100644 --- a/stac/auckland/auckland-south_2016-2017/dsm_1m/2193/collection.json +++ b/stac/auckland/auckland-south_2016-2017/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N10RCDEDDAVR8MFBB4YK81", + "id": "01HQPD409GHP2542XJF4VDDT1K", "title": "Auckland South LiDAR 1m DSM (2016-2017)", - "description": "Digital Surface Model within the Auckland South region captured in 2016-2017.", + "description": "Digital Surface Model within the Auckland region captured in 2016-2017.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -103,8 +103,24 @@ { "name": "Auckland Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "auckland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Auckland South", "extent": { "spatial": { "bbox": [[174.4837264, -37.3346925, 175.3504479, -36.8082191]] }, "temporal": { "interval": [["2016-09-21T12:00:00Z", "2017-06-21T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220f128546a40f789a2f2d76a7b8c7dd4948dd7cbee92997a43dbf94d5ecc4f07f2", + "file:size": 8829 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From f2871ce403550e6a5db92a6df016ef94635b0bec Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:06:13 +1300 Subject: [PATCH 191/309] feat: import Hawke's Bay LiDAR 1m DSM (2020-2021) (#206) --- .../dsm_1m/2193/collection.json | 511 ++++++++++++++++++ 1 file changed, 511 insertions(+) create mode 100644 stac/hawkes-bay/hawkes-bay_2020-2021/dsm_1m/2193/collection.json diff --git a/stac/hawkes-bay/hawkes-bay_2020-2021/dsm_1m/2193/collection.json b/stac/hawkes-bay/hawkes-bay_2020-2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..dc766d5b --- /dev/null +++ b/stac/hawkes-bay/hawkes-bay_2020-2021/dsm_1m/2193/collection.json @@ -0,0 +1,511 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPRNN2M56N08D9DXW3S272J", + "title": "Hawke's Bay LiDAR 1m DSM (2020-2021)", + "description": "Digital Surface Model within the Hawke's Bay region captured in 2020-2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM39_10000_0102.json", "type": "application/json" } + ], + "providers": [ + { "name": "Ocean Infinity", "roles": ["producer"] }, + { "name": "Hawke's Bay Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "hawkes-bay", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[176.0260349, -40.4739342, 178.0283496, -38.5592701]] }, + "temporal": { "interval": [["2020-11-10T11:00:00Z", "2021-01-23T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12200c1514fc96b7e69d3b26ab5aa7a57d887c098bcfecead71f661025a3dcec4a92", + "file:size": 30658 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 7eb1884b6e6cdab70cc4bb0fd637ddd812d1d0b0 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:06:15 +1300 Subject: [PATCH 192/309] feat: import Hawke's Bay LiDAR 1m DEM (2020-2021) (#204) --- .../dem_1m/2193/collection.json | 511 ++++++++++++++++++ 1 file changed, 511 insertions(+) create mode 100644 stac/hawkes-bay/hawkes-bay_2020-2021/dem_1m/2193/collection.json diff --git a/stac/hawkes-bay/hawkes-bay_2020-2021/dem_1m/2193/collection.json b/stac/hawkes-bay/hawkes-bay_2020-2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..0a33a7da --- /dev/null +++ b/stac/hawkes-bay/hawkes-bay_2020-2021/dem_1m/2193/collection.json @@ -0,0 +1,511 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPRKWAJPZEDENJPH4Q6HPXZ", + "title": "Hawke's Bay LiDAR 1m DEM (2020-2021)", + "description": "Digital Elevation Model within the Hawke's Bay region captured in 2020-2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM39_10000_0102.json", "type": "application/json" } + ], + "providers": [ + { "name": "Ocean Infinity", "roles": ["producer"] }, + { "name": "Hawke's Bay Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "hawkes-bay", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[176.0260349, -40.4739342, 178.0283496, -38.5592701]] }, + "temporal": { "interval": [["2020-11-10T11:00:00Z", "2021-01-23T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12200c1514fc96b7e69d3b26ab5aa7a57d887c098bcfecead71f661025a3dcec4a92", + "file:size": 30658 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 5a3c56c19b79ddf9ab3f070d07e58f474ae4b658 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:06:49 +1300 Subject: [PATCH 193/309] feat: import Tasman - Tasman Bay LiDAR 1m DSM (2022) (#209) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/tasman/tasman-bay_2022/dsm_1m/2193/collection.json b/stac/tasman/tasman-bay_2022/dsm_1m/2193/collection.json index 1dd32058..e7a6674c 100644 --- a/stac/tasman/tasman-bay_2022/dsm_1m/2193/collection.json +++ b/stac/tasman/tasman-bay_2022/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N4CV0X1CRNJHNQ1M096B3R", + "id": "01HQREEBV74KPEH9DCEB5VW8RQ", "title": "Tasman - Tasman Bay LiDAR 1m DSM (2022)", - "description": "Digital Surface Model within the Tasman - Tasman Bay region captured in 2022.", + "description": "Digital Surface Model within the Tasman region captured in 2022.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -47,8 +47,24 @@ { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Tasman Bay", "extent": { "spatial": { "bbox": [[172.913651, -41.5624698, 173.2582727, -41.0435943]] }, "temporal": { "interval": [["2022-10-13T11:00:00Z", "2022-11-06T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a1bd1d897ec19d2298cf12453c82f15bd7ccf47c3060263a7a915b424e790a70", + "file:size": 7574 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From cc06ec674552e0df564b243f8779c2f1000c3e15 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:06:51 +1300 Subject: [PATCH 194/309] feat: import Tasman - Tasman Bay LiDAR 1m DEM (2022) (#210) --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/tasman/tasman-bay_2022/dem_1m/2193/collection.json b/stac/tasman/tasman-bay_2022/dem_1m/2193/collection.json index a2781334..13b53e0e 100644 --- a/stac/tasman/tasman-bay_2022/dem_1m/2193/collection.json +++ b/stac/tasman/tasman-bay_2022/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N4BJEYDZ60P0BPEQQZZFNB", + "id": "01HQREEBV8J3N56C9P3ZM34MNJ", "title": "Tasman - Tasman Bay LiDAR 1m DEM (2022)", - "description": "Digital Elevation Model within the Tasman - Tasman Bay region captured in 2022.", + "description": "Digital Elevation Model within the Tasman region captured in 2022.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -47,8 +47,24 @@ { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Tasman Bay", "extent": { "spatial": { "bbox": [[172.913651, -41.5624698, 173.2582727, -41.0435943]] }, "temporal": { "interval": [["2022-10-13T11:00:00Z", "2022-11-06T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a1bd1d897ec19d2298cf12453c82f15bd7ccf47c3060263a7a915b424e790a70", + "file:size": 7574 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 783ad407af04f86d938f33af3f8322040cb04ea7 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:11:15 +1300 Subject: [PATCH 195/309] =?UTF-8?q?feat:=20import=20Manawat=C5=AB-Whanganu?= =?UTF-8?q?i=20LiDAR=201m=20DSM=20(2022-2023)=20(#223)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dsm_1m/2193/collection.json | 132 ++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 stac/manawatu-whanganui/manawatu-whanganui_2022-2023/dsm_1m/2193/collection.json diff --git a/stac/manawatu-whanganui/manawatu-whanganui_2022-2023/dsm_1m/2193/collection.json b/stac/manawatu-whanganui/manawatu-whanganui_2022-2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..a10f6a9d --- /dev/null +++ b/stac/manawatu-whanganui/manawatu-whanganui_2022-2023/dsm_1m/2193/collection.json @@ -0,0 +1,132 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRG9VME9B4ZRXWJHK3GSH0F", + "title": "Manawatū-Whanganui LiDAR 1m DSM (2022-2023)", + "description": "Digital Surface Model within the Manawatū-Whanganui region captured in 2022-2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Horizons Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[175.052043, -40.6229895, 176.1338432, -39.984514]] }, + "temporal": { "interval": [["2022-07-01T12:00:00Z", "2023-10-31T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122025573cc8bd26166efbee3d0f0d29d35a5ea0e83f3a75cbe53cca11ccce13ed58", + "file:size": 18933 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 652a0d2de9967f1772517e5144336bd744d6b513 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:11:18 +1300 Subject: [PATCH 196/309] =?UTF-8?q?feat:=20import=20Manawat=C5=AB-Whanganu?= =?UTF-8?q?i=20LiDAR=201m=20DEM=20(2022-2023)=20(#222)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dem_1m/2193/collection.json | 132 ++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 stac/manawatu-whanganui/manawatu-whanganui_2022-2023/dem_1m/2193/collection.json diff --git a/stac/manawatu-whanganui/manawatu-whanganui_2022-2023/dem_1m/2193/collection.json b/stac/manawatu-whanganui/manawatu-whanganui_2022-2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..6b8b9774 --- /dev/null +++ b/stac/manawatu-whanganui/manawatu-whanganui_2022-2023/dem_1m/2193/collection.json @@ -0,0 +1,132 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRG80Y2SDW2BHKNZW3NKSH6", + "title": "Manawatū-Whanganui LiDAR 1m DEM (2022-2023)", + "description": "Digital Elevation Model within the Manawatū-Whanganui region captured in 2022-2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Horizons Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[175.052043, -40.6229895, 176.1338432, -39.984514]] }, + "temporal": { "interval": [["2022-07-01T12:00:00Z", "2023-10-31T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a4e24882ef9b75cdde23632065773b5d915e6211118f9fac5afc41d845fe30d0", + "file:size": 18934 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 28ee9eba6181cbcf08a1d727f41020cdfa942d41 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:14:03 +1300 Subject: [PATCH 197/309] =?UTF-8?q?feat:=20import=20Manawat=C5=AB-Whanganu?= =?UTF-8?q?i=20-=20Palmerston=20North=20LiDAR=201m=20DEM=20(2018)=20(#220)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/manawatu-whanganui/palmerston-north_2018/dem_1m/2193/collection.json b/stac/manawatu-whanganui/palmerston-north_2018/dem_1m/2193/collection.json index 0e100db4..57d4acdd 100644 --- a/stac/manawatu-whanganui/palmerston-north_2018/dem_1m/2193/collection.json +++ b/stac/manawatu-whanganui/palmerston-north_2018/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N0TBSG9Q1D7N0C2FWGQRHW", + "id": "01HQRG5W7HXDXWB1M449TA6B48", "title": "Manawatū-Whanganui - Palmerston North LiDAR 1m DEM (2018)", - "description": "Digital Elevation Model within the Manawatū-Whanganui - Palmerston North region captured in 2018.", + "description": "Digital Elevation Model within the Manawatū-Whanganui region captured in 2018.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -41,8 +41,24 @@ { "name": "Palmerston North City Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Palmerston North", "extent": { "spatial": { "bbox": [[175.4592799, -40.5620358, 175.8008159, -40.231557]] }, "temporal": { "interval": [["2018-08-28T12:00:00Z", "2018-09-27T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122022d94cc07325fe3e19d637b041da276fd6796bea4e34a7be0fb578cb76e98f6d", + "file:size": 5996 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 82e0ef32fbdeb0c094038e20c87b25c9548a68ed Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:14:06 +1300 Subject: [PATCH 198/309] =?UTF-8?q?feat:=20import=20Manawat=C5=AB-Whanganu?= =?UTF-8?q?i=20-=20Palmerston=20North=20LiDAR=201m=20DSM=20(2018)=20(#221)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/manawatu-whanganui/palmerston-north_2018/dsm_1m/2193/collection.json b/stac/manawatu-whanganui/palmerston-north_2018/dsm_1m/2193/collection.json index d10055c0..2cceb754 100644 --- a/stac/manawatu-whanganui/palmerston-north_2018/dsm_1m/2193/collection.json +++ b/stac/manawatu-whanganui/palmerston-north_2018/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N0TFZVFK6G2RDD0VT8NX33", + "id": "01HQRG7YEA5RVBE5EMAKCH0X8E", "title": "Manawatū-Whanganui - Palmerston North LiDAR 1m DSM (2018)", - "description": "Digital Surface Model within the Manawatū-Whanganui - Palmerston North region captured in 2018.", + "description": "Digital Surface Model within the Manawatū-Whanganui region captured in 2018.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -41,8 +41,24 @@ { "name": "Palmerston North City Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Palmerston North", "extent": { "spatial": { "bbox": [[175.4592799, -40.5620358, 175.8008159, -40.231557]] }, "temporal": { "interval": [["2018-08-28T12:00:00Z", "2018-09-27T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122022d94cc07325fe3e19d637b041da276fd6796bea4e34a7be0fb578cb76e98f6d", + "file:size": 5996 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 0fdb78de76d3fdb5da6724ed1acb612edd8579b6 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:19:51 +1300 Subject: [PATCH 199/309] feat: import Canterbury - Waimakariri LiDAR 1m DEM (2023) (#226) --- .../dem_1m/2193/collection.json | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 stac/canterbury/waimakariri_2023/dem_1m/2193/collection.json diff --git a/stac/canterbury/waimakariri_2023/dem_1m/2193/collection.json b/stac/canterbury/waimakariri_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..d9a5f4fe --- /dev/null +++ b/stac/canterbury/waimakariri_2023/dem_1m/2193/collection.json @@ -0,0 +1,60 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRHS1506DS75K2RRZCH0YHC", + "title": "Canterbury - Waimakariri LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Canterbury region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Waimakariri", + "extent": { + "spatial": { "bbox": [[172.0213315, -43.506864, 172.7333572, -43.3090661]] }, + "temporal": { "interval": [["2023-06-13T12:00:00Z", "2023-07-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12207faa642c46168e9d0488c1072fe4afa1bb818d43eb37f55e775e6cd6e0809bb0", + "file:size": 3878 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 3dab723a4fe5dc7e177f537c1f7f917df56dedb1 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:19:54 +1300 Subject: [PATCH 200/309] feat: import Canterbury - Waimakariri LiDAR 1m DSM (2023) (#227) --- .../dsm_1m/2193/collection.json | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 stac/canterbury/waimakariri_2023/dsm_1m/2193/collection.json diff --git a/stac/canterbury/waimakariri_2023/dsm_1m/2193/collection.json b/stac/canterbury/waimakariri_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..e0eef380 --- /dev/null +++ b/stac/canterbury/waimakariri_2023/dsm_1m/2193/collection.json @@ -0,0 +1,60 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRHZFPDNBW416DPVBGNYDJH", + "title": "Canterbury - Waimakariri LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Canterbury region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Waimakariri", + "extent": { + "spatial": { "bbox": [[172.0213315, -43.506864, 172.7333572, -43.3090661]] }, + "temporal": { "interval": [["2023-06-13T12:00:00Z", "2023-07-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12207faa642c46168e9d0488c1072fe4afa1bb818d43eb37f55e775e6cd6e0809bb0", + "file:size": 3878 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From cb9370783c2058e8cf415713b4ff1104e9fa5475 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:26:14 +1300 Subject: [PATCH 201/309] feat: import Tasman LiDAR 1m DSM (2020-2022) (#218) --- .../dsm_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/tasman/tasman_2020-2022/dsm_1m/2193/collection.json b/stac/tasman/tasman_2020-2022/dsm_1m/2193/collection.json index 0d2c39e7..c32e78f4 100644 --- a/stac/tasman/tasman_2020-2022/dsm_1m/2193/collection.json +++ b/stac/tasman/tasman_2020-2022/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N6RXCY1KMYMJ62JEND4HDG", + "id": "01HQRERMM4Z22F9567QNDS7T1F", "title": "Tasman LiDAR 1m DSM (2020-2022)", "description": "Digital Surface Model within the Tasman region captured in 2020-2022.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -328,8 +328,23 @@ { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[172.0435002, -42.3395863, 173.3166108, -40.5883396]] }, "temporal": { "interval": [["2020-01-27T11:00:00Z", "2022-01-29T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12202453b979e42a0e6e87c65595755c18fe991ee45375418c66574a25677c607aa2", + "file:size": 33455 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 539fae6035376363c6bf397077d83b7027969276 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:26:17 +1300 Subject: [PATCH 202/309] feat: import Tasman LiDAR 1m DEM (2020-2022) (#216) --- .../dem_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/tasman/tasman_2020-2022/dem_1m/2193/collection.json b/stac/tasman/tasman_2020-2022/dem_1m/2193/collection.json index 81e25344..29312b5a 100644 --- a/stac/tasman/tasman_2020-2022/dem_1m/2193/collection.json +++ b/stac/tasman/tasman_2020-2022/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N6QZ3675F9JD86RB0SRKXZ", + "id": "01HQRER6GRVPCYH5421CMPWECY", "title": "Tasman LiDAR 1m DEM (2020-2022)", "description": "Digital Elevation Model within the Tasman region captured in 2020-2022.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -328,8 +328,23 @@ { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[172.0435002, -42.3395863, 173.3166108, -40.5883396]] }, "temporal": { "interval": [["2020-01-27T11:00:00Z", "2022-01-29T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220f90163fbba9a17de650e4ca4d8e703c4dbed2ce524f4752cdc324bd49daedf6d", + "file:size": 32657 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From b66867af6578bfdd98b9f942780acdfd9062ded6 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:26:37 +1300 Subject: [PATCH 203/309] =?UTF-8?q?feat:=20import=20Manawat=C5=AB-Whanganu?= =?UTF-8?q?i=20-=20Whanganui=20Urban=20LiDAR=201m=20DEM=20(2020-2021)=20(#?= =?UTF-8?q?217)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dem_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/manawatu-whanganui/whanganui-urban_2020-2021/dem_1m/2193/collection.json b/stac/manawatu-whanganui/whanganui-urban_2020-2021/dem_1m/2193/collection.json index 0d23f275..bfe3ea4d 100644 --- a/stac/manawatu-whanganui/whanganui-urban_2020-2021/dem_1m/2193/collection.json +++ b/stac/manawatu-whanganui/whanganui-urban_2020-2021/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N21YSARGW5D7EHGZGME1Q4", + "id": "01HQRFZTFCFMTY29QR1TK6MGEJ", "title": "Manawatū-Whanganui - Whanganui Urban LiDAR 1m DEM (2020-2021)", - "description": "Digital Elevation Model within the Manawatū-Whanganui - Whanganui Urban region captured in 2020-2021.", + "description": "Digital Elevation Model within the Manawatū-Whanganui region captured in 2020-2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -42,8 +42,24 @@ { "name": "Whanganui District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Whanganui Urban", "extent": { "spatial": { "bbox": [[174.8799205, -40.0534343, 175.386853, -39.7867148]] }, "temporal": { "interval": [["2020-09-07T12:00:00Z", "2021-02-02T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220ee926561bab6f6c32b4f9846fed070a5c120cb25e82ad33f6219290d385aae50", + "file:size": 3840 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 341e8906ad86df76bc0d6729bb3ec0236e63e52f Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:26:40 +1300 Subject: [PATCH 204/309] =?UTF-8?q?feat:=20import=20Manawat=C5=AB-Whanganu?= =?UTF-8?q?i=20-=20Whanganui=20Urban=20LiDAR=201m=20DSM=20(2020-2021)=20(#?= =?UTF-8?q?219)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/manawatu-whanganui/whanganui-urban_2020-2021/dsm_1m/2193/collection.json b/stac/manawatu-whanganui/whanganui-urban_2020-2021/dsm_1m/2193/collection.json index 41c5c742..3e0b690e 100644 --- a/stac/manawatu-whanganui/whanganui-urban_2020-2021/dsm_1m/2193/collection.json +++ b/stac/manawatu-whanganui/whanganui-urban_2020-2021/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N252FHHPMMHJQGMSF8AKB1", + "id": "01HQRG1BJ2ZKBN9081P98ANZYM", "title": "Manawatū-Whanganui - Whanganui Urban LiDAR 1m DSM (2020-2021)", - "description": "Digital Surface Model within the Manawatū-Whanganui - Whanganui Urban region captured in 2020-2021.", + "description": "Digital Surface Model within the Manawatū-Whanganui region captured in 2020-2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -42,8 +42,24 @@ { "name": "Whanganui District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Whanganui Urban", "extent": { "spatial": { "bbox": [[174.8799205, -40.0534343, 175.386853, -39.7867148]] }, "temporal": { "interval": [["2020-09-07T12:00:00Z", "2021-02-02T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220ee926561bab6f6c32b4f9846fed070a5c120cb25e82ad33f6219290d385aae50", + "file:size": 3840 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 65c8e52e098a64867292f0eff454a11b0f1239c4 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:27:30 +1300 Subject: [PATCH 205/309] =?UTF-8?q?feat:=20import=20Canterbury=20-=20Kaik?= =?UTF-8?q?=C5=8Dura=20and=20Waimakariri=20LiDAR=201m=20DSM=20(2022)=20(#1?= =?UTF-8?q?95)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Megan Davidson --- .../dsm_1m/2193/collection.json | 28 +++++++++++++++---- 1 file changed, 22 insertions(+), 6 deletions(-) rename stac/canterbury/{kaikoura_waimakariri_2022 => kaikoura-and-waimakariri_2022}/dsm_1m/2193/collection.json (78%) diff --git a/stac/canterbury/kaikoura_waimakariri_2022/dsm_1m/2193/collection.json b/stac/canterbury/kaikoura-and-waimakariri_2022/dsm_1m/2193/collection.json similarity index 78% rename from stac/canterbury/kaikoura_waimakariri_2022/dsm_1m/2193/collection.json rename to stac/canterbury/kaikoura-and-waimakariri_2022/dsm_1m/2193/collection.json index 2c508bfe..a713b881 100644 --- a/stac/canterbury/kaikoura_waimakariri_2022/dsm_1m/2193/collection.json +++ b/stac/canterbury/kaikoura-and-waimakariri_2022/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6NJ0EYW1855FDPWKPRQX3AF", + "id": "01HQPR7ZHFCAJ9H1P1MM608J8M", "title": "Canterbury - Kaikōura and Waimakariri LiDAR 1m DSM (2022)", - "description": "Digital Surface Model within the Canterbury - Kaikōura and Waimakariri region captured in 2022.", + "description": "Digital Surface Model within the Canterbury region captured in 2022.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -48,12 +48,28 @@ { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" } ], "providers": [ - { "name": " Aerial Surveys", "roles": ["producer"] }, - { "name": " Environment Canterbury", "roles": ["licensor"] }, + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Kaikōura and Waimakariri", "extent": { "spatial": { "bbox": [[172.0213315, -43.506864, 173.9594288, -42.0772793]] }, "temporal": { "interval": [["2022-05-01T12:00:00Z", "2022-09-14T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122015f4164f6579dc27b12488ab9a6aeb7c40fa629ed3028f6cd46e3f5056874936", + "file:size": 8154 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 986f5b69219daf8f4c2ce961456b54c09b4a8477 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:27:32 +1300 Subject: [PATCH 206/309] =?UTF-8?q?feat:=20import=20Canterbury=20-=20Kaik?= =?UTF-8?q?=C5=8Dura=20and=20Waimakariri=20LiDAR=201m=20DEM=20(2022)=20(#1?= =?UTF-8?q?94)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Megan Davidson --- .../dem_1m/2193/collection.json | 28 +++++++++++++++---- 1 file changed, 22 insertions(+), 6 deletions(-) rename stac/canterbury/{kaikoura_waimakariri_2022 => kaikoura-and-waimakariri_2022}/dem_1m/2193/collection.json (80%) diff --git a/stac/canterbury/kaikoura_waimakariri_2022/dem_1m/2193/collection.json b/stac/canterbury/kaikoura-and-waimakariri_2022/dem_1m/2193/collection.json similarity index 80% rename from stac/canterbury/kaikoura_waimakariri_2022/dem_1m/2193/collection.json rename to stac/canterbury/kaikoura-and-waimakariri_2022/dem_1m/2193/collection.json index 0e96bbdc..95bcf88d 100644 --- a/stac/canterbury/kaikoura_waimakariri_2022/dem_1m/2193/collection.json +++ b/stac/canterbury/kaikoura-and-waimakariri_2022/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6NHNC3TX1YWP39XJ3J6Z84J", + "id": "01HQPR6PJ7KSZNPJF752QBTVAQ", "title": "Canterbury - Kaikōura and Waimakariri LiDAR 1m DEM (2022)", - "description": "Digital Elevation Model within the Canterbury - Kaikōura and Waimakariri region captured in 2022.", + "description": "Digital Elevation Model within the Canterbury region captured in 2022.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -48,12 +48,28 @@ { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" } ], "providers": [ - { "name": " Aerial Surveys", "roles": ["producer"] }, - { "name": " Environment Canterbury", "roles": ["licensor"] }, + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Kaikōura and Waimakariri", "extent": { "spatial": { "bbox": [[172.0213315, -43.506864, 173.9594288, -42.0772793]] }, "temporal": { "interval": [["2022-05-01T12:00:00Z", "2022-09-14T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122015f4164f6579dc27b12488ab9a6aeb7c40fa629ed3028f6cd46e3f5056874936", + "file:size": 8154 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From ba3498ea7deca9cff4adb774421adef2ced5beae Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:15:54 +1300 Subject: [PATCH 207/309] feat: import Marlborough LiDAR 1m DSM (2020-2022) (#236) Co-authored-by: Megan Davidson --- .../dsm_1m/2193/collection.json | 155 +++++++++++++++++- 1 file changed, 147 insertions(+), 8 deletions(-) rename stac/marlborough/{marlborough_2020-2021 => marlborough_2020-2022}/dsm_1m/2193/collection.json (68%) diff --git a/stac/marlborough/marlborough_2020-2021/dsm_1m/2193/collection.json b/stac/marlborough/marlborough_2020-2022/dsm_1m/2193/collection.json similarity index 68% rename from stac/marlborough/marlborough_2020-2021/dsm_1m/2193/collection.json rename to stac/marlborough/marlborough_2020-2022/dsm_1m/2193/collection.json index ad03765c..6e8ebec9 100644 --- a/stac/marlborough/marlborough_2020-2021/dsm_1m/2193/collection.json +++ b/stac/marlborough/marlborough_2020-2022/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6QEFCX2RXQ5A7SX5DWK8SK0", - "title": "Marlborough LiDAR 1m DSM (2020-2021)", - "description": "Digital Surface Model within the Marlborough region captured in 2020-2021.", + "id": "01HQRF4DSGHKRGR4AYJFVPH9MY", + "title": "Marlborough LiDAR 1m DSM (2020-2022)", + "description": "Digital Surface Model within the Marlborough region captured in 2020-2022.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -179,6 +179,8 @@ { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, { "rel": "item", "href": "./BR25_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BR25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BR26_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BR26_10000_0103.json", "type": "application/json" }, @@ -196,7 +198,14 @@ { "rel": "item", "href": "./BR26_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./BR26_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BR26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./BR26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BR27_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BR27_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BR27_10000_0103.json", "type": "application/json" }, @@ -264,7 +273,66 @@ { "rel": "item", "href": "./BR29_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BR29_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BR29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./BS26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BS27_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BS27_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BS27_10000_0103.json", "type": "application/json" }, @@ -278,6 +346,14 @@ { "rel": "item", "href": "./BS27_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./BS27_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./BS27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BS28_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BS28_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BS28_10000_0103.json", "type": "application/json" }, @@ -287,6 +363,7 @@ { "rel": "item", "href": "./BS28_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./BS28_10000_0204.json", "type": "application/json" }, { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./BS28_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./BS29_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BS29_10000_0103.json", "type": "application/json" }, @@ -295,15 +372,77 @@ { "rel": "item", "href": "./BS29_10000_0202.json", "type": "application/json" }, { "rel": "item", "href": "./BS29_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BS29_10000_0302.json", "type": "application/json" } + { "rel": "item", "href": "./BS29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0104.json", "type": "application/json" } ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, { "name": "Marlborough District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "marlborough", + "linz:security_classification": "unclassified", "extent": { - "spatial": { "bbox": [[172.8555058, -42.0156027, 174.458987, -40.6496832]] }, - "temporal": { "interval": [["2020-02-09T11:00:00Z", "2021-07-01T12:00:00Z"]] } - } + "spatial": { "bbox": [[172.6801711, -42.5351814, 174.458987, -40.6496832]] }, + "temporal": { "interval": [["2020-02-09T11:00:00Z", "2022-02-14T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220b8f8f2b38a9e3b63f0a5b19b4f826cc4fe47a60feb977286e86eeffedb4d9090", + "file:size": 50211 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 6b29c5443b3168e36b42dd143fe7d774f8d1af4f Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:15:57 +1300 Subject: [PATCH 208/309] feat: import Marlborough LiDAR 1m DEM (2020-2022) (#234) Co-authored-by: Megan Davidson --- .../dem_1m/2193/collection.json | 155 +++++++++++++++++- 1 file changed, 147 insertions(+), 8 deletions(-) rename stac/marlborough/{marlborough_2020-2021 => marlborough_2020-2022}/dem_1m/2193/collection.json (68%) diff --git a/stac/marlborough/marlborough_2020-2021/dem_1m/2193/collection.json b/stac/marlborough/marlborough_2020-2022/dem_1m/2193/collection.json similarity index 68% rename from stac/marlborough/marlborough_2020-2021/dem_1m/2193/collection.json rename to stac/marlborough/marlborough_2020-2022/dem_1m/2193/collection.json index a53ae31f..822c26f3 100644 --- a/stac/marlborough/marlborough_2020-2021/dem_1m/2193/collection.json +++ b/stac/marlborough/marlborough_2020-2022/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6QEEVM3CMSF2KETE29GE4DV", - "title": "Marlborough LiDAR 1m DEM (2020-2021)", - "description": "Digital Elevation Model within the Marlborough region captured in 2020-2021.", + "id": "01HQRF3R1FFF2Y2PYZJRQDK07C", + "title": "Marlborough LiDAR 1m DEM (2020-2022)", + "description": "Digital Elevation Model within the Marlborough region captured in 2020-2022.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -179,6 +179,8 @@ { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, { "rel": "item", "href": "./BR25_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BR25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BR26_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BR26_10000_0103.json", "type": "application/json" }, @@ -196,7 +198,14 @@ { "rel": "item", "href": "./BR26_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./BR26_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BR26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./BR26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BR27_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BR27_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BR27_10000_0103.json", "type": "application/json" }, @@ -264,7 +273,66 @@ { "rel": "item", "href": "./BR29_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BR29_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BR29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./BS26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BS27_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BS27_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BS27_10000_0103.json", "type": "application/json" }, @@ -278,6 +346,14 @@ { "rel": "item", "href": "./BS27_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./BS27_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./BS27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BS28_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BS28_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BS28_10000_0103.json", "type": "application/json" }, @@ -287,6 +363,7 @@ { "rel": "item", "href": "./BS28_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./BS28_10000_0204.json", "type": "application/json" }, { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./BS28_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./BS29_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BS29_10000_0103.json", "type": "application/json" }, @@ -295,15 +372,77 @@ { "rel": "item", "href": "./BS29_10000_0202.json", "type": "application/json" }, { "rel": "item", "href": "./BS29_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BS29_10000_0302.json", "type": "application/json" } + { "rel": "item", "href": "./BS29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0104.json", "type": "application/json" } ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, { "name": "Marlborough District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "marlborough", + "linz:security_classification": "unclassified", "extent": { - "spatial": { "bbox": [[172.8555058, -42.0156027, 174.458987, -40.6496832]] }, - "temporal": { "interval": [["2020-02-09T11:00:00Z", "2021-07-01T12:00:00Z"]] } - } + "spatial": { "bbox": [[172.6801711, -42.5351814, 174.458987, -40.6496832]] }, + "temporal": { "interval": [["2020-02-09T11:00:00Z", "2022-02-14T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c293a77fe08b943fd42d4285fc427118313d49f4ad8b3deb182fae29ba119b05", + "file:size": 48196 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 6205ab7de31d4c382d09d122c20b35e3486bc98b Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:16:33 +1300 Subject: [PATCH 209/309] feat: import Canterbury - Selwyn LiDAR 1m DEM (2023) (#233) --- .../selwyn_2023/dem_1m/2193/collection.json | 143 ++++++++++++++++++ 1 file changed, 143 insertions(+) create mode 100644 stac/canterbury/selwyn_2023/dem_1m/2193/collection.json diff --git a/stac/canterbury/selwyn_2023/dem_1m/2193/collection.json b/stac/canterbury/selwyn_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..1e336aca --- /dev/null +++ b/stac/canterbury/selwyn_2023/dem_1m/2193/collection.json @@ -0,0 +1,143 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRK2MSMGYPSNKGWSWQNJDDY", + "title": "Canterbury - Selwyn LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Canterbury region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Selwyn", + "extent": { + "spatial": { "bbox": [[171.6032562, -43.959082, 172.6730573, -43.2425921]] }, + "temporal": { "interval": [["2023-03-23T11:00:00Z", "2023-05-03T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220feaa32a589b7657eefdf7e51e155e528c8bde12aee0270a94d9b749bf3860695", + "file:size": 40937 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From a1040ebfe9eed10ffcfc370edf1e7266b4b37615 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:16:35 +1300 Subject: [PATCH 210/309] feat: import Canterbury - Selwyn LiDAR 1m DSM (2023) (#231) --- .../selwyn_2023/dsm_1m/2193/collection.json | 143 ++++++++++++++++++ 1 file changed, 143 insertions(+) create mode 100644 stac/canterbury/selwyn_2023/dsm_1m/2193/collection.json diff --git a/stac/canterbury/selwyn_2023/dsm_1m/2193/collection.json b/stac/canterbury/selwyn_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..c9283368 --- /dev/null +++ b/stac/canterbury/selwyn_2023/dsm_1m/2193/collection.json @@ -0,0 +1,143 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRKKNZVGJKT4AHS5D5P0F7K", + "title": "Canterbury - Selwyn LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Canterbury region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Selwyn", + "extent": { + "spatial": { "bbox": [[171.6032562, -43.959082, 172.6730573, -43.2425921]] }, + "temporal": { "interval": [["2023-03-23T11:00:00Z", "2023-05-03T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220feaa32a589b7657eefdf7e51e155e528c8bde12aee0270a94d9b749bf3860695", + "file:size": 40937 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 9005f1babd07c8729ef3c88be374e556aa21435a Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:17:12 +1300 Subject: [PATCH 211/309] feat: import Canterbury - Christchurch LiDAR 1m DEM (2020-2021) (#212) --- .../dem_1m/2193/collection.json | 28 +++++++++++++++---- 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json b/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json index 43839001..9c191470 100644 --- a/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json +++ b/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H7GYMZBF93Q76DR24K0AP3AC", + "id": "01HQREEBV79GH7Y7YGR103KRGT", "title": "Canterbury - Christchurch LiDAR 1m DEM (2020-2021)", - "description": "Digital Elevation Model within the Canterbury - Christchurch region captured in 2020-2021.", + "description": "Digital Elevation Model within the Canterbury region captured in 2020-2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -42,12 +42,28 @@ ], "providers": [ { "name": "Landpro", "roles": ["producer"] }, - { "name": "\"Christchurch City Council", "roles": ["licensor"] }, - { "name": "Environment Canterbury\"", "roles": ["licensor"] }, + { "name": "Christchurch City Council", "roles": ["licensor"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Christchurch", "extent": { "spatial": { "bbox": [[172.3758499, -43.7020304, 172.8513887, -43.376959]] }, "temporal": { "interval": [["2020-12-17T11:00:00Z", "2021-02-16T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204ad4efd1577203af0c0a65c9811aa34938f34c1a88e31eaae83c73d34735678f", + "file:size": 20442 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From f5c68f75ae999b38d06809163d4ca440642b942e Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:17:15 +1300 Subject: [PATCH 212/309] feat: import Canterbury - Christchurch LiDAR 1m DSM (2020-2021) (#211) --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/canterbury/christchurch_2020-2021/dsm_1m/2193/collection.json b/stac/canterbury/christchurch_2020-2021/dsm_1m/2193/collection.json index 553eabb3..c77f1a59 100644 --- a/stac/canterbury/christchurch_2020-2021/dsm_1m/2193/collection.json +++ b/stac/canterbury/christchurch_2020-2021/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N1MX7VR2WH7M5Y33D3A6A2", + "id": "01HQREEBVAAMKESB7STV9DG2Z7", "title": "Canterbury - Christchurch LiDAR 1m DSM (2020-2021)", - "description": "Digital Surface Model within the Canterbury - Christchurch region captured in 2020-2021.", + "description": "Digital Surface Model within the Canterbury region captured in 2020-2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -46,8 +46,24 @@ { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Christchurch", "extent": { "spatial": { "bbox": [[172.3758499, -43.7020304, 172.8513887, -43.376959]] }, "temporal": { "interval": [["2020-12-17T11:00:00Z", "2021-02-16T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220e9d6043db97b09d4c5b0cde1db706f14bc31e151ad572a3ab78e307f07a11e5e", + "file:size": 20851 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 6c2c98269f0dd37fc77bc0254b7de6d7ec62f195 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:17:35 +1300 Subject: [PATCH 213/309] feat: import Otago - Central Otago LiDAR 1m DSM (2021) (#214) --- .../dsm_1m/2193/collection.json | 79 +++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 stac/otago/central-otago_2021/dsm_1m/2193/collection.json diff --git a/stac/otago/central-otago_2021/dsm_1m/2193/collection.json b/stac/otago/central-otago_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..38c8aa38 --- /dev/null +++ b/stac/otago/central-otago_2021/dsm_1m/2193/collection.json @@ -0,0 +1,79 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQREQGPBT2QQTWBNV6H7Z75V", + "title": "Otago - Central Otago LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Otago region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Ministry of Business, Innovation and Employment", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Central Otago", + "extent": { + "spatial": { "bbox": [[169.2729518, -45.7897267, 169.7222606, -45.3350418]] }, + "temporal": { "interval": [["2021-05-21T12:00:00Z", "2021-05-26T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12205bfeb2b89f9bb4e37ee36bae76b25a934ecf0be130c5ef562b4716dbfc2502a6", + "file:size": 5043 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From ceabc6419df26876ad1cb061e0583a61da8b2c39 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:17:38 +1300 Subject: [PATCH 214/309] feat: import Otago - Central Otago LiDAR 1m DEM (2021) (#213) --- .../dem_1m/2193/collection.json | 79 +++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 stac/otago/central-otago_2021/dem_1m/2193/collection.json diff --git a/stac/otago/central-otago_2021/dem_1m/2193/collection.json b/stac/otago/central-otago_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..e8751506 --- /dev/null +++ b/stac/otago/central-otago_2021/dem_1m/2193/collection.json @@ -0,0 +1,79 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQREQBT1WJ36D6ECVCSY6JN4", + "title": "Otago - Central Otago LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Otago region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Ministry of Business, Innovation and Employment", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Central Otago", + "extent": { + "spatial": { "bbox": [[169.2729518, -45.7897267, 169.7222606, -45.3350418]] }, + "temporal": { "interval": [["2021-05-21T12:00:00Z", "2021-05-26T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12205bfeb2b89f9bb4e37ee36bae76b25a934ecf0be130c5ef562b4716dbfc2502a6", + "file:size": 5043 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 860721358ab5227b966d320b5841c990febd827f Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:20:30 +1300 Subject: [PATCH 215/309] feat: import Canterbury LiDAR 1m DSM (2016-2017) (#208) --- .../dsm_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/canterbury/canterbury_2016-2017/dsm_1m/2193/collection.json b/stac/canterbury/canterbury_2016-2017/dsm_1m/2193/collection.json index dcb5ce40..97ddd78a 100644 --- a/stac/canterbury/canterbury_2016-2017/dsm_1m/2193/collection.json +++ b/stac/canterbury/canterbury_2016-2017/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N0EVDWZSHXVV1YQK1CS35E", + "id": "01HQPZBGYRD2T5ZVFP23G753T2", "title": "Canterbury LiDAR 1m DSM (2016-2017)", "description": "Digital Surface Model within the Canterbury region captured in 2016-2017.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -193,8 +193,23 @@ { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[169.7662116, -45.432701, 172.672706, -43.4392042]] }, "temporal": { "interval": [["2016-10-31T11:00:00Z", "2017-01-30T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122041a7a03b8d8d6a6ec57bf29bd3ea14661a6378ef82099993bb2cf55cebf3c0ff", + "file:size": 253099 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From d08ff4ca2f3eb5672b9d6b1ffc0fdcd7e89fbd91 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:20:33 +1300 Subject: [PATCH 216/309] feat: import Canterbury LiDAR 1m DEM (2016-2017) (#164) --- .../dem_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/canterbury/canterbury_2016-2017/dem_1m/2193/collection.json b/stac/canterbury/canterbury_2016-2017/dem_1m/2193/collection.json index 4d407aca..cbb85d18 100644 --- a/stac/canterbury/canterbury_2016-2017/dem_1m/2193/collection.json +++ b/stac/canterbury/canterbury_2016-2017/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N06W6QGTVZDRDBHV2P57EV", + "id": "01HQPA82N0Z166TZF11BF6XD0H", "title": "Canterbury LiDAR 1m DEM (2016-2017)", "description": "Digital Elevation Model within the Canterbury region captured in 2016-2017.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -193,8 +193,23 @@ { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[169.7662116, -45.432701, 172.672706, -43.4392042]] }, "temporal": { "interval": [["2016-10-31T11:00:00Z", "2017-01-30T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220cfac86b951e7987884dc626d589ddcbadb9c5589de33cae47549ab4b4aecf1ea", + "file:size": 247367 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From ce811b71a5360db66208b1fa29ea2ce0dfcb0091 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:21:32 +1300 Subject: [PATCH 217/309] =?UTF-8?q?feat:=20import=20Manawat=C5=AB-Whanganu?= =?UTF-8?q?i=20LiDAR=201m=20DEM=20(2015-2016)=20(#224)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dem_1m/2193/collection.json | 25 +++++++++++++++---- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dem_1m/2193/collection.json b/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dem_1m/2193/collection.json index 130a2ea2..c4ac5203 100644 --- a/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dem_1m/2193/collection.json +++ b/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MYDNJXZNHBBPNZXAY6ZHQN", - "title": "Manawatū - Whanganui LiDAR 1m DEM (2015-2016)", - "description": "Digital Elevation Model within the Manawatū - Whanganui region captured in 2015-2016.", + "id": "01HQRGCMS294Q6T1D5B8JGW3XS", + "title": "Manawatū-Whanganui LiDAR 1m DEM (2015-2016)", + "description": "Digital Elevation Model within the Manawatū-Whanganui region captured in 2015-2016.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -171,8 +171,23 @@ { "name": "Horizons Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[174.7100346, -40.765512, 176.0833559, -38.7557257]] }, "temporal": { "interval": [["2015-12-26T11:00:00Z", "2016-12-16T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122011d1d2409fcfc3f67720ac89838badd2092318252f484bd8c6b36cbdec589172", + "file:size": 150826 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 82c23daebcc74f135157350c58579bb92a188e33 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:21:35 +1300 Subject: [PATCH 218/309] =?UTF-8?q?feat:=20import=20Manawat=C5=AB-Whanganu?= =?UTF-8?q?i=20LiDAR=201m=20DSM=20(2015-2016)=20(#225)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dsm_1m/2193/collection.json | 25 +++++++++++++++---- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dsm_1m/2193/collection.json b/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dsm_1m/2193/collection.json index f0c3b5cb..4f4aaf34 100644 --- a/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dsm_1m/2193/collection.json +++ b/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MYEVKNBME6K5GBXJ3AGR7C", - "title": "Manawatū - Whanganui LiDAR 1m DSM (2015-2016)", - "description": "Digital Surface Model within the Manawatū - Whanganui region captured in 2015-2016.", + "id": "01HQRGJ6ZK9RN50A1MAZTVW9S4", + "title": "Manawatū-Whanganui LiDAR 1m DSM (2015-2016)", + "description": "Digital Surface Model within the Manawatū-Whanganui region captured in 2015-2016.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -171,8 +171,23 @@ { "name": "Horizons Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[174.7100346, -40.765512, 176.0833559, -38.7557257]] }, "temporal": { "interval": [["2015-12-26T11:00:00Z", "2016-12-16T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220d8648b135d9c2b5a8ee67d7affe1f4a48f3361286ef2bd323286df19c54aa15e", + "file:size": 156390 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From f85c975ed92d5537017763318fb84c36cc2e6122 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:22:12 +1300 Subject: [PATCH 219/309] feat: import Wellington - Porirua LiDAR 1m DSM (2023) (#235) --- .../porirua_2023/dsm_1m/2193/collection.json | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 stac/wellington/porirua_2023/dsm_1m/2193/collection.json diff --git a/stac/wellington/porirua_2023/dsm_1m/2193/collection.json b/stac/wellington/porirua_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..84f72d97 --- /dev/null +++ b/stac/wellington/porirua_2023/dsm_1m/2193/collection.json @@ -0,0 +1,55 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRFJFR5VSY4853G66QD438Q", + "title": "Wellington - Porirua LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Wellington region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Porirua City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Porirua", + "extent": { + "spatial": { "bbox": [[174.7415177, -41.2240674, 175.0308433, -40.9619694]] }, + "temporal": { "interval": [["2023-01-17T11:00:00Z", "2023-04-15T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220db37dfa146b294346c20e061c141f1bbae8da9db7d4404b8f22597b9d8f83710", + "file:size": 4597 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 08474f0fb0505abd5457fd6c028bfacfe6014097 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:22:15 +1300 Subject: [PATCH 220/309] feat: import Wellington - Porirua LiDAR 1m DEM (2023) (#215) --- .../porirua_2023/dem_1m/2193/collection.json | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 stac/wellington/porirua_2023/dem_1m/2193/collection.json diff --git a/stac/wellington/porirua_2023/dem_1m/2193/collection.json b/stac/wellington/porirua_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..dd6f43f1 --- /dev/null +++ b/stac/wellington/porirua_2023/dem_1m/2193/collection.json @@ -0,0 +1,55 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRFHMB6E7XTG5KNMVKJ870C", + "title": "Wellington - Porirua LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Wellington region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Porirua City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Porirua", + "extent": { + "spatial": { "bbox": [[174.7415177, -41.2240674, 175.0308433, -40.9619694]] }, + "temporal": { "interval": [["2023-01-17T11:00:00Z", "2023-04-15T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c9ba2450b90ac5b7c07e7106f1ee833f823a8c585bef3d32b32fadbda6b0df57", + "file:size": 3995 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From ab00791cfba13ec1bc8815ae70dda9f2df8113ae Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:22:49 +1300 Subject: [PATCH 221/309] feat: import Canterbury - Banks Peninsula LiDAR 1m DEM (2023) (#229) --- .../dem_1m/2193/collection.json | 95 +++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 stac/canterbury/banks-peninsula_2023/dem_1m/2193/collection.json diff --git a/stac/canterbury/banks-peninsula_2023/dem_1m/2193/collection.json b/stac/canterbury/banks-peninsula_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..4e450ede --- /dev/null +++ b/stac/canterbury/banks-peninsula_2023/dem_1m/2193/collection.json @@ -0,0 +1,95 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRJY25RYS4F3XDF9VKY4NYZ", + "title": "Canterbury - Banks Peninsula LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Canterbury region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Banks Peninsula", + "extent": { + "spatial": { "bbox": [[172.3127142, -43.9615254, 173.149415, -43.5722488]] }, + "temporal": { "interval": [["2023-02-17T11:00:00Z", "2023-08-14T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220edd46eb0cebaf22c3d1ad75ce1c12bd529960cd24051a7ef48946450c7e1a285", + "file:size": 37695 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 71675ed623a8e41e5f675ec96687ef67a8a2dff1 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:22:52 +1300 Subject: [PATCH 222/309] feat: import Canterbury - Banks Peninsula LiDAR 1m DSM (2023) (#237) --- .../dsm_1m/2193/collection.json | 95 +++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 stac/canterbury/banks-peninsula_2023/dsm_1m/2193/collection.json diff --git a/stac/canterbury/banks-peninsula_2023/dsm_1m/2193/collection.json b/stac/canterbury/banks-peninsula_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..8c0d1051 --- /dev/null +++ b/stac/canterbury/banks-peninsula_2023/dsm_1m/2193/collection.json @@ -0,0 +1,95 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRJZDVKPWCDE1MRNGVTZA8Z", + "title": "Canterbury - Banks Peninsula LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Canterbury region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Banks Peninsula", + "extent": { + "spatial": { "bbox": [[172.3127142, -43.9615254, 173.149415, -43.5722488]] }, + "temporal": { "interval": [["2023-02-17T11:00:00Z", "2023-08-14T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122076971ec2cac4f6c4d68eee34efbef6160220f68756248e4d04dadb9ce3d480d3", + "file:size": 37695 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 2142e957b002c3ba6c55d906170d899b0bbcca2b Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:23:31 +1300 Subject: [PATCH 223/309] feat: import Nelson - Top of the South Flood LiDAR 1m DSM (2022) (#191) Co-authored-by: Megan Davidson Co-authored-by: Daniel Silk --- .../dsm_1m/2193/collection.json | 25 ++++++++++++++++--- 1 file changed, 21 insertions(+), 4 deletions(-) rename stac/nelson/{nelson-and-tasman-top-of-the-south-flood_2022 => top-of-the-south-flood_2022}/dsm_1m/2193/collection.json (86%) diff --git a/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dsm_1m/2193/collection.json b/stac/nelson/top-of-the-south-flood_2022/dsm_1m/2193/collection.json similarity index 86% rename from stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dsm_1m/2193/collection.json rename to stac/nelson/top-of-the-south-flood_2022/dsm_1m/2193/collection.json index 11fa9d26..e02648ff 100644 --- a/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dsm_1m/2193/collection.json +++ b/stac/nelson/top-of-the-south-flood_2022/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N6NQMW470GHJ6N0WKFZ397", + "id": "01HQPQSPW1313HC98GYNQJQX42", "title": "Nelson and Tasman - Top of the South Flood LiDAR 1m DSM (2022)", - "description": "Digital Surface Model within the Nelson and Tasman - Top of the South Flood region captured in 2022.", + "description": "Digital Surface Model within the Nelson region captured in 2022, published as a record of the Top of the South Flood event.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -77,8 +77,25 @@ { "name": "National Emergency Management Agency", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "nelson", + "linz:security_classification": "unclassified", + "linz:event_name": "Top of the South Flood", + "linz:geographic_description": "Top of the South Flood", "extent": { "spatial": { "bbox": [[172.7437525, -41.5623833, 173.715274, -40.7839011]] }, "temporal": { "interval": [["2022-08-22T12:00:00Z", "2022-09-05T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220f87300f3cbde5cf9f3af768856abe21467f1abaec0c4cbb64a845b7651646a24", + "file:size": 16724 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From d8de598184fa104b27b2ef2fa4e206e0d054d8e9 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:23:35 +1300 Subject: [PATCH 224/309] feat: import Nelson - Top of the South Flood LiDAR 1m DEM (2022) (#189) Co-authored-by: Megan Davidson Co-authored-by: Daniel Silk --- .../dem_1m/2193/collection.json | 25 ++++++++++++++++--- 1 file changed, 21 insertions(+), 4 deletions(-) rename stac/nelson/{nelson-and-tasman-top-of-the-south-flood_2022 => top-of-the-south-flood_2022}/dem_1m/2193/collection.json (86%) diff --git a/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dem_1m/2193/collection.json b/stac/nelson/top-of-the-south-flood_2022/dem_1m/2193/collection.json similarity index 86% rename from stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dem_1m/2193/collection.json rename to stac/nelson/top-of-the-south-flood_2022/dem_1m/2193/collection.json index 294a1897..79054533 100644 --- a/stac/nelson/nelson-and-tasman-top-of-the-south-flood_2022/dem_1m/2193/collection.json +++ b/stac/nelson/top-of-the-south-flood_2022/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N6NJKXDG0DH6KZ6SP5FF46", + "id": "01HQPPXKJYFPHZWFQNCJTWRJB9", "title": "Nelson and Tasman - Top of the South Flood LiDAR 1m DEM (2022)", - "description": "Digital Elevation Model within the Nelson and Tasman - Top of the South Flood region captured in 2022.", + "description": "Digital Elevation Model within the Nelson region captured in 2022, published as a record of the Top of the South Flood event.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -77,8 +77,25 @@ { "name": "National Emergency Management Agency", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "nelson", + "linz:security_classification": "unclassified", + "linz:event_name": "Top of the South Flood", + "linz:geographic_description": "Top of the South Flood", "extent": { "spatial": { "bbox": [[172.7437525, -41.5623833, 173.715274, -40.7839011]] }, "temporal": { "interval": [["2022-08-22T12:00:00Z", "2022-09-05T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c3991dcde6694e44d091f543fcfc2356f2795e936e60ec67d4dce1d3565849e0", + "file:size": 16720 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 0938edeee85b88f1a5d1468aaf6f16941cdf2055 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:24:01 +1300 Subject: [PATCH 225/309] feat: import Bay of Plenty LiDAR 1m DSM (2019-2022) (#207) --- .../dsm_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/bay-of-plenty/bay-of-plenty_2019-2022/dsm_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2019-2022/dsm_1m/2193/collection.json index 952c87a2..666da12f 100644 --- a/stac/bay-of-plenty/bay-of-plenty_2019-2022/dsm_1m/2193/collection.json +++ b/stac/bay-of-plenty/bay-of-plenty_2019-2022/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6Q2K5V7603C2E2XDBAKSMTK", + "id": "01HQPSWHWD6JTHARS8YSJXWHYN", "title": "Bay of Plenty LiDAR 1m DSM (2019-2022)", "description": "Digital Surface Model within the Bay of Plenty region captured in 2019-2022.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -472,8 +472,23 @@ { "name": "BOPLASS", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[175.7942516, -38.909689, 178.1384604, -37.2338091]] }, "temporal": { "interval": [["2019-10-26T11:00:00Z", "2022-10-23T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122018da05dae5dc51b81a4b9d01288202f1fbcf6ea51a0968e792ed86f1d533d4bf", + "file:size": 36680 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From bc2ef83be2e2fbf762039c0e32361bdc2d9b998d Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:24:03 +1300 Subject: [PATCH 226/309] feat: import Bay of Plenty LiDAR 1m DEM (2019-2022) (#202) --- .../dem_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/bay-of-plenty/bay-of-plenty_2019-2022/dem_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2019-2022/dem_1m/2193/collection.json index eb049a89..8732f775 100644 --- a/stac/bay-of-plenty/bay-of-plenty_2019-2022/dem_1m/2193/collection.json +++ b/stac/bay-of-plenty/bay-of-plenty_2019-2022/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6Q06X72KREAS83PXSCBM7W1", + "id": "01HQPS5XWMYXT4PD4TY40AXV0Y", "title": "Bay of Plenty LiDAR 1m DEM (2019-2022)", "description": "Digital Elevation Model within the Bay of Plenty region captured in 2019-2022.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -472,8 +472,23 @@ { "name": "BOPLASS", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[175.7942516, -38.909689, 178.1384604, -37.2338091]] }, "temporal": { "interval": [["2019-10-26T11:00:00Z", "2022-10-23T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220848732a4444cfbec24af748221618c3f4dee1aa63673bad102e2e45d4276d947", + "file:size": 33577 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 3aeb217f705e79b2ae7724b80f70b15254463a1f Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:49:07 +1300 Subject: [PATCH 227/309] feat: import Otago - Central Otago LiDAR 1m DEM (2022-2023) (#239) --- .../dem_1m/2193/collection.json | 184 ++++++++++++++++++ 1 file changed, 184 insertions(+) create mode 100644 stac/otago/central-otago_2022-2023/dem_1m/2193/collection.json diff --git a/stac/otago/central-otago_2022-2023/dem_1m/2193/collection.json b/stac/otago/central-otago_2022-2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..7a251b48 --- /dev/null +++ b/stac/otago/central-otago_2022-2023/dem_1m/2193/collection.json @@ -0,0 +1,184 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRFNK136A69MSBMY92NFSBW", + "title": "Otago - Central Otago LiDAR 1m DEM (2022-2023)", + "description": "Digital Elevation Model within the Otago region captured in 2022-2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Central Otago", + "extent": { + "spatial": { "bbox": [[169.0452978, -45.532782, 170.1155572, -44.5604602]] }, + "temporal": { "interval": [["2022-06-21T12:00:00Z", "2023-01-08T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220692863e1c6a729b2ae895812ab38479c55d159b2d84eece16e417def901d6acc", + "file:size": 19820 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 5cae13552215fdba9a4d9e095484541059af1b39 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:49:10 +1300 Subject: [PATCH 228/309] feat: import Otago - Central Otago LiDAR 1m DSM (2022-2023) (#238) --- .../dsm_1m/2193/collection.json | 184 ++++++++++++++++++ 1 file changed, 184 insertions(+) create mode 100644 stac/otago/central-otago_2022-2023/dsm_1m/2193/collection.json diff --git a/stac/otago/central-otago_2022-2023/dsm_1m/2193/collection.json b/stac/otago/central-otago_2022-2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..c92455b1 --- /dev/null +++ b/stac/otago/central-otago_2022-2023/dsm_1m/2193/collection.json @@ -0,0 +1,184 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRFTTRBW9MXRR7AMRJW40FZ", + "title": "Otago - Central Otago LiDAR 1m DSM (2022-2023)", + "description": "Digital Surface Model within the Otago region captured in 2022-2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Central Otago", + "extent": { + "spatial": { "bbox": [[169.0452978, -45.532782, 170.1155572, -44.5604602]] }, + "temporal": { "interval": [["2022-06-21T12:00:00Z", "2023-01-08T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220692863e1c6a729b2ae895812ab38479c55d159b2d84eece16e417def901d6acc", + "file:size": 19820 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 7f4840f17cb0e1db4530af517802ea4dd7d7f7a2 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 13:19:50 +1300 Subject: [PATCH 229/309] feat: import Waikato LiDAR 1m DEM (2021) (#228) --- .../waikato_2021/dem_1m/2193/collection.json | 274 +++++++++++++++++- 1 file changed, 269 insertions(+), 5 deletions(-) diff --git a/stac/waikato/waikato_2021/dem_1m/2193/collection.json b/stac/waikato/waikato_2021/dem_1m/2193/collection.json index ef0e8a9d..9b25467b 100644 --- a/stac/waikato/waikato_2021/dem_1m/2193/collection.json +++ b/stac/waikato/waikato_2021/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H7H2K7PPF07X9SVCSX4BZQVB", + "id": "01HQRH2G1MPBBR8PBKPRASE0RE", "title": "Waikato LiDAR 1m DEM (2021)", "description": "Digital Elevation Model within the Waikato region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -78,6 +78,12 @@ { "rel": "item", "href": "./BA36_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BA36_10000_0501.json", "type": "application/json" }, { "rel": "item", "href": "./BA36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BB33_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./BB33_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./BB33_10000_0401.json", "type": "application/json" }, @@ -142,13 +148,61 @@ { "rel": "item", "href": "./BB36_10000_0501.json", "type": "application/json" }, { "rel": "item", "href": "./BB36_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BB37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0204.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0505.json", "type": "application/json" }, @@ -206,6 +260,8 @@ { "rel": "item", "href": "./BC36_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./BC36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD31_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0103.json", "type": "application/json" }, @@ -221,10 +277,16 @@ { "rel": "item", "href": "./BD32_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0402.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BD33_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BD33_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" }, @@ -245,6 +307,10 @@ { "rel": "item", "href": "./BD33_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./BD33_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./BD33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BD33_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BD34_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BD34_10000_0102.json", "type": "application/json" }, @@ -290,15 +356,213 @@ { "rel": "item", "href": "./BD36_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./BD36_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./BD36_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BD36_10000_0402.json", "type": "application/json" } + { "rel": "item", "href": "./BD36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0301.json", "type": "application/json" } ], "providers": [ { "name": "Ocean Infinity", "roles": ["producer"] }, { "name": "Waikato Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", "extent": { - "spatial": { "bbox": [[174.7669986, -37.9077454, 176.1545948, -36.4037416]] }, + "spatial": { "bbox": [[174.5702773, -38.863948, 176.3373624, -36.4037416]] }, "temporal": { "interval": [["2021-01-04T11:00:00Z", "2021-03-25T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12206baa770e3da179c6ed3d7f831473a958a35d7ce4c6ff225bd40e36b6ec75eae6", + "file:size": 51815 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 3b189845f5fbfceee1945116e85e5121fd1079a0 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 13:19:52 +1300 Subject: [PATCH 230/309] feat: import Waikato LiDAR 1m DSM (2021) (#240) --- .../waikato_2021/dsm_1m/2193/collection.json | 274 +++++++++++++++++- 1 file changed, 269 insertions(+), 5 deletions(-) diff --git a/stac/waikato/waikato_2021/dsm_1m/2193/collection.json b/stac/waikato/waikato_2021/dsm_1m/2193/collection.json index 9eb70978..45595d80 100644 --- a/stac/waikato/waikato_2021/dsm_1m/2193/collection.json +++ b/stac/waikato/waikato_2021/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H7H4WSBWVD37KQNB624591EQ", + "id": "01HQRHJSHZQ4Y13GN626FHJ36Z", "title": "Waikato LiDAR 1m DSM (2021)", "description": "Digital Surface Model within the Waikato region captured in 2021.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -78,6 +78,12 @@ { "rel": "item", "href": "./BA36_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BA36_10000_0501.json", "type": "application/json" }, { "rel": "item", "href": "./BA36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BB33_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./BB33_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./BB33_10000_0401.json", "type": "application/json" }, @@ -142,13 +148,61 @@ { "rel": "item", "href": "./BB36_10000_0501.json", "type": "application/json" }, { "rel": "item", "href": "./BB36_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BB37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0204.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BC33_10000_0505.json", "type": "application/json" }, @@ -206,6 +260,8 @@ { "rel": "item", "href": "./BC36_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./BC36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD31_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0103.json", "type": "application/json" }, @@ -221,10 +277,16 @@ { "rel": "item", "href": "./BD32_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0402.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./BD32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BD33_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BD33_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" }, @@ -245,6 +307,10 @@ { "rel": "item", "href": "./BD33_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./BD33_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./BD33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BD33_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BD34_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BD34_10000_0102.json", "type": "application/json" }, @@ -290,15 +356,213 @@ { "rel": "item", "href": "./BD36_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./BD36_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./BD36_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BD36_10000_0402.json", "type": "application/json" } + { "rel": "item", "href": "./BD36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0301.json", "type": "application/json" } ], "providers": [ { "name": "Ocean Infinity", "roles": ["producer"] }, { "name": "Waikato Regional Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", "extent": { - "spatial": { "bbox": [[174.7669986, -37.9077454, 176.1545948, -36.4037416]] }, + "spatial": { "bbox": [[174.5702773, -38.863948, 176.3373624, -36.4037416]] }, "temporal": { "interval": [["2021-01-04T11:00:00Z", "2021-03-25T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12206baa770e3da179c6ed3d7f831473a958a35d7ce4c6ff225bd40e36b6ec75eae6", + "file:size": 51815 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 09b0d8243b4ca23129e595a6418a9f0c32bb6d70 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 13:39:22 +1300 Subject: [PATCH 231/309] feat: import Gisborne and Hawke's Bay - Cyclone Gabrielle River Flood LiDAR 1m DSM (2023) (#205) Co-authored-by: Daniel Silk --- .../dsm_1m/2193/collection.json | 170 ++++++++++++++++++ 1 file changed, 170 insertions(+) create mode 100644 stac/hawkes-bay/gisborne-and-hawkes-bay-cyclone-gabrielle-river-flood_2023/dsm_1m/2193/collection.json diff --git a/stac/hawkes-bay/gisborne-and-hawkes-bay-cyclone-gabrielle-river-flood_2023/dsm_1m/2193/collection.json b/stac/hawkes-bay/gisborne-and-hawkes-bay-cyclone-gabrielle-river-flood_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..bdbf79cd --- /dev/null +++ b/stac/hawkes-bay/gisborne-and-hawkes-bay-cyclone-gabrielle-river-flood_2023/dsm_1m/2193/collection.json @@ -0,0 +1,170 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPRZF3K0Y1A1V5R4ND8G48V", + "title": "Gisborne and Hawke's Bay - Cyclone Gabrielle River Flood LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Hawke's Bay and Gisborne regions captured in 2023, published as a record of the Cyclone Gabrielle event.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Christchurch Helicopters", "roles": ["producer"] }, + { "name": "University of Canterbury", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "hawkes-bay", + "linz:security_classification": "unclassified", + "linz:event_name": "Cyclone Gabrielle", + "linz:geographic_description": "Gisborne and Hawke's Bay Cyclone Gabrielle River Flood", + "extent": { + "spatial": { "bbox": [[176.4556302, -40.019003, 178.3620224, -38.0678855]] }, + "temporal": { "interval": [["2023-02-25T11:00:00Z", "2023-03-14T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122011b892c26825aef200fa20a36ede1993cae68971513194ef3a602cc67fc7e22d", + "file:size": 214249 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From e9f3b39bf6d261565e09069709c6f895ce31ee7d Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 13:39:26 +1300 Subject: [PATCH 232/309] feat: import Gisborne and Hawke's Bay - Cyclone Gabrielle River Flood LiDAR 1m DEM (2023) (#203) Co-authored-by: Daniel Silk --- .../dem_1m/2193/collection.json | 170 ++++++++++++++++++ 1 file changed, 170 insertions(+) create mode 100644 stac/hawkes-bay/gisborne-and-hawkes-bay-cyclone-gabrielle-river-flood_2023/dem_1m/2193/collection.json diff --git a/stac/hawkes-bay/gisborne-and-hawkes-bay-cyclone-gabrielle-river-flood_2023/dem_1m/2193/collection.json b/stac/hawkes-bay/gisborne-and-hawkes-bay-cyclone-gabrielle-river-flood_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..7593f41d --- /dev/null +++ b/stac/hawkes-bay/gisborne-and-hawkes-bay-cyclone-gabrielle-river-flood_2023/dem_1m/2193/collection.json @@ -0,0 +1,170 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPRNZW7PKPYY1MPMNQS1JBW", + "title": "Gisborne and Hawke's Bay - Cyclone Gabrielle River Flood LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Hawke's Bay and Gisborne regions captured in 2023, published as a record of the Cyclone Gabrielle event.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Christchurch Helicopters", "roles": ["producer"] }, + { "name": "University of Canterbury", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "hawkes-bay", + "linz:security_classification": "unclassified", + "linz:event_name": "Cyclone Gabrielle", + "linz:geographic_description": "Gisborne and Hawke's Bay Cyclone Gabrielle River Flood", + "extent": { + "spatial": { "bbox": [[176.4556302, -40.019003, 178.3620224, -38.0678855]] }, + "temporal": { "interval": [["2023-02-25T11:00:00Z", "2023-03-14T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220b384673a31ec5cdcd972e5fc326f4d1e839de175a34cdf845b40a96a9502702d", + "file:size": 221173 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 9f452881f6d0855a18a66168235a58db1f410013 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 14:21:29 +1300 Subject: [PATCH 233/309] feat: import Southland LiDAR 1m DSM (2020-2023) (#232) Co-authored-by: Megan Davidson --- .../dsm_1m/2193/collection.json | 228 +++++++++++++++++- 1 file changed, 221 insertions(+), 7 deletions(-) rename stac/southland/{southland_2020-2022 => southland_2020-2023}/dsm_1m/2193/collection.json (66%) diff --git a/stac/southland/southland_2020-2022/dsm_1m/2193/collection.json b/stac/southland/southland_2020-2023/dsm_1m/2193/collection.json similarity index 66% rename from stac/southland/southland_2020-2022/dsm_1m/2193/collection.json rename to stac/southland/southland_2020-2023/dsm_1m/2193/collection.json index b1a9ddbb..471e77b3 100644 --- a/stac/southland/southland_2020-2022/dsm_1m/2193/collection.json +++ b/stac/southland/southland_2020-2023/dsm_1m/2193/collection.json @@ -1,35 +1,138 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H7H4XFWA5N5D41X75N4WNRT4", - "title": "Southland LiDAR 1m DSM (2020-2022)", - "description": "Digital Surface Model within the Southland region captured in 2020-2022.", + "id": "01HQRJ9SQ44QFBVN0KDS0XW2F0", + "title": "Southland LiDAR 1m DSM (2020-2023)", + "description": "Digital Surface Model within the Southland region captured in 2020-2023.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC10_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC10_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC10_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC10_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC10_10000_0501.json", "type": "application/json" }, { "rel": "item", "href": "./CC10_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./CC11_10000_0501.json", "type": "application/json" }, { "rel": "item", "href": "./CC11_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./CC11_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./CC12_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./CC12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0202.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0204.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0402.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0505.json", "type": "application/json" }, @@ -108,18 +211,66 @@ { "rel": "item", "href": "./CD12_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./CD13_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./CD13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0201.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0202.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0204.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./CE10_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./CE10_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./CE10_10000_0103.json", "type": "application/json" }, @@ -140,6 +291,10 @@ { "rel": "item", "href": "./CE10_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./CE10_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./CE10_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./CE10_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./CE11_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./CE11_10000_0102.json", "type": "application/json" }, @@ -187,16 +342,56 @@ { "rel": "item", "href": "./CE12_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./CE12_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./CE12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0204.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0402.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0105.json", "type": "application/json" }, { "rel": "item", "href": "./CF09_10000_0201.json", "type": "application/json" }, { "rel": "item", "href": "./CF09_10000_0202.json", "type": "application/json" }, { "rel": "item", "href": "./CF09_10000_0203.json", "type": "application/json" }, @@ -217,6 +412,10 @@ { "rel": "item", "href": "./CF09_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./CF09_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./CF09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./CF10_10000_0105.json", "type": "application/json" }, { "rel": "item", "href": "./CF10_10000_0201.json", "type": "application/json" }, { "rel": "item", "href": "./CF10_10000_0202.json", "type": "application/json" }, @@ -422,8 +621,23 @@ { "name": "Environment Southland", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "southland", + "linz:security_classification": "unclassified", "extent": { - "spatial": { "bbox": [[167.6643767, -46.6893848, 169.3363348, -45.234177]] }, - "temporal": { "interval": [["2020-12-14T11:00:00Z", "2022-05-10T12:00:00Z"]] } - } + "spatial": { "bbox": [[167.2567474, -46.6893848, 169.3363348, -44.6247872]] }, + "temporal": { "interval": [["2020-12-14T11:00:00Z", "2023-04-25T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204085b7d3fea32fc4faa8315315be5acbf0cfd0deeb20e9eec1db608dff94fa4e", + "file:size": 37439 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 2cfe9cade9da8db5250820f318b341a6dc5976a0 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 14:34:54 +1300 Subject: [PATCH 234/309] feat: import Southland LiDAR 1m DEM (2020-2023) (#242) Co-authored-by: Daniel Silk --- .../dem_1m/2193/collection.json | 228 +++++++++++++++++- 1 file changed, 221 insertions(+), 7 deletions(-) rename stac/southland/{southland_2020-2022 => southland_2020-2023}/dem_1m/2193/collection.json (66%) diff --git a/stac/southland/southland_2020-2022/dem_1m/2193/collection.json b/stac/southland/southland_2020-2023/dem_1m/2193/collection.json similarity index 66% rename from stac/southland/southland_2020-2022/dem_1m/2193/collection.json rename to stac/southland/southland_2020-2023/dem_1m/2193/collection.json index 691336e3..48242773 100644 --- a/stac/southland/southland_2020-2022/dem_1m/2193/collection.json +++ b/stac/southland/southland_2020-2023/dem_1m/2193/collection.json @@ -1,35 +1,138 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H7H4XFXH9BCM5PPDJYKVTEFA", - "title": "Southland LiDAR 1m DEM (2020-2022)", - "description": "Digital Elevation Model within the Southland region captured in 2020-2022.", + "id": "01HQRJ3ZRPRD0NY2406V2C47MR", + "title": "Southland LiDAR 1m DEM (2020-2023)", + "description": "Digital Elevation Model within the Southland region captured in 2020-2023.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB08_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB09_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC08_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC10_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC10_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC10_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC10_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC10_10000_0501.json", "type": "application/json" }, { "rel": "item", "href": "./CC10_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./CC11_10000_0501.json", "type": "application/json" }, { "rel": "item", "href": "./CC11_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./CC11_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./CC12_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./CC12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD08_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0202.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0204.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0402.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD09_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./CD09_10000_0505.json", "type": "application/json" }, @@ -108,18 +211,66 @@ { "rel": "item", "href": "./CD12_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./CD13_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./CD13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE07_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE08_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0201.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0202.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0204.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./CE09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE09_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./CE10_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./CE10_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./CE10_10000_0103.json", "type": "application/json" }, @@ -140,6 +291,10 @@ { "rel": "item", "href": "./CE10_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./CE10_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./CE10_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE10_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./CE10_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./CE11_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./CE11_10000_0102.json", "type": "application/json" }, @@ -187,16 +342,56 @@ { "rel": "item", "href": "./CE12_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./CE12_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./CE12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF07_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0204.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0402.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF08_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./CF08_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF09_10000_0105.json", "type": "application/json" }, { "rel": "item", "href": "./CF09_10000_0201.json", "type": "application/json" }, { "rel": "item", "href": "./CF09_10000_0202.json", "type": "application/json" }, { "rel": "item", "href": "./CF09_10000_0203.json", "type": "application/json" }, @@ -217,6 +412,10 @@ { "rel": "item", "href": "./CF09_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./CF09_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./CF09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF10_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./CF10_10000_0105.json", "type": "application/json" }, { "rel": "item", "href": "./CF10_10000_0201.json", "type": "application/json" }, { "rel": "item", "href": "./CF10_10000_0202.json", "type": "application/json" }, @@ -422,8 +621,23 @@ { "name": "Environment Southland", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "southland", + "linz:security_classification": "unclassified", "extent": { - "spatial": { "bbox": [[167.6643767, -46.6893848, 169.3363348, -45.234177]] }, - "temporal": { "interval": [["2020-12-14T11:00:00Z", "2022-05-10T12:00:00Z"]] } - } + "spatial": { "bbox": [[167.2567474, -46.6893848, 169.3363348, -44.6247872]] }, + "temporal": { "interval": [["2020-12-14T11:00:00Z", "2023-04-25T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220ca45adac51367d4e39e529f8344b589375289e7fa163afac7f7ae2bd213a4b04", + "file:size": 36861 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From ab10c82d1706ea9d2b792c6ac43b43bc0d190cc8 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:06:18 +1300 Subject: [PATCH 235/309] feat: import Auckland North LiDAR 1m DSM (2016-2018) (#246) Co-authored-by: Daniel Silk --- .../dsm_1m/2193/collection.json | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/stac/auckland/auckland-north_2016-2018/dsm_1m/2193/collection.json b/stac/auckland/auckland-north_2016-2018/dsm_1m/2193/collection.json index 4d974296..2d5af21f 100644 --- a/stac/auckland/auckland-north_2016-2018/dsm_1m/2193/collection.json +++ b/stac/auckland/auckland-north_2016-2018/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N2AA5XW4KE4PTZW9P27ZVZ", + "id": "01HQS6CAGWRKSSF27B93CNZ33E", "title": "Auckland North LiDAR 1m DSM (2016-2018)", - "description": "Digital Surface Model within the Auckland North region captured in 2016-2018.", + "description": "Digital Surface Model within the Auckland region captured in 2016-2018.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -210,8 +210,24 @@ { "name": "Auckland Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "auckland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Auckland North", "extent": { "spatial": { "bbox": [[174.0977806, -37.0772518, 175.5940431, -36.0228458]] }, "temporal": { "interval": [["2016-08-15T12:00:00Z", "2018-08-08T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12206e86a68dc9e70b9e8b5f152c5220cc4cef551f13ea0229492fa8ffe17b1daa28", + "file:size": 32410 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 6dd02189328413ea9cc10d9b2fb6077e64cc4457 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:12:23 +1300 Subject: [PATCH 236/309] feat: import Auckland North LiDAR 1m DEM (2016-2018) (#245) Co-authored-by: Daniel Silk --- .../dem_1m/2193/collection.json | 31 +++++++++++++------ 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/stac/auckland/auckland-north_2016-2018/dem_1m/2193/collection.json b/stac/auckland/auckland-north_2016-2018/dem_1m/2193/collection.json index 03712cda..9fdb8937 100644 --- a/stac/auckland/auckland-north_2016-2018/dem_1m/2193/collection.json +++ b/stac/auckland/auckland-north_2016-2018/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H7GYNVQ0015G7NNJYV5DQG0M", + "id": "01HQS6C8F88JGM04345RY84N9D", "title": "Auckland North LiDAR 1m DEM (2016-2018)", - "description": "Digital Elevation Model within the Auckland North region captured in 2016-2018.", + "description": "Digital Elevation Model within the Auckland region captured in 2016-2018.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -53,7 +53,6 @@ { "rel": "item", "href": "./AY34_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./AY34_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./AZ29_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ29_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./AZ29_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./AZ29_10000_0405.json", "type": "application/json" }, { "rel": "item", "href": "./AZ30_10000_0101.json", "type": "application/json" }, @@ -119,7 +118,6 @@ { "rel": "item", "href": "./AZ32_10000_0501.json", "type": "application/json" }, { "rel": "item", "href": "./AZ32_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./AZ32_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ32_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./AZ34_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./AZ34_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./AZ34_10000_0105.json", "type": "application/json" }, @@ -132,12 +130,10 @@ { "rel": "item", "href": "./BA30_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./BA30_10000_0204.json", "type": "application/json" }, { "rel": "item", "href": "./BA30_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BA30_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./BA30_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./BA30_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./BA30_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./BA30_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BA30_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BA30_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BA31_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BA31_10000_0102.json", "type": "application/json" }, @@ -166,7 +162,6 @@ { "rel": "item", "href": "./BA31_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BA32_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BA32_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BA32_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./BA32_10000_0201.json", "type": "application/json" }, { "rel": "item", "href": "./BA32_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./BA32_10000_0204.json", "type": "application/json" }, @@ -210,8 +205,24 @@ { "name": "Auckland Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "auckland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Auckland North", "extent": { - "spatial": { "bbox": [[174.0977806, -37.0772518, 175.5940431, -36.0228458]] }, + "spatial": { "bbox": [[174.1503643, -37.0772518, 175.5940431, -36.0228458]] }, "temporal": { "interval": [["2016-08-15T12:00:00Z", "2018-08-08T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122039942a5b46234c077a134693078b0265e8a0e8cdf63d900c81177515eb470b13", + "file:size": 40235 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 8217873ef128141e6c70aedc30d46652e0a724e0 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:12:48 +1300 Subject: [PATCH 237/309] feat: import Bay of Plenty LiDAR 1m DEM (2018-2019) (#243) --- .../dem_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/bay-of-plenty/bay-of-plenty_2018-2019/dem_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2018-2019/dem_1m/2193/collection.json index 99f9dd5f..c3eb1230 100644 --- a/stac/bay-of-plenty/bay-of-plenty_2018-2019/dem_1m/2193/collection.json +++ b/stac/bay-of-plenty/bay-of-plenty_2018-2019/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N1V00XXT81YRAWZHB1XVV6", + "id": "01HQS6D00PR9DH3RPRDJBRC09V", "title": "Bay of Plenty LiDAR 1m DEM (2018-2019)", "description": "Digital Elevation Model within the Bay of Plenty region captured in 2018-2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -104,8 +104,23 @@ { "name": "BOPLASS", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[175.8509111, -38.5211801, 177.3479462, -37.3721055]] }, "temporal": { "interval": [["2018-11-30T11:00:00Z", "2019-04-29T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122056cf43aae3de78dc5a5d8428096446fc70f87f84c6b1648ec94170064ae3b3c2", + "file:size": 25178 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 40031318e45ebdb9152cc2c66521798cea9a40d8 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:12:51 +1300 Subject: [PATCH 238/309] feat: import Bay of Plenty LiDAR 1m DSM (2018-2019) (#244) --- .../dsm_1m/2193/collection.json | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/stac/bay-of-plenty/bay-of-plenty_2018-2019/dsm_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2018-2019/dsm_1m/2193/collection.json index 2b0c6251..db453fc9 100644 --- a/stac/bay-of-plenty/bay-of-plenty_2018-2019/dsm_1m/2193/collection.json +++ b/stac/bay-of-plenty/bay-of-plenty_2018-2019/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N1V6XQAEA91M7PB24S8SBB", + "id": "01HQS78YTAXVAHPSH3XDNG25TC", "title": "Bay of Plenty LiDAR 1m DSM (2018-2019)", "description": "Digital Surface Model within the Bay of Plenty region captured in 2018-2019.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -104,8 +104,23 @@ { "name": "BOPLASS", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[175.8509111, -38.5211801, 177.3479462, -37.3721055]] }, "temporal": { "interval": [["2018-11-30T11:00:00Z", "2019-04-29T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122056cf43aae3de78dc5a5d8428096446fc70f87f84c6b1648ec94170064ae3b3c2", + "file:size": 25178 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From e4adec33ea718c8a32f4d45b94618b4458fdfde1 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:13:16 +1300 Subject: [PATCH 239/309] feat: import Canterbury - Cheviot LiDAR 1m DEM (2015) (#248) --- .../cheviot_2015/dem_1m/2193/collection.json | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 stac/canterbury/cheviot_2015/dem_1m/2193/collection.json diff --git a/stac/canterbury/cheviot_2015/dem_1m/2193/collection.json b/stac/canterbury/cheviot_2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..5d32c6e7 --- /dev/null +++ b/stac/canterbury/cheviot_2015/dem_1m/2193/collection.json @@ -0,0 +1,46 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQS7W3T1D5D5R04QTCG7TGG8", + "title": "Canterbury - Cheviot LiDAR 1m DEM (2015)", + "description": "Digital Elevation Model within the Canterbury region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Cheviot", + "extent": { + "spatial": { "bbox": [[173.1465831, -42.8592009, 173.3231548, -42.7292537]] }, + "temporal": { "interval": [["2015-03-31T11:00:00Z", "2015-03-31T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220538d0a5ce6ded156608353c917ef1e0bb29ef5d322e6c9543fde49f058dfb4dc", + "file:size": 3180 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 25f2943a3cf2a7fc7ff0b5ff5333edfb303a7a78 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:17:49 +1300 Subject: [PATCH 240/309] =?UTF-8?q?feat:=20import=20Canterbury=20-=20Kaik?= =?UTF-8?q?=C5=8Dura=20LiDAR=201m=20DEM=20(2016-2017)=20(#230)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dem_1m/2193/collection.json | 155 ++++++++++++++++++ 1 file changed, 155 insertions(+) create mode 100644 stac/canterbury/kaikoura_2016-2017/dem_1m/2193/collection.json diff --git a/stac/canterbury/kaikoura_2016-2017/dem_1m/2193/collection.json b/stac/canterbury/kaikoura_2016-2017/dem_1m/2193/collection.json new file mode 100644 index 00000000..b8dfecb6 --- /dev/null +++ b/stac/canterbury/kaikoura_2016-2017/dem_1m/2193/collection.json @@ -0,0 +1,155 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRF0R1M1RWZJZCMFAQZJVWD", + "title": "Canterbury - Kaikōura LiDAR 1m DEM (2016-2017)", + "description": "Digital Elevation Model within the Canterbury region captured in 2016-2017.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0301.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["licensor", "host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Kaikōura", + "extent": { + "spatial": { "bbox": [[172.8534169, -42.7942424, 174.3002884, -41.4927001]] }, + "temporal": { "interval": [["2016-12-01T11:00:00Z", "2017-01-05T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12207e3c797095ff919b97a68c5f2f6efee62def9853e5c5223b1792f41cb70fbc2e", + "file:size": 537370 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From b27bba9cd5fd731e406d0b6b7fb6408bad6ed420 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:18:50 +1300 Subject: [PATCH 241/309] feat: import Canterbury - Hawarden LiDAR 1m DEM (2015) (#251) --- .../hawarden_2015/dem_1m/2193/collection.json | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 stac/canterbury/hawarden_2015/dem_1m/2193/collection.json diff --git a/stac/canterbury/hawarden_2015/dem_1m/2193/collection.json b/stac/canterbury/hawarden_2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..1735d08e --- /dev/null +++ b/stac/canterbury/hawarden_2015/dem_1m/2193/collection.json @@ -0,0 +1,45 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSA6GBJRQSZ3K569B1EMBPE", + "title": "Canterbury - Hawarden LiDAR 1m DEM (2015)", + "description": "Digital Elevation Model within the Canterbury region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hawarden", + "extent": { + "spatial": { "bbox": [[172.6172892, -42.988754, 172.7356, -42.8587487]] }, + "temporal": { "interval": [["2015-03-31T11:00:00Z", "2015-03-31T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204bc4521c8027f45f64130b005578e1317e28ced6aa60fa2e8b7373a161b0fd25", + "file:size": 4652 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From d0d66f598e780456b1c7b4e036e898f045fafe10 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:19:04 +1300 Subject: [PATCH 242/309] feat: import Canterbury - Hawarden LiDAR 1m DSM (2015) (#250) --- .../hawarden_2015/dsm_1m/2193/collection.json | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 stac/canterbury/hawarden_2015/dsm_1m/2193/collection.json diff --git a/stac/canterbury/hawarden_2015/dsm_1m/2193/collection.json b/stac/canterbury/hawarden_2015/dsm_1m/2193/collection.json new file mode 100644 index 00000000..3f212515 --- /dev/null +++ b/stac/canterbury/hawarden_2015/dsm_1m/2193/collection.json @@ -0,0 +1,45 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSA6GBES7MBX0AHDZB2N2JP", + "title": "Canterbury - Hawarden LiDAR 1m DSM (2015)", + "description": "Digital Surface Model within the Canterbury region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hawarden", + "extent": { + "spatial": { "bbox": [[172.6172892, -42.988754, 172.7356, -42.8587487]] }, + "temporal": { "interval": [["2015-03-31T11:00:00Z", "2015-03-31T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122011edbc6c32de3e32a774fe15676fe3c31480726c05532dce6f632f26806304d9", + "file:size": 4652 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 0b88ec6716c24f74d714b7bf54f71ef0787eda1b Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:31:05 +1300 Subject: [PATCH 243/309] feat: import Nelson and Tasman LiDAR 1m DEM (2008-2015) (#249) Co-authored-by: Daniel Silk --- .../dem_1m/2193/collection.json | 23 +++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) rename stac/{nelson/nelson-and-tasman_2008-2015 => tasman/tasman_2008-2015}/dem_1m/2193/collection.json (93%) diff --git a/stac/nelson/nelson-and-tasman_2008-2015/dem_1m/2193/collection.json b/stac/tasman/tasman_2008-2015/dem_1m/2193/collection.json similarity index 93% rename from stac/nelson/nelson-and-tasman_2008-2015/dem_1m/2193/collection.json rename to stac/tasman/tasman_2008-2015/dem_1m/2193/collection.json index f4501286..cca78d58 100644 --- a/stac/nelson/nelson-and-tasman_2008-2015/dem_1m/2193/collection.json +++ b/stac/tasman/tasman_2008-2015/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N1T7QR9JYSTHY5Q5DXH1NX", + "id": "01HQS7QXBZMDN9Z89E6B7JR05P", "title": "Nelson and Tasman LiDAR 1m DEM (2008-2015)", - "description": "Digital Elevation Model within the Nelson and Tasman region captured in 2008-2015.", + "description": "Digital Elevation Model within the Nelson and Tasman regions captured in 2008-2015.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -133,8 +133,23 @@ { "name": "Tasman District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", "extent": { "spatial": { "bbox": [[172.2197649, -41.8218466, 173.6014303, -40.4594477]] }, "temporal": { "interval": [["2008-04-30T12:00:00Z", "2015-12-30T11:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220ddd347b83466a903c197a87b6d6ba39320239fd7ead5a7403dd40641eecc48b5", + "file:size": 507176 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From cd39acc66cb41ff37d1bb72e05495f1a1f61526f Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:31:16 +1300 Subject: [PATCH 244/309] feat: import Canterbury LiDAR 1m DEM (2020-2023) (#247) Co-authored-by: Daniel Silk --- .../dem_1m/2193/collection.json | 364 +++++++++++++++++- 1 file changed, 356 insertions(+), 8 deletions(-) rename stac/canterbury/{canterbury_2020 => canterbury_2020-2023}/dem_1m/2193/collection.json (56%) diff --git a/stac/canterbury/canterbury_2020/dem_1m/2193/collection.json b/stac/canterbury/canterbury_2020-2023/dem_1m/2193/collection.json similarity index 56% rename from stac/canterbury/canterbury_2020/dem_1m/2193/collection.json rename to stac/canterbury/canterbury_2020-2023/dem_1m/2193/collection.json index ff69cbf9..647e049d 100644 --- a/stac/canterbury/canterbury_2020/dem_1m/2193/collection.json +++ b/stac/canterbury/canterbury_2020-2023/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N478VBB30BD7FGD8VGTGCY", - "title": "Canterbury LiDAR 1m DEM (2020)", - "description": "Digital Elevation Model within the Canterbury region captured in 2020.", + "id": "01HQRJG560KWTF0Q8YKRY1ER69", + "title": "Canterbury LiDAR 1m DEM (2020-2023)", + "description": "Digital Elevation Model within the Canterbury region captured in 2020-2023.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -216,11 +216,35 @@ { "rel": "item", "href": "./BV26_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./BV26_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./BV26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0205.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0402.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0505.json", "type": "application/json" }, @@ -292,9 +316,72 @@ { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BW25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BX21_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./BX21_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./BX21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./BX22_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, @@ -330,6 +417,87 @@ { "rel": "item", "href": "./BX25_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BX25_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BX25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BY21_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./BY21_10000_0405.json", "type": "application/json" }, { "rel": "item", "href": "./BY21_10000_0502.json", "type": "application/json" }, @@ -370,13 +538,68 @@ { "rel": "item", "href": "./BY25_10000_0205.json", "type": "application/json" }, { "rel": "item", "href": "./BY25_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./BY25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0402.json", "type": "application/json" }, { "rel": "item", "href": "./BZ18_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./BZ18_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./BZ18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BZ18_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BZ18_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BZ18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./BZ19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./BZ19_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./BZ19_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BZ19_10000_0402.json", "type": "application/json" }, @@ -399,17 +622,74 @@ { "rel": "item", "href": "./BZ20_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BZ21_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BZ21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0202.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0204.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./CA19_10000_0101.json", "type": "application/json" }, @@ -428,10 +708,60 @@ { "rel": "item", "href": "./CA19_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./CA19_10000_0501.json", "type": "application/json" }, { "rel": "item", "href": "./CA19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./CB18_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./CB18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./CB18_10000_0204.json", "type": "application/json" }, { "rel": "item", "href": "./CB18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./CB18_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./CB19_10000_0101.json", "type": "application/json" }, @@ -442,15 +772,33 @@ { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./CB19_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" } + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0102.json", "type": "application/json" } ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", "extent": { - "spatial": { "bbox": [[170.8532618, -44.98452, 174.0724206, -41.8817418]] }, - "temporal": { "interval": [["2020-04-30T12:00:00Z", "2020-11-11T11:00:00Z"]] } - } + "spatial": { "bbox": [[170.1504557, -45.1015354, 174.0724206, -41.8817418]] }, + "temporal": { "interval": [["2020-04-30T12:00:00Z", "2023-02-03T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12206894526304b5f1e55ec5c1ed54ab4674bf461677189e138d7e43d26c6dca978a", + "file:size": 104846 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From f4e37bde1e974ff52b22005be48cf1ef83b61a2d Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:31:19 +1300 Subject: [PATCH 245/309] feat: import Canterbury LiDAR 1m DSM (2020-2023) (#241) Co-authored-by: Daniel Silk --- .../dsm_1m/2193/collection.json | 364 +++++++++++++++++- 1 file changed, 356 insertions(+), 8 deletions(-) rename stac/canterbury/{canterbury_2020 => canterbury_2020-2023}/dsm_1m/2193/collection.json (56%) diff --git a/stac/canterbury/canterbury_2020/dsm_1m/2193/collection.json b/stac/canterbury/canterbury_2020-2023/dsm_1m/2193/collection.json similarity index 56% rename from stac/canterbury/canterbury_2020/dsm_1m/2193/collection.json rename to stac/canterbury/canterbury_2020-2023/dsm_1m/2193/collection.json index 030c209c..12204499 100644 --- a/stac/canterbury/canterbury_2020/dsm_1m/2193/collection.json +++ b/stac/canterbury/canterbury_2020-2023/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6N47DF853R5B2C131YWR90M", - "title": "Canterbury LiDAR 1m DSM (2020)", - "description": "Digital Surface Model within the Canterbury region captured in 2020.", + "id": "01HQRJHF9AYZCGQEXM45GYH20X", + "title": "Canterbury LiDAR 1m DSM (2020-2023)", + "description": "Digital Surface Model within the Canterbury region captured in 2020-2023.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -216,11 +216,35 @@ { "rel": "item", "href": "./BV26_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./BV26_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./BV26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW20_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0205.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0402.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BW21_10000_0505.json", "type": "application/json" }, @@ -292,9 +316,72 @@ { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BW25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BX21_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./BX21_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./BX21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./BX22_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, @@ -330,6 +417,87 @@ { "rel": "item", "href": "./BX25_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BX25_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BX25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BY21_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./BY21_10000_0405.json", "type": "application/json" }, { "rel": "item", "href": "./BY21_10000_0502.json", "type": "application/json" }, @@ -370,13 +538,68 @@ { "rel": "item", "href": "./BY25_10000_0205.json", "type": "application/json" }, { "rel": "item", "href": "./BY25_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./BY25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0402.json", "type": "application/json" }, { "rel": "item", "href": "./BZ18_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./BZ18_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./BZ18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0502.json", "type": "application/json" }, { "rel": "item", "href": "./BZ18_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BZ18_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BZ18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./BZ19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./BZ19_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./BZ19_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BZ19_10000_0402.json", "type": "application/json" }, @@ -399,17 +622,74 @@ { "rel": "item", "href": "./BZ20_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BZ21_10000_0101.json", "type": "application/json" }, { "rel": "item", "href": "./BZ21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0202.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0204.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0302.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0404.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./CA18_10000_0505.json", "type": "application/json" }, { "rel": "item", "href": "./CA19_10000_0101.json", "type": "application/json" }, @@ -428,10 +708,60 @@ { "rel": "item", "href": "./CA19_10000_0403.json", "type": "application/json" }, { "rel": "item", "href": "./CA19_10000_0501.json", "type": "application/json" }, { "rel": "item", "href": "./CA19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./CB18_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./CB18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0203.json", "type": "application/json" }, { "rel": "item", "href": "./CB18_10000_0204.json", "type": "application/json" }, { "rel": "item", "href": "./CB18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./CB18_10000_0304.json", "type": "application/json" }, { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./CB19_10000_0101.json", "type": "application/json" }, @@ -442,15 +772,33 @@ { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./CB19_10000_0303.json", "type": "application/json" }, { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" } + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0102.json", "type": "application/json" } ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", "extent": { - "spatial": { "bbox": [[170.8532618, -44.98452, 174.0724206, -41.8817418]] }, - "temporal": { "interval": [["2020-04-30T12:00:00Z", "2020-11-11T11:00:00Z"]] } - } + "spatial": { "bbox": [[170.1504557, -45.1015354, 174.0724206, -41.8817418]] }, + "temporal": { "interval": [["2020-04-30T12:00:00Z", "2023-02-03T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220084c80e9fb9e75c2c5778c20aa1b72ec52f9d359c060cccbc4a1ebf3b2097c24", + "file:size": 107330 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From f16695678047bbbd1b3b75897f10339997a31980 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:31:52 +1300 Subject: [PATCH 246/309] =?UTF-8?q?feat:=20import=20Canterbury=20-=20Kaik?= =?UTF-8?q?=C5=8Dura=20LiDAR=201m=20DEM=20(2012)=20(#253)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kaikoura_2012/dem_1m/2193/collection.json | 85 +++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 stac/canterbury/kaikoura_2012/dem_1m/2193/collection.json diff --git a/stac/canterbury/kaikoura_2012/dem_1m/2193/collection.json b/stac/canterbury/kaikoura_2012/dem_1m/2193/collection.json new file mode 100644 index 00000000..66ebc85e --- /dev/null +++ b/stac/canterbury/kaikoura_2012/dem_1m/2193/collection.json @@ -0,0 +1,85 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSAYZWQ4MJJMTB1D8YYRXH9", + "title": "Canterbury - Kaikōura LiDAR 1m DEM (2012)", + "description": "Digital Elevation Model within the Canterbury region captured in 2012.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Kaikōura", + "extent": { + "spatial": { "bbox": [[173.2056449, -42.9240384, 174.0724206, -41.9465794]] }, + "temporal": { "interval": [["2012-07-09T12:00:00Z", "2012-07-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122064a47d80d5efaa0ea4c55108a8d463692315b45e4ffc7d7bc01aac9d01903913", + "file:size": 15629 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 70a232584c1006be719856fa95d09a250f6aacba Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:32:07 +1300 Subject: [PATCH 247/309] =?UTF-8?q?feat:=20import=20Canterbury=20-=20Kaik?= =?UTF-8?q?=C5=8Dura=20LiDAR=201m=20DSM=20(2012)=20(#252)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kaikoura_2012/dsm_1m/2193/collection.json | 85 +++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 stac/canterbury/kaikoura_2012/dsm_1m/2193/collection.json diff --git a/stac/canterbury/kaikoura_2012/dsm_1m/2193/collection.json b/stac/canterbury/kaikoura_2012/dsm_1m/2193/collection.json new file mode 100644 index 00000000..3de4ef9f --- /dev/null +++ b/stac/canterbury/kaikoura_2012/dsm_1m/2193/collection.json @@ -0,0 +1,85 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSAY20KENXSZ9MNMTQ2NMDE", + "title": "Canterbury - Kaikōura LiDAR 1m DSM (2012)", + "description": "Digital Surface Model within the Canterbury region captured in 2012.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Kaikōura", + "extent": { + "spatial": { "bbox": [[173.2056449, -42.9240384, 174.0724206, -41.9465794]] }, + "temporal": { "interval": [["2012-07-09T12:00:00Z", "2012-07-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12200ed534b48a8878f47415308f410e282c6a597d77c800d3c3a0eb115a80ed046f", + "file:size": 17391 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From a772a9bb33a75b2b08f842cdc686e01a0ba75fa4 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:57:21 +1300 Subject: [PATCH 248/309] feat: import Marlborough - Blenheim LiDAR 1m DEM (2014) (#126) Co-authored-by: Daniel Silk --- .../blenheim_2014/dem_1m/2193/collection.json | 28 +++++++++++++++---- 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/stac/marlborough/blenheim_2014/dem_1m/2193/collection.json b/stac/marlborough/blenheim_2014/dem_1m/2193/collection.json index 3b05b324..c07a5050 100644 --- a/stac/marlborough/blenheim_2014/dem_1m/2193/collection.json +++ b/stac/marlborough/blenheim_2014/dem_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MV683MK291ZCVSRD8FH46T", + "id": "01HQMAZNDJHXT7JNQ5JMADQMPQ", "title": "Marlborough - Blenheim LiDAR 1m DEM (2014)", - "description": "Digital Elevation Model within the Marlborough - Blenheim region captured in 2014.", + "description": "Digital Elevation Model within the Marlborough region captured in 2014.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -48,13 +48,29 @@ { "rel": "item", "href": "./BR29_10000_0303.json", "type": "application/json" } ], "providers": [ - { "name": "\"NZ Aerial Mapping", "roles": ["producer"] }, - { "name": "Aerial Surveys\"", "roles": ["producer"] }, + { "name": "NZ Aerial Mapping", "roles": ["producer"] }, + { "name": "AAM NZ", "roles": ["producer"] }, { "name": "Marlborough District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "marlborough", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Blenheim", "extent": { "spatial": { "bbox": [[173.5463195, -41.6882374, 174.18235, -41.3624698]] }, "temporal": { "interval": [["2014-02-22T11:00:00Z", "2014-05-02T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a41bda26e7b4f340e1844ae6dd5f26175099c1dd73fb1b38aa4752fe522487fe", + "file:size": 24066 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 4d0a39c81bcbaef2712e8e41c9caae487bcbb3b5 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:57:26 +1300 Subject: [PATCH 249/309] feat: import Marlborough - Blenheim LiDAR 1m DSM (2014) (#125) Co-authored-by: Daniel Silk --- .../blenheim_2014/dsm_1m/2193/collection.json | 28 +++++++++++++++---- 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/stac/marlborough/blenheim_2014/dsm_1m/2193/collection.json b/stac/marlborough/blenheim_2014/dsm_1m/2193/collection.json index bb4b4f22..f47fb826 100644 --- a/stac/marlborough/blenheim_2014/dsm_1m/2193/collection.json +++ b/stac/marlborough/blenheim_2014/dsm_1m/2193/collection.json @@ -1,14 +1,14 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01H6MV67X3M75KRCZ965EKH21B", + "id": "01HQMAZN2MBB9A4BR5WGVMCD7T", "title": "Marlborough - Blenheim LiDAR 1m DSM (2014)", - "description": "Digital Surface Model within the Marlborough - Blenheim region captured in 2014.", + "description": "Digital Surface Model within the Marlborough region captured in 2014.", "license": "CC-BY-4.0", "links": [ { "rel": "root", - "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, @@ -48,13 +48,29 @@ { "rel": "item", "href": "./BR29_10000_0303.json", "type": "application/json" } ], "providers": [ - { "name": "\"NZ Aerial Mapping", "roles": ["producer"] }, - { "name": "Aerial Surveys\"", "roles": ["producer"] }, + { "name": "NZ Aerial Mapping", "roles": ["producer"] }, + { "name": "AAM NZ", "roles": ["producer"] }, { "name": "Marlborough District Council", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "marlborough", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Blenheim", "extent": { "spatial": { "bbox": [[173.5463195, -41.6882374, 174.18235, -41.3624698]] }, "temporal": { "interval": [["2014-02-22T11:00:00Z", "2014-05-02T12:00:00Z"]] } - } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122006bfdcca7564a57e291866018bac988a70c134c0c952b1ef282a717415362a76", + "file:size": 21276 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] } From 1248b23bce184731937ea7ae990c25931dd46dfd Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:59:04 +1300 Subject: [PATCH 250/309] feat: import Canterbury - Timaru Rivers LiDAR 1m DSM (2014) (#254) --- .../dsm_1m/2193/collection.json | 77 +++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 stac/canterbury/timaru-rivers_2014/dsm_1m/2193/collection.json diff --git a/stac/canterbury/timaru-rivers_2014/dsm_1m/2193/collection.json b/stac/canterbury/timaru-rivers_2014/dsm_1m/2193/collection.json new file mode 100644 index 00000000..a2234f2e --- /dev/null +++ b/stac/canterbury/timaru-rivers_2014/dsm_1m/2193/collection.json @@ -0,0 +1,77 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSBQZA7WGW8Y9MX09EDZAMJ", + "title": "Canterbury - Timaru Rivers LiDAR 1m DSM (2014)", + "description": "Digital Surface Model within the Canterbury region captured in 2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0401.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Timaru Rivers", + "extent": { + "spatial": { "bbox": [[171.1055033, -44.3393238, 171.5311798, -43.8821696]] }, + "temporal": { "interval": [["2014-07-06T12:00:00Z", "2014-08-03T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12203fc17c4236b679b89b40b0f4a1986b3f543a6192abde77384911c9b73d874dc8", + "file:size": 7391 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 1fa06e9b1da91d16fb96263c735cbd1f6b7df9a4 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:59:09 +1300 Subject: [PATCH 251/309] feat: import Canterbury - Timaru Rivers LiDAR 1m DEM (2014) (#255) --- .../dem_1m/2193/collection.json | 77 +++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 stac/canterbury/timaru-rivers_2014/dem_1m/2193/collection.json diff --git a/stac/canterbury/timaru-rivers_2014/dem_1m/2193/collection.json b/stac/canterbury/timaru-rivers_2014/dem_1m/2193/collection.json new file mode 100644 index 00000000..f0817700 --- /dev/null +++ b/stac/canterbury/timaru-rivers_2014/dem_1m/2193/collection.json @@ -0,0 +1,77 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSBRG4DAHXQZHSZ85MEHTVQ", + "title": "Canterbury - Timaru Rivers LiDAR 1m DEM (2014)", + "description": "Digital Elevation Model within the Canterbury region captured in 2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0401.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Timaru Rivers", + "extent": { + "spatial": { "bbox": [[171.1055033, -44.3393238, 171.5311798, -43.8821696]] }, + "temporal": { "interval": [["2014-07-06T12:00:00Z", "2014-08-03T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12202fad12a26fe84c99f847508f11e3aca46f0f8d05e1cd9f2ec32a93639c913b06", + "file:size": 5598 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From c5d490488954bda44ea882154493187260961629 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:59:47 +1300 Subject: [PATCH 252/309] feat: import Canterbury - Hurunui Rivers LiDAR 1m DEM (2013) (#257) --- .../dem_1m/2193/collection.json | 94 +++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 stac/canterbury/hurunui-rivers_2013/dem_1m/2193/collection.json diff --git a/stac/canterbury/hurunui-rivers_2013/dem_1m/2193/collection.json b/stac/canterbury/hurunui-rivers_2013/dem_1m/2193/collection.json new file mode 100644 index 00000000..b8eac04d --- /dev/null +++ b/stac/canterbury/hurunui-rivers_2013/dem_1m/2193/collection.json @@ -0,0 +1,94 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSC6G0451BBQS5TT5WYQRE7", + "title": "Canterbury - Hurunui Rivers LiDAR 1m DEM (2013)", + "description": "Digital Elevation Model within the Canterbury region captured in 2013.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BU23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hurunui Rivers", + "extent": { + "spatial": { "bbox": [[172.500061, -42.9241895, 173.3815101, -42.4698929]] }, + "temporal": { "interval": [["2013-05-11T12:00:00Z", "2013-05-29T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204ffae81bb77943dfe3560f765a6f1df0741925ce676aba622d242c8ce1c68b73", + "file:size": 18982 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 63f01f6938d6ffdc616b8613152be5506326c5b3 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:59:51 +1300 Subject: [PATCH 253/309] feat: import Canterbury - Hurunui Rivers LiDAR 1m DSM (2013) (#256) --- .../dsm_1m/2193/collection.json | 94 +++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 stac/canterbury/hurunui-rivers_2013/dsm_1m/2193/collection.json diff --git a/stac/canterbury/hurunui-rivers_2013/dsm_1m/2193/collection.json b/stac/canterbury/hurunui-rivers_2013/dsm_1m/2193/collection.json new file mode 100644 index 00000000..4274160f --- /dev/null +++ b/stac/canterbury/hurunui-rivers_2013/dsm_1m/2193/collection.json @@ -0,0 +1,94 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSC72NE9Y0BE4AE0C1Z355G", + "title": "Canterbury - Hurunui Rivers LiDAR 1m DSM (2013)", + "description": "Digital Surface Model within the Canterbury region captured in 2013.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BU23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hurunui Rivers", + "extent": { + "spatial": { "bbox": [[172.500061, -42.9241895, 173.3815101, -42.4698929]] }, + "temporal": { "interval": [["2013-05-11T12:00:00Z", "2013-05-29T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12205a5faa0702b16bbfe8182a2036981110f73da7f2a40fbd9c00c5559170dace33", + "file:size": 23465 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From ca0082d34b569b2b0ed7edf044a2a82024d8b5b7 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 18:21:35 +1300 Subject: [PATCH 254/309] feat: import Wellington LiDAR 1m DSM (2013-2014) (#270) --- .../dsm_1m/2193/collection.json | 340 ++++++++++++++++++ 1 file changed, 340 insertions(+) create mode 100644 stac/wellington/wellington_2012-2014/dsm_1m/2193/collection.json diff --git a/stac/wellington/wellington_2012-2014/dsm_1m/2193/collection.json b/stac/wellington/wellington_2012-2014/dsm_1m/2193/collection.json new file mode 100644 index 00000000..b981b4d9 --- /dev/null +++ b/stac/wellington/wellington_2012-2014/dsm_1m/2193/collection.json @@ -0,0 +1,340 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSF0RZ3PEA164YN0VCV66PV", + "title": "Wellington LiDAR 1m DSM (2013-2014)", + "description": "Digital Surface Model within the Wellington region captured in 2013-2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Greater Wellington Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[174.5749311, -41.6707333, 176.3820697, -40.6067447]] }, + "temporal": { "interval": [["2012-12-31T11:00:00Z", "2014-12-30T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220fb2aad7546d0638fe27f3e18a4c3a452649c2065fe75c0faa5799da3e09bea79", + "file:size": 495234 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 4de00d53e6dafbad44f8bd26bf2c5906715faffc Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 18:21:46 +1300 Subject: [PATCH 255/309] feat: import Wellington LiDAR 1m DEM (2013-2014) (#269) --- .../dem_1m/2193/collection.json | 340 ++++++++++++++++++ 1 file changed, 340 insertions(+) create mode 100644 stac/wellington/wellington_2012-2014/dem_1m/2193/collection.json diff --git a/stac/wellington/wellington_2012-2014/dem_1m/2193/collection.json b/stac/wellington/wellington_2012-2014/dem_1m/2193/collection.json new file mode 100644 index 00000000..c527ef26 --- /dev/null +++ b/stac/wellington/wellington_2012-2014/dem_1m/2193/collection.json @@ -0,0 +1,340 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSEZ6S5JQWAAZA8HE4GB441", + "title": "Wellington LiDAR 1m DEM (2013-2014)", + "description": "Digital Elevation Model within the Wellington region captured in 2013-2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Greater Wellington Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[174.5749311, -41.6707333, 176.3820697, -40.6067447]] }, + "temporal": { "interval": [["2012-12-31T11:00:00Z", "2014-12-30T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12209d6914063fb75a0fc731011aab2e20941f6aa42353d2475d9bbdda67d6e39c33", + "file:size": 495527 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 85bab7cd135fb6167ae6aa032540ee08efb0a5d7 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 18:22:14 +1300 Subject: [PATCH 256/309] feat: import Canterbury - Cheviot LiDAR 1m DSM (2015) (#261) --- .../cheviot_2015/dsm_1m/2193/collection.json | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 stac/canterbury/cheviot_2015/dsm_1m/2193/collection.json diff --git a/stac/canterbury/cheviot_2015/dsm_1m/2193/collection.json b/stac/canterbury/cheviot_2015/dsm_1m/2193/collection.json new file mode 100644 index 00000000..0264ed55 --- /dev/null +++ b/stac/canterbury/cheviot_2015/dsm_1m/2193/collection.json @@ -0,0 +1,46 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSCYC10HABGXCQP9SADPS0V", + "title": "Canterbury - Cheviot LiDAR 1m DSM (2015)", + "description": "Digital Surface Model within the Canterbury region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Cheviot", + "extent": { + "spatial": { "bbox": [[173.1465831, -42.8592009, 173.3231548, -42.7292537]] }, + "temporal": { "interval": [["2015-03-31T11:00:00Z", "2015-03-31T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220f7ed46f0b17ae95eb5fa52559c46fb00e23c235f5dc7688fd22377eebe000478", + "file:size": 3183 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From a70e29cf5cf44f08c4b26655c741a135d90e37f3 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 18:22:46 +1300 Subject: [PATCH 257/309] feat: import Bay of Plenty - Tauranga and Coast LiDAR 1m DEM (2015) (#265) --- .../dem_1m/2193/collection.json | 105 ++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 stac/bay-of-plenty/tauranga-and-coast_2015/dem_1m/2193/collection.json diff --git a/stac/bay-of-plenty/tauranga-and-coast_2015/dem_1m/2193/collection.json b/stac/bay-of-plenty/tauranga-and-coast_2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..0d9593d7 --- /dev/null +++ b/stac/bay-of-plenty/tauranga-and-coast_2015/dem_1m/2193/collection.json @@ -0,0 +1,105 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSEYZDWC9CPBH9AAXS2XZQF", + "title": "Bay of Plenty - Tauranga and Coast LiDAR 1m DEM (2015)", + "description": "Digital Elevation Model within the Bay of Plenty region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0304.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "BOPLASS", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Tauranga and Coast", + "extent": { + "spatial": { "bbox": [[175.8533819, -38.0554072, 177.4570272, -37.3721055]] }, + "temporal": { "interval": [["2015-01-04T11:00:00Z", "2015-11-07T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204eff897c50c4fcf45b787251760a6a08f95819b70fafffa497231ca50db877e8", + "file:size": 16098 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 25d2462a5ae5d2a1f6778d20429576f6869e50a1 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 18:22:48 +1300 Subject: [PATCH 258/309] feat: import Bay of Plenty - Tauranga and Coast LiDAR 1m DSM (2015) (#266) --- .../dsm_1m/2193/collection.json | 105 ++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 stac/bay-of-plenty/tauranga-and-coast_2015/dsm_1m/2193/collection.json diff --git a/stac/bay-of-plenty/tauranga-and-coast_2015/dsm_1m/2193/collection.json b/stac/bay-of-plenty/tauranga-and-coast_2015/dsm_1m/2193/collection.json new file mode 100644 index 00000000..2bcba5fa --- /dev/null +++ b/stac/bay-of-plenty/tauranga-and-coast_2015/dsm_1m/2193/collection.json @@ -0,0 +1,105 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSF246VWTN6FBQ7REA7ANBY", + "title": "Bay of Plenty - Tauranga and Coast LiDAR 1m DSM (2015)", + "description": "Digital Surface Model within the Bay of Plenty region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0304.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "BOPLASS", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Tauranga and Coast", + "extent": { + "spatial": { "bbox": [[175.8533819, -38.0554072, 177.4570272, -37.3721055]] }, + "temporal": { "interval": [["2015-01-04T11:00:00Z", "2015-11-07T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a5d32937831ce8916bc559f388f5d5d8f68688adbb5ffd9bfdab4568dcacb5d5", + "file:size": 17492 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 62129dce138201a7b4465561593c650442ba2bca Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 18:23:19 +1300 Subject: [PATCH 259/309] feat: import Canterbury - Christchurch and Selwyn LiDAR 1m DEM (2015) (#268) --- .../dem_1m/2193/collection.json | 131 ++++++++++++++++++ 1 file changed, 131 insertions(+) create mode 100644 stac/canterbury/christchurch-and-selwyn_2015/dem_1m/2193/collection.json diff --git a/stac/canterbury/christchurch-and-selwyn_2015/dem_1m/2193/collection.json b/stac/canterbury/christchurch-and-selwyn_2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..9fda852a --- /dev/null +++ b/stac/canterbury/christchurch-and-selwyn_2015/dem_1m/2193/collection.json @@ -0,0 +1,131 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSF5QTCS18CM9GQMGQXMSE3", + "title": "Canterbury - Christchurch and Selwyn LiDAR 1m DEM (2015)", + "description": "Digital Elevation Model within the Canterbury region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Christchurch and Selwyn", + "extent": { + "spatial": { "bbox": [[171.6032562, -43.959082, 172.8513887, -43.2425921]] }, + "temporal": { "interval": [["2015-10-04T11:00:00Z", "2015-10-06T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c78081a9dbf7838e74ce4d541550576de5b10a106389361d79ceb8b5b32b9680", + "file:size": 7443 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 888a35942426e5f5941dccb229f7040e7d619386 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 18:23:21 +1300 Subject: [PATCH 260/309] feat: import Canterbury - Christchurch and Selwyn LiDAR 1m DSM (2015) (#267) --- .../dsm_1m/2193/collection.json | 131 ++++++++++++++++++ 1 file changed, 131 insertions(+) create mode 100644 stac/canterbury/christchurch-and-selwyn_2015/dsm_1m/2193/collection.json diff --git a/stac/canterbury/christchurch-and-selwyn_2015/dsm_1m/2193/collection.json b/stac/canterbury/christchurch-and-selwyn_2015/dsm_1m/2193/collection.json new file mode 100644 index 00000000..e6d6bfe0 --- /dev/null +++ b/stac/canterbury/christchurch-and-selwyn_2015/dsm_1m/2193/collection.json @@ -0,0 +1,131 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSFNHQNWZ177Q6VBDKYTKHY", + "title": "Canterbury - Christchurch and Selwyn LiDAR 1m DSM (2015)", + "description": "Digital Surface Model within the Canterbury region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Christchurch and Selwyn", + "extent": { + "spatial": { "bbox": [[171.6032562, -43.959082, 172.8513887, -43.2425921]] }, + "temporal": { "interval": [["2015-10-04T11:00:00Z", "2015-10-06T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c78081a9dbf7838e74ce4d541550576de5b10a106389361d79ceb8b5b32b9680", + "file:size": 7443 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 2b4d80bb27345c66dbeed0264ed1f0659aa05cd4 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 18:23:49 +1300 Subject: [PATCH 261/309] feat: import Waikato - West Coast and Hauraki Plains LiDAR 1m DSM (2015) (#264) --- .../dsm_1m/2193/collection.json | 127 ++++++++++++++++++ 1 file changed, 127 insertions(+) create mode 100644 stac/waikato/west-coast-and-hauraki-plains_2015/dsm_1m/2193/collection.json diff --git a/stac/waikato/west-coast-and-hauraki-plains_2015/dsm_1m/2193/collection.json b/stac/waikato/west-coast-and-hauraki-plains_2015/dsm_1m/2193/collection.json new file mode 100644 index 00000000..07ad26a1 --- /dev/null +++ b/stac/waikato/west-coast-and-hauraki-plains_2015/dsm_1m/2193/collection.json @@ -0,0 +1,127 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSDZCVJS6E3A2WCTD8N715G", + "title": "Waikato - West Coast and Hauraki Plains LiDAR 1m DSM (2015)", + "description": "Digital Surface Model within the Waikato region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "West Coast and Hauraki Plains", + "extent": { + "spatial": { "bbox": [[174.5702773, -38.7625134, 175.7447982, -36.9977812]] }, + "temporal": { "interval": [["2015-02-06T11:00:00Z", "2015-02-28T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220351a84fe7a2184031b8f251c871bbf2355cb071d8c1074100d75d889ca779d17", + "file:size": 606232 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From a3505d0bdb9047b5bd444a51d0c0b29b6e838eb1 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 18:23:51 +1300 Subject: [PATCH 262/309] feat: import Waikato - West Coast and Hauraki Plains LiDAR 1m DEM (2015) (#263) --- .../dem_1m/2193/collection.json | 127 ++++++++++++++++++ 1 file changed, 127 insertions(+) create mode 100644 stac/waikato/west-coast-and-hauraki-plains_2015/dem_1m/2193/collection.json diff --git a/stac/waikato/west-coast-and-hauraki-plains_2015/dem_1m/2193/collection.json b/stac/waikato/west-coast-and-hauraki-plains_2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..e2a06034 --- /dev/null +++ b/stac/waikato/west-coast-and-hauraki-plains_2015/dem_1m/2193/collection.json @@ -0,0 +1,127 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSDXDNFABY8PT7WFNHZGG78", + "title": "Waikato - West Coast and Hauraki Plains LiDAR 1m DEM (2015)", + "description": "Digital Elevation Model within the Waikato region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "West Coast and Hauraki Plains", + "extent": { + "spatial": { "bbox": [[174.5702773, -38.7625134, 175.7447982, -36.9977812]] }, + "temporal": { "interval": [["2015-02-06T11:00:00Z", "2015-02-28T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220d055449f86286e7ff4123e373de934c4810a917d2584a26a8ca60a1923aca3f2", + "file:size": 602767 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 345287c2ee2e57480258f4a88bbdfe4347e20615 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 18:24:34 +1300 Subject: [PATCH 263/309] feat: import Canterbury - Rangiora LiDAR 1m DEM (2014) (#262) --- .../rangiora_2014/dem_1m/2193/collection.json | 73 +++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 stac/canterbury/rangiora_2014/dem_1m/2193/collection.json diff --git a/stac/canterbury/rangiora_2014/dem_1m/2193/collection.json b/stac/canterbury/rangiora_2014/dem_1m/2193/collection.json new file mode 100644 index 00000000..b34a200b --- /dev/null +++ b/stac/canterbury/rangiora_2014/dem_1m/2193/collection.json @@ -0,0 +1,73 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSD25FVDMA2GQV4AYB96ESZ", + "title": "Canterbury - Rangiora LiDAR 1m DEM (2014)", + "description": "Digital Elevation Model within the Canterbury region captured in 2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waimakariri District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Rangiora", + "extent": { + "spatial": { "bbox": [[172.1408607, -43.5070798, 172.7932703, -43.1821917]] }, + "temporal": { "interval": [["2014-03-13T11:00:00Z", "2014-06-22T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220bc4fe6ce1d17af21db343d758f951200b256e457089a6c38c4b7e70ce5d9ce78", + "file:size": 4437 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 30e87dc7b98c03e19ad660927e33688b123f3daf Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 18:24:37 +1300 Subject: [PATCH 264/309] feat: import Canterbury - Rangiora LiDAR 1m DSM (2014) (#260) --- .../rangiora_2014/dsm_1m/2193/collection.json | 73 +++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 stac/canterbury/rangiora_2014/dsm_1m/2193/collection.json diff --git a/stac/canterbury/rangiora_2014/dsm_1m/2193/collection.json b/stac/canterbury/rangiora_2014/dsm_1m/2193/collection.json new file mode 100644 index 00000000..f2269f14 --- /dev/null +++ b/stac/canterbury/rangiora_2014/dsm_1m/2193/collection.json @@ -0,0 +1,73 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSCTZ39VYA7MB0KJ2NZHS9W", + "title": "Canterbury - Rangiora LiDAR 1m DSM (2014)", + "description": "Digital Surface Model within the Canterbury region captured in 2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waimakariri District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Rangiora", + "extent": { + "spatial": { "bbox": [[172.1408607, -43.5070798, 172.7932703, -43.1821917]] }, + "temporal": { "interval": [["2014-03-13T11:00:00Z", "2014-06-22T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122058366fdf40e712341a5941166f57df64f11e40d5af35e427bf5ad5834d20d533", + "file:size": 4345 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From b249612e56bb6c15d6133bcd3aee71da42a2df1d Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 18:24:40 +1300 Subject: [PATCH 265/309] feat: import Canterbury - Amberley LiDAR 1m DSM (2012) (#259) --- .../amberley_2012/dsm_1m/2193/collection.json | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 stac/canterbury/amberley_2012/dsm_1m/2193/collection.json diff --git a/stac/canterbury/amberley_2012/dsm_1m/2193/collection.json b/stac/canterbury/amberley_2012/dsm_1m/2193/collection.json new file mode 100644 index 00000000..53828e25 --- /dev/null +++ b/stac/canterbury/amberley_2012/dsm_1m/2193/collection.json @@ -0,0 +1,54 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSCT0PMTJ1JAPTB6YP3E0RR", + "title": "Canterbury - Amberley LiDAR 1m DSM (2012)", + "description": "Digital Surface Model within the Canterbury region captured in 2012.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Amberley", + "extent": { + "spatial": { "bbox": [[172.6156695, -43.3130477, 172.8524917, -42.9886025]] }, + "temporal": { "interval": [["2012-07-09T12:00:00Z", "2012-07-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220cfa99f16ebaecdb5f68a1e7c48b80c34d5b799b1fe1c6fe51ec8944ece8115d2", + "file:size": 5146 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From ffca13de5fdd49cb5de1619573d9c5e44fed2401 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 18:24:44 +1300 Subject: [PATCH 266/309] feat: import Canterbury - Amberley LiDAR 1m DEM (2012) (#258) --- .../amberley_2012/dem_1m/2193/collection.json | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 stac/canterbury/amberley_2012/dem_1m/2193/collection.json diff --git a/stac/canterbury/amberley_2012/dem_1m/2193/collection.json b/stac/canterbury/amberley_2012/dem_1m/2193/collection.json new file mode 100644 index 00000000..d400cbad --- /dev/null +++ b/stac/canterbury/amberley_2012/dem_1m/2193/collection.json @@ -0,0 +1,54 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSCNYEGTZY2AB66M49HJMJQ", + "title": "Canterbury - Amberley LiDAR 1m DEM (2012)", + "description": "Digital Elevation Model within the Canterbury region captured in 2012.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Amberley", + "extent": { + "spatial": { "bbox": [[172.6156695, -43.3130477, 172.8524917, -42.9886025]] }, + "temporal": { "interval": [["2012-07-09T12:00:00Z", "2012-07-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12203a876232fc54a4f3b900ddcd5b77ceea0742f1a43719c42823557c59d0f9ced1", + "file:size": 5354 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From c3057eace917ba10422f940030e5671a5ca5488d Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Fri, 1 Mar 2024 09:54:48 +1300 Subject: [PATCH 267/309] fix: rename path for Wellington 2013-2014 (#271) The start date is 01-01-2013 in NZST, the UTC date was used to generate the path so needs to be corrected from 2012 to 2013. --- .../dem_1m/2193/collection.json | 0 .../dsm_1m/2193/collection.json | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename stac/wellington/{wellington_2012-2014 => wellington_2013-2014}/dem_1m/2193/collection.json (100%) rename stac/wellington/{wellington_2012-2014 => wellington_2013-2014}/dsm_1m/2193/collection.json (100%) diff --git a/stac/wellington/wellington_2012-2014/dem_1m/2193/collection.json b/stac/wellington/wellington_2013-2014/dem_1m/2193/collection.json similarity index 100% rename from stac/wellington/wellington_2012-2014/dem_1m/2193/collection.json rename to stac/wellington/wellington_2013-2014/dem_1m/2193/collection.json diff --git a/stac/wellington/wellington_2012-2014/dsm_1m/2193/collection.json b/stac/wellington/wellington_2013-2014/dsm_1m/2193/collection.json similarity index 100% rename from stac/wellington/wellington_2012-2014/dsm_1m/2193/collection.json rename to stac/wellington/wellington_2013-2014/dsm_1m/2193/collection.json From 3e34c51b61d74bc14c900d1350bee47929eede15 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Fri, 1 Mar 2024 15:47:51 +1300 Subject: [PATCH 268/309] feat: import West Coast LiDAR 1m DEM (2020-2022) (#273) --- .../dem_1m/2193/collection.json | 33 ++++++++++++++++--- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/stac/west-coast/west-coast_2020-2022/dem_1m/2193/collection.json b/stac/west-coast/west-coast_2020-2022/dem_1m/2193/collection.json index c548814a..774aa95d 100644 --- a/stac/west-coast/west-coast_2020-2022/dem_1m/2193/collection.json +++ b/stac/west-coast/west-coast_2020-2022/dem_1m/2193/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01HQPFNVQXKAFY9REJGE82AKZ9", + "id": "01HQVVCM7AR4J34QDDYVA54Q6D", "title": "West Coast LiDAR 1m DEM (2020-2022)", "description": "Digital Elevation Model within the West Coast region captured in 2020-2022.", "license": "CC-BY-4.0", @@ -12,6 +12,30 @@ "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BS19_10000_0205.json", "type": "application/json" }, { "rel": "item", "href": "./BS19_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./BS19_10000_0405.json", "type": "application/json" }, @@ -21,6 +45,7 @@ { "rel": "item", "href": "./BS20_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BS20_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./BS20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0105.json", "type": "application/json" }, { "rel": "item", "href": "./BS20_10000_0201.json", "type": "application/json" }, { "rel": "item", "href": "./BS20_10000_0202.json", "type": "application/json" }, { "rel": "item", "href": "./BS20_10000_0203.json", "type": "application/json" }, @@ -278,7 +303,7 @@ "linz:region": "west-coast", "linz:security_classification": "unclassified", "extent": { - "spatial": { "bbox": [[168.0352097, -44.3199292, 171.6419363, -41.8108859]] }, + "spatial": { "bbox": [[168.0352097, -44.3199292, 171.9916607, -41.5564186]] }, "temporal": { "interval": [["2020-05-15T12:00:00Z", "2022-02-13T11:00:00Z"]] } }, "assets": { @@ -287,8 +312,8 @@ "title": "Capture area", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "1220a8ffb8a7f3adf42dbac72d38b802580327ae2b5fc7b4b54eab694f19c3cf42d0", - "file:size": 43499 + "file:checksum": "1220200b1c9f054cc01e3d8d1e8d5d5e8007a478102eb0010c6536aaa227192f54fe", + "file:size": 62963 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From 8e1bcd154208280c73da5a0edf65d07c65a06ed6 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Fri, 1 Mar 2024 15:48:14 +1300 Subject: [PATCH 269/309] feat: import West Coast LiDAR 1m DSM (2020-2022) (#272) --- .../dsm_1m/2193/collection.json | 33 ++++++++++++++++--- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/stac/west-coast/west-coast_2020-2022/dsm_1m/2193/collection.json b/stac/west-coast/west-coast_2020-2022/dsm_1m/2193/collection.json index 30b92853..9681a5e3 100644 --- a/stac/west-coast/west-coast_2020-2022/dsm_1m/2193/collection.json +++ b/stac/west-coast/west-coast_2020-2022/dsm_1m/2193/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01HQPFPN0JN80JMY68GRFCNYPN", + "id": "01HQVVCN98JY46D6DF254SZ3DW", "title": "West Coast LiDAR 1m DSM (2020-2022)", "description": "Digital Surface Model within the West Coast region captured in 2020-2022.", "license": "CC-BY-4.0", @@ -12,6 +12,30 @@ "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BS19_10000_0205.json", "type": "application/json" }, { "rel": "item", "href": "./BS19_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./BS19_10000_0405.json", "type": "application/json" }, @@ -21,6 +45,7 @@ { "rel": "item", "href": "./BS20_10000_0102.json", "type": "application/json" }, { "rel": "item", "href": "./BS20_10000_0103.json", "type": "application/json" }, { "rel": "item", "href": "./BS20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0105.json", "type": "application/json" }, { "rel": "item", "href": "./BS20_10000_0201.json", "type": "application/json" }, { "rel": "item", "href": "./BS20_10000_0202.json", "type": "application/json" }, { "rel": "item", "href": "./BS20_10000_0203.json", "type": "application/json" }, @@ -278,7 +303,7 @@ "linz:region": "west-coast", "linz:security_classification": "unclassified", "extent": { - "spatial": { "bbox": [[168.0352097, -44.3199292, 171.6419363, -41.8108859]] }, + "spatial": { "bbox": [[168.0352097, -44.3199292, 171.9916607, -41.5564186]] }, "temporal": { "interval": [["2020-05-15T12:00:00Z", "2022-02-13T11:00:00Z"]] } }, "assets": { @@ -287,8 +312,8 @@ "title": "Capture area", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "1220afe8abd9d186fb402561844f22b56d312e74eb6357ccd6cf245690a0a10fe604", - "file:size": 45797 + "file:checksum": "122053407ed63fd6ec9b109dcfc337167f89c5bf10be3df000f49ec3a7fa1ba9075d", + "file:size": 65977 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From 490c836ebd03bd414b28b7b9108b676e7d108a74 Mon Sep 17 00:00:00 2001 From: Daniel Silk Date: Tue, 5 Mar 2024 13:33:15 +1300 Subject: [PATCH 270/309] Add naming.md to cover naming conventions for Elevation Datasets TDE-955 (#114) Adds a document regarding Elevation Dataset naming conventions in S3. --- docs/naming.md | 154 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 154 insertions(+) create mode 100644 docs/naming.md diff --git a/docs/naming.md b/docs/naming.md new file mode 100644 index 00000000..d78366f6 --- /dev/null +++ b/docs/naming.md @@ -0,0 +1,154 @@ +# Elevation Dataset Naming Conventions + +Elevation dataset titles and S3 paths are constructed from metadata about each elevation survey so that they will be consistent and human readable. Elevation is stored according to the majority region that each dataset covers. + +## Elevation Dataset Titles + +The elevation dataset title is constructed from metadata that is entered when an elevation dataset is processed. + +``` +[ - ?] LiDAR m ([-?])[ - ?] +``` + +which can be broken down as: + +- the main `` that the dataset covers +- then if it exists, the `` is used +- then "LiDAR" +- then `` (which is always in metres) +- then `` +- then `` (using all four digits to indicate the year) +- if the elevation dataset was captured over multiple years, include a hyphen and the `` (using all four digits to indicate the year) +- if the elevation dataset has been processed as a QC preview or if it only represents partial capture, include "- Preview" or "- Draft" at the end of the title, from the dataset `` + +## Elevation Dataset S3 Paths + +The elevation dataset S3 path is also constructed from similar metadata. + +``` +/ + [|]_[-?]/ + _m/ + / +``` + +which can be broken down as: + +- the main `` that the dataset covers +- then if it exists, the `` is used, if not, `` is repeated instead (this would be the case where the elevation dataset contains full coverage of the region) +- then `` (using all four digits to indicate the year) +- if the imagery dataset was captured over multiple years, include a hyphen and the `` (using all four digits to indicate the year) +- then `` as multiple products may be created from the same elevation survey +- then `` (which is always in metres) +- then `` as we may store the data in different coordinate reference systems for different purposes + +### S3 Path Restrictions + +The _path_ is restricted to a limited set of characters with no whitespace: lowercase "a through "z", numbers "0" through "9", hyphen ("-"), and underscore ("_"). When generating a [dataset S3 path](#imagery-dataset-s3-paths), the system will pass through these characters unchanged to the path, and will transform many others to allowed characters - see the subsections for details. Any characters not mentioned in this section or subsections will result in an error. + +#### Uppercase characters + +Uppercase characters are changed to lowercase. For example, "Wellington" is changed to "wellington". + +#### Diacritics + +Characters with [diacritics](https://www.compart.com/en/unicode/block/U+0300), such as macrons ("ā", "ē", etc), are transliterated into Latin script. For example, a dataset with "Ōmāpere" in the title would have "omapere" in the path. + +#### Spaces, commas, and slashes + +These characters are replaced with a hyphen. For example, "Tikitapu/Blue Lake" is changed to "tikitapu-blue-lake". + +#### Apostrophes + +These are *removed,* so "Hawke's Bay" is changed to "hawkes-bay". + +#### Ampersands + +These are replaced with "-and-", so "Gore A&P Showgrounds" is changed to "gore-a-and-p-showgrounds". + +#### Other characters + +"ø" is transliterated to "o", so "Mount Brøgger" is changed to "mount-brogger". + +## Title and S3 Path Components + +### `crs` + +EPSG Code for the coordinate reference system of the elevation data. Generally this is [`2193`](https://epsg.io/2193) as it is the primary projection for most of LINZ's elevation data. + +### `geographic_description` + +This is free text and at the imagery maintainer's discretion. A specific city or sub-region or event name may be used to help describe the elevation data capture area. The [Gazetteer](https://gazetteer.linz.govt.nz/) is referenced to ensure official names with correct spelling are used. If the region has full coverage, then the geographic description can be empty and the region will be used instead. + +### `geospatial_category` + +A general categorisation of elevation data held within our archive that includes the following possible values: + +- DEM `dem` +- DSM `dsm` + +### `gsd` + +The GSD or spatial resolution is the area covered on the ground by a single pixel. This is stored in metadata in metres with no trailing zeros after the decimal point. + +### `lifecycle` + +If `lifecycle = preview` then ` - Preview` is appended to the end of the imagery dataset title and if `lifecycle = ongoing` then ` - Draft` is appended to the end of the imagery dataset title. For any other lifecycle values, nothing is appended. + +### `product` + +Elevation data product type, currently either `dem` or `dsm`. + +### `region` + +Is taken from a list of regions: + +- Antarctica `antarctica` +- Auckland `auckland` +- Bay of Plenty `bay-of-plenty` +- Canterbury `canterbury` +- Northland `northland` +- Gisborne `gisborne` +- Global `global` +- Hawke's Bay `hawkes-bay` +- Manawatū-Whanganui `manawatu-whanganui` +- Marlborough `marlborough` +- Nelson `nelson` +- New Zealand `new-zealand` +- Otago `otago` +- Pacific Islands `pacific-islands` +- Southland `southland` +- Taranaki `taranaki` +- Tasman `tasman` +- Waikato `waikato` +- Wellington `wellington` +- West Coast `west-coast` + +### `start_year` and `end_year` + +In both cases, the full four digits should be used. If the elevation dataset was entirely captured within one year, then only a `start_year` is provided. + +As elevation data can be updated after it is "named" for initial processing the `end_year` or lack of an `end_year` may be incorrect in the S3 Path. It is best to use this as a rough guideline and then use the STAC Collection for a more precise capture timeframe. + +## Examples + +1m DSM covering Upper Hutt City in the Wellington region captured in 2021 + +``` +Title: Wellington - Upper Hutt City LiDAR 1m DSM (2021) +Path: s3://nz-elevation/wellington/upper_hutt_city_2021/dsm_1m/2193/collection.json +``` + +1m DEM covering the Hawke's Bay region captured in 2020-2021 (apostrophe removed in elevation dataset path) + +``` +Title: Hawke's Bay LiDAR 1m DEM (2020-2021) +Path: s3://nz-elevation/hawkes-bay/hawkes-bay_2020-2021/dem_1m/2193/collection.json +``` + +1m DEM covering Kaikōura in the Canterbury region captured in 2016 (macron removed in elevation dataset path) + +``` +Title: Canterbury - Kaikōura LiDAR 1m DEM (2016) +Path: s3://nz-elevation/canterbury/kaikoura/dem_1m/2193/collection.json +``` From 2507354712d36a6f35c33601d41d4a39fdaa2082 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 6 Mar 2024 09:05:43 +1300 Subject: [PATCH 271/309] feat: import Tasman - Richmond and Motueka LiDAR 1m DSM (2015) (#277) --- .../richmond-and-motueka_2015/dsm_1m/2193/collection.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stac/tasman/richmond-and-motueka_2015/dsm_1m/2193/collection.json b/stac/tasman/richmond-and-motueka_2015/dsm_1m/2193/collection.json index 63d8e84f..24a4963e 100644 --- a/stac/tasman/richmond-and-motueka_2015/dsm_1m/2193/collection.json +++ b/stac/tasman/richmond-and-motueka_2015/dsm_1m/2193/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01HQP9ZSG6AFQV39TRRJDNDHT8", + "id": "01HR81C46TWAY0DEF5DQG32XPN", "title": "Tasman - Richmond and Motueka LiDAR 1m DSM (2015)", "description": "Digital Surface Model within the Tasman region captured in 2015.", "license": "CC-BY-4.0", @@ -55,8 +55,8 @@ "title": "Capture area", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "12206f9f281794b5dc95e331d354a5ed5ec71a93d68faec30181d085a85e7d9cc7e1", - "file:size": 1922 + "file:checksum": "12204a8b2db6c065682bdca9881de7056c3a58319df14796b02d153aebffd53e69a3", + "file:size": 4029 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From c63d46135640afda1cb9182d648b629dc4396c97 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 6 Mar 2024 09:06:12 +1300 Subject: [PATCH 272/309] feat: import Tasman - Richmond and Motueka LiDAR 1m DEM (2015) (#276) --- .../richmond-and-motueka_2015/dem_1m/2193/collection.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stac/tasman/richmond-and-motueka_2015/dem_1m/2193/collection.json b/stac/tasman/richmond-and-motueka_2015/dem_1m/2193/collection.json index 8d12e1a2..cdcf84d0 100644 --- a/stac/tasman/richmond-and-motueka_2015/dem_1m/2193/collection.json +++ b/stac/tasman/richmond-and-motueka_2015/dem_1m/2193/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01HQP9Y7N922VPERFXMBKYQSCP", + "id": "01HR6GEJEQ5AQ0MW9RDQE0ZBWX", "title": "Tasman - Richmond and Motueka LiDAR 1m DEM (2015)", "description": "Digital Elevation Model within the Tasman region captured in 2015.", "license": "CC-BY-4.0", @@ -55,8 +55,8 @@ "title": "Capture area", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "12206f9f281794b5dc95e331d354a5ed5ec71a93d68faec30181d085a85e7d9cc7e1", - "file:size": 1922 + "file:checksum": "122048b4240283634c1ab1d22bd940369e6ae37502484e8066352f76c7427c06e8d9", + "file:size": 4900 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From c37a8e0781132c276f872abc7eacd265ddd8914b Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 6 Mar 2024 09:06:30 +1300 Subject: [PATCH 273/309] feat: import Canterbury - Christchurch and Selwyn LiDAR 1m DSM (2015) (#275) --- .../dsm_1m/2193/collection.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stac/canterbury/christchurch-and-selwyn_2015/dsm_1m/2193/collection.json b/stac/canterbury/christchurch-and-selwyn_2015/dsm_1m/2193/collection.json index e6d6bfe0..f17af9ab 100644 --- a/stac/canterbury/christchurch-and-selwyn_2015/dsm_1m/2193/collection.json +++ b/stac/canterbury/christchurch-and-selwyn_2015/dsm_1m/2193/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01HQSFNHQNWZ177Q6VBDKYTKHY", + "id": "01HR6EQY08SCPSHK796KNY036F", "title": "Canterbury - Christchurch and Selwyn LiDAR 1m DSM (2015)", "description": "Digital Surface Model within the Canterbury region captured in 2015.", "license": "CC-BY-4.0", @@ -123,8 +123,8 @@ "title": "Capture area", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "1220c78081a9dbf7838e74ce4d541550576de5b10a106389361d79ceb8b5b32b9680", - "file:size": 7443 + "file:checksum": "1220f554d3516483406eaaa8360f80bb475e5845c601ba4082d27a201606d173b213", + "file:size": 277257 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From 0328dae0e18c50a742a86fccfd6981298375c0b6 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 6 Mar 2024 09:06:45 +1300 Subject: [PATCH 274/309] feat: import Canterbury - Christchurch and Selwyn LiDAR 1m DEM (2015) (#274) --- .../dem_1m/2193/collection.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stac/canterbury/christchurch-and-selwyn_2015/dem_1m/2193/collection.json b/stac/canterbury/christchurch-and-selwyn_2015/dem_1m/2193/collection.json index 9fda852a..d5509c7c 100644 --- a/stac/canterbury/christchurch-and-selwyn_2015/dem_1m/2193/collection.json +++ b/stac/canterbury/christchurch-and-selwyn_2015/dem_1m/2193/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "stac_version": "1.0.0", - "id": "01HQSF5QTCS18CM9GQMGQXMSE3", + "id": "01HR6DAH3HJ7F47WHV84E2MY4K", "title": "Canterbury - Christchurch and Selwyn LiDAR 1m DEM (2015)", "description": "Digital Elevation Model within the Canterbury region captured in 2015.", "license": "CC-BY-4.0", @@ -123,8 +123,8 @@ "title": "Capture area", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "1220c78081a9dbf7838e74ce4d541550576de5b10a106389361d79ceb8b5b32b9680", - "file:size": 7443 + "file:checksum": "122004392b58b698322f87840f9126029543c16dda7f9e7116c76935e618471e1e9a", + "file:size": 216762 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From 4685bda83434dac65cbd7690b6db88af39ffd8da Mon Sep 17 00:00:00 2001 From: paulfouquet <86932794+paulfouquet@users.noreply.github.com> Date: Wed, 6 Mar 2024 09:08:47 +1300 Subject: [PATCH 275/309] feat: publish stac to odr bucket TDE-1042 (#115) #### Motivation In order to continuously publish data in the ODR bucket nz-elevation, the publish workflow needs to be updated to point to nz-elevation rather than the current bucket linz-elevation. #### Modification The publish workflow has been duplicated from https://github.com/linz/imagery/blob/7c55691c40e0b6b7d0d578c9fed2e9f7f7ce9b36/.github/workflows/publish.yml GH environment prod has been created along with secrets. This change should not be deployed before the elevation data has been re-processed into the linz-elevation bucket. --------- Co-authored-by: Alice Fage --- .github/workflows/actionlint.dockerfile | 4 ++ .github/workflows/publish.yml | 83 +++++++++++++++++++------ docs/tiff-compression/README.md | 4 +- 3 files changed, 70 insertions(+), 21 deletions(-) create mode 100644 .github/workflows/actionlint.dockerfile diff --git a/.github/workflows/actionlint.dockerfile b/.github/workflows/actionlint.dockerfile new file mode 100644 index 00000000..db3dc71b --- /dev/null +++ b/.github/workflows/actionlint.dockerfile @@ -0,0 +1,4 @@ +# Workaround for https://github.com/dependabot/dependabot-core/issues/8362. +# Once that is fixed, remove this file and replace the Docker build and run +# lines in `.github/workflows/*.yml` with a `uses: docker://rhysd/…` line. +FROM rhysd/actionlint:1.6.26@sha256:2362769b1d75056da70e7af1b12d9e52746f3a123b8f22a4322869e8f2cd45f2 \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d3f26960..0eafca0e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,33 +16,78 @@ jobs: - uses: linz/action-typescript@dee99184c4305aea6c380a52db9b2d7abaaa3e78 # v3 # FIXME: catalog.json is not pushed to the repository (temporary solution) - # - name: Create STAC Catalog - # uses: docker://ghcr.io/linz/argo-tasks:v2 - # with: - # args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ + - name: Create STAC Catalog + uses: docker://ghcr.io/linz/argo-tasks:v3 + with: + args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ - # - name: Validate STAC Catalog - # uses: docker://ghcr.io/linz/argo-tasks:v2 - # with: - # args: stac-validate /github/workspace/stac/catalog.json + - name: Validate STAC Catalog + uses: docker://ghcr.io/linz/argo-tasks:v3 + with: + args: stac-validate /github/workspace/stac/catalog.json - name: Validate STAC Collections run: | # Enable double star operator shopt -s globstar - docker run -v $PWD:$PWD ghcr.io/linz/argo-tasks:v2 stac-validate $PWD/stac/**/collection.json + docker run -v "$PWD:$PWD" ghcr.io/linz/argo-tasks:v3 stac-validate "$PWD"/stac/**/collection.json + + - name: Download actionlint + run: docker build --tag actionlint - < .github/workflows/actionlint.dockerfile + + - name: Run actionlint to check workflow files + run: docker run --volume="${PWD}:/repo" --workdir=/repo actionlint -color + + deploy-prod: + name: Publish STAC + runs-on: ubuntu-latest + concurrency: publish-${{ github.ref }} + needs: main + if: ${{ github.ref == 'refs/heads/master' }} + + environment: + name: prod + + permissions: + id-token: write + contents: read + + steps: + - uses: linz/action-typescript@dee99184c4305aea6c380a52db9b2d7abaaa3e78 # v3 + + # FIXME: catalog.json is not pushed to the repository (temporary solution) + - name: Create STAC Catalog + uses: docker://ghcr.io/linz/argo-tasks:v2 + with: + args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ + + - name: Validate STAC Catalog + uses: docker://ghcr.io/linz/argo-tasks:v2 + with: + args: stac-validate /github/workspace/stac/catalog.json + + - name: Validate STAC Collections + run: | + # Enable double star operator + shopt -s globstar + docker run -v "${PWD}:${PWD}" ghcr.io/linz/argo-tasks:v2 stac-validate "$PWD"/stac/**/collection.json - name: AWS Configure - if: github.ref == 'refs/heads/master' - uses: aws-actions/configure-aws-credentials@5fd3084fc36e372ff1fff382a39b10d03659f355 # v2 + uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a # v4 with: aws-region: ap-southeast-2 mask-aws-account-id: true - role-to-assume: ${{ secrets.AWS_CI_ROLE }} - - # Sync STAC files only on push to 'master' - # - name: Sync STAC - # uses: docker://ghcr.io/linz/argo-tasks:v2 - # if: github.ref == 'refs/heads/master' - # with: - # args: stac-sync /github/workspace/stac/ s3://linz-elevation/ + role-to-assume: ${{ secrets.AWS_ODR_CI_ROLE }} + + - name: AWS Configure ODR + uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a # v4 + with: + aws-region: ap-southeast-2 + mask-aws-account-id: true + role-to-assume: ${{ secrets.AWS_ODR_DATA_MANAGER_ROLE }} + role-chaining: true + + - name: Sync STAC + uses: docker://ghcr.io/linz/argo-tasks:v2 + with: + args: stac-sync /github/workspace/stac/ s3://nz-elevation/ diff --git a/docs/tiff-compression/README.md b/docs/tiff-compression/README.md index 0d28c7da..aebd7b53 100644 --- a/docs/tiff-compression/README.md +++ b/docs/tiff-compression/README.md @@ -2,7 +2,7 @@ ## TLDR -Toitū Te Whenua has decided to store all its DEM and DSM as `lerc` Cloud Optimized GeoTIFFs in `s3://linz-elevation` +Toitū Te Whenua has decided to store all its DEM and DSM as `lerc` Cloud Optimized GeoTIFFs in `s3://nz-elevation` ## Background @@ -165,4 +165,4 @@ echo 'export LD_LIBRARY_PATH=/usr/local/lib' >> ~/.bashrc GDAL_DATA="/usr/local/share/gdal" sudo ldconfig -``` \ No newline at end of file +``` From d2f97e9acfb260e63a494a95f2e09f3209102224 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Fri, 8 Mar 2024 09:03:01 +1300 Subject: [PATCH 276/309] feat: import Canterbury - Christchurch LiDAR 1m DEM (2020-2021) (#278) --- .../christchurch_2020-2021/dem_1m/2193/collection.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json b/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json index 9c191470..11b80c3f 100644 --- a/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json +++ b/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json @@ -61,8 +61,8 @@ "title": "Capture area", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "12204ad4efd1577203af0c0a65c9811aa34938f34c1a88e31eaae83c73d34735678f", - "file:size": 20442 + "file:checksum": "1220dc11e9a6bd8930f486e814ca16256750797f8b350bd01bcfebf74d88a948141f", + "file:size": 26475 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From b12a1e53c8fa06545b452fea74924c9c42c8eda5 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Fri, 8 Mar 2024 10:55:16 +1300 Subject: [PATCH 277/309] feat: import Canterbury - Christchurch LiDAR 1m DEM (2020-2021) (#279) --- .../christchurch_2020-2021/dem_1m/2193/collection.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json b/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json index 11b80c3f..b9b08869 100644 --- a/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json +++ b/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json @@ -61,8 +61,8 @@ "title": "Capture area", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "1220dc11e9a6bd8930f486e814ca16256750797f8b350bd01bcfebf74d88a948141f", - "file:size": 26475 + "file:checksum": "1220cdf1eb5ca45af0a9480bd187022948b9be59f812addd4078d2fb2fd399e899c4", + "file:size": 27016 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From 4ca37ff990ed100600ea906547983efa3b36ecbd Mon Sep 17 00:00:00 2001 From: Daniel Silk Date: Fri, 8 Mar 2024 14:34:16 +1300 Subject: [PATCH 278/309] docs: add usage.md (#280) Adds examples of how to interact with nz-elevation from various applications. This currently duplicates a lot of content on the linz/imagery repo but links and images have been updated specifically for linz/elevation. We will at some point want to consolidate docs to reduce duplication but in the interim it will be good to link directly from the Registry of Open Data on AWS listing to these docs. --------- Co-authored-by: Alice Fage --- docs/img/usage/arcgis_pro_catalog_view.png | Bin 0 -> 27001 bytes .../usage/arcgis_pro_connection_details.png | Bin 0 -> 30846 bytes .../usage/arcgis_pro_new_cloud_connection.png | Bin 0 -> 49808 bytes docs/img/usage/cyberduck_bucket_view.png | Bin 0 -> 55337 bytes docs/img/usage/cyberduck_open_connection.png | Bin 0 -> 19467 bytes docs/img/usage/qgis_data-source-manager.png | Bin 0 -> 47634 bytes docs/img/usage/qgis_visualisation.png | Bin 0 -> 411451 bytes docs/usage.md | 238 ++++++++++++++++++ 8 files changed, 238 insertions(+) create mode 100644 docs/img/usage/arcgis_pro_catalog_view.png create mode 100644 docs/img/usage/arcgis_pro_connection_details.png create mode 100644 docs/img/usage/arcgis_pro_new_cloud_connection.png create mode 100644 docs/img/usage/cyberduck_bucket_view.png create mode 100644 docs/img/usage/cyberduck_open_connection.png create mode 100644 docs/img/usage/qgis_data-source-manager.png create mode 100644 docs/img/usage/qgis_visualisation.png create mode 100644 docs/usage.md diff --git a/docs/img/usage/arcgis_pro_catalog_view.png b/docs/img/usage/arcgis_pro_catalog_view.png new file mode 100644 index 0000000000000000000000000000000000000000..9f4123ae942113d509fcafd18e4957b096b7aed5 GIT binary patch literal 27001 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 F_dlS+G&TSL literal 0 HcmV?d00001 diff --git a/docs/img/usage/arcgis_pro_connection_details.png b/docs/img/usage/arcgis_pro_connection_details.png new file mode 100644 index 0000000000000000000000000000000000000000..e443f8ba6ceee25392387e67041ff90e6ec87741 GIT binary patch literal 30846 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 literal 0 HcmV?d00001 diff --git a/docs/img/usage/arcgis_pro_new_cloud_connection.png b/docs/img/usage/arcgis_pro_new_cloud_connection.png new file mode 100644 index 0000000000000000000000000000000000000000..cc9fb3a4ac610d52d8ace88d87a22fde0f60a1bd GIT binary patch literal 49808 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 literal 0 HcmV?d00001 diff --git a/docs/img/usage/cyberduck_bucket_view.png b/docs/img/usage/cyberduck_bucket_view.png new file mode 100644 index 0000000000000000000000000000000000000000..2ad5d61805c1d7c04e58719d3d9e3678b366829d GIT binary patch literal 55337 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 literal 0 HcmV?d00001 diff --git a/docs/img/usage/qgis_data-source-manager.png b/docs/img/usage/qgis_data-source-manager.png new file mode 100644 index 0000000000000000000000000000000000000000..3191b8b8ffbbbf038f24485640cc1640bd5f9a2c GIT binary patch literal 47634 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� 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

pv-`1hAA*{9b!PIUlSNc+=RHbEU&7%W@ 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 YnKS2SB`8_Y1s^OYt^5imWfJgz0Pd2Z2><{9 literal 0 HcmV?d00001 diff --git a/docs/img/usage/qgis_visualisation.png b/docs/img/usage/qgis_visualisation.png new file mode 100644 index 0000000000000000000000000000000000000000..934aafa3133830e631aef7c5fd3337be7cd57416 GIT binary patch literal 411451 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

-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

Jr+9=yG8 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 U5~NGCM* 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 literal 0 HcmV?d00001 diff --git a/docs/usage.md b/docs/usage.md new file mode 100644 index 00000000..9a5614c8 --- /dev/null +++ b/docs/usage.md @@ -0,0 +1,238 @@ +# Usage + +Our public New Zealand Elevation bucket can be used with a number of applications, including [s5cmd](#s5cmd), [GDAL](#gdal), [QGIS](#qgis), [ArcGIS Pro](#arcgis-pro) and [Cyberduck](#cyberduck). + +## Get the link to the TIFF + +The STAC Catalog, https://nz-elevation.s3-ap-southeast-2.amazonaws.com/catalog.json, is the entry point of the LINZ elevation data. It points to the different STAC Collections representing a dataset. + +> **_Note:_** The files in the *nz-elevation* bucket can be accessed via `s3://nz-elevation` or `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/`. + +### Manually navigate through the STAC Catalog to a get a TIFF + +This is an example using the "Taranaki LiDAR 1m DEM (2021)" dataset. + +1. From `catalog.json` get the Collection link for "Taranaki LiDAR 1m DEM (2021)" in the `links` list: + + ```json + { + "rel": "child", + "href": "./taranaki/taranaki_2021/dem_1m/2193/collection.json", + "title": "Taranaki LiDAR 1m DEM (2021)", + "file:checksum": "122098144561ea4de8e880fb3b857b1ca07d32400189cf48cf9cad96921efdeb3f15", + "file:size": 25426 + }, + ``` +2. The Collection can be accessed from this GitHub repository, `stac/taranaki/taranaki_2021/dem_1m/2193/collection.json` or from `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/collection.json`. From the Collection get an Item link in the `links` list: + + ```json + { "rel": "item", "href": "./BH31_10000_0403.json", "type": "application/json" } + ``` +3. The Item can be accessed from `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/BH31_10000_0403.json`. A list of assets can be found: + + ```json + "assets": { + "visual": { + "href": "./BH31_10000_0403.tiff", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "file:checksum": "122042af9034edaf0c2ff7522e26db4fb3a4a5835015f6dfc118acbd6c3f2b011ee5" + } + } + ``` +4. In this case, the TIFF can be accessed from `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/BH31_10000_0403.tiff` + +> **_Note:_** Our TIFF files and STAC Item files use the same base name. Having the link to the STAC Item, you can determine the TIFF link by changing its suffix from `.json` to `.tiff`. + +## s5cmd + +[s5cmd](https://github.com/peak/s5cmd) is a parallel file execution command-line interface tool. It is written in Go and the GitHub repository includes pre-built binaries for Windows, Mac and Linux. It supports public S3 buckets. + +List the contents of a public bucket using the `--no-sign-request` flag. + +```shell +s5cmd --no-sign-request ls s3://nz-elevation/ +``` + +```shell + PRE auckland/ + PRE bay-of-plenty/ + PRE canterbury/ + PRE gisborne/ + PRE hawkes-bay/ + PRE manawatu-whanganui/ + PRE marlborough/ + PRE nelson/ + PRE northland/ + PRE otago/ + PRE southland/ + PRE taranaki/ + PRE tasman/ + PRE waikato/ + PRE wellington/ + PRE west-coast/ +2024-03-08 10:34:25 18657 LICENSE +2024-03-08 10:57:05 44274 catalog.json +``` + +Check the total size of all elevation data held for one region. + +```shell +s5cmd --no-sign-request du --humanize s3://nz-elevation/canterbury/* +``` +``` +103.5G bytes in 7784 objects: s3://nz-elevation/canterbury/* +``` + +Check the total size of a specific elevation dataset and limit to just the elevation files (not metadata). + +```shell +s5cmd --no-sign-request du --humanize s3://nz-elevation/canterbury/christchurch_2020-2021/dem_1m/2193/*.tiff +``` +``` +592.5M bytes in 27 objects: s3://nz-elevation/canterbury/christchurch_2020-2021/dem_1m/2193/*.tiff +``` + +Copy all of the elevation data files to a new target location. + +```shell +s5cmd --no-sign-request cp s3://nz-elevation/canterbury/christchurch_2020-2021/dem_1m/2193/*.tiff +``` + +## GDAL + +[GDAL](https://gdal.org/) + +### Virtual file system + +GDAL allows you to run commands on a file that is not on your local machine using a virtual file system path: + +- `/vsicurl/https://nz-elevation.s3-ap-southeast-2.amazonaws.com/[PATH]` +- `/vsis3/s3://nz-elevation/[PATH]` + +### gdalinfo + +```bash +gdalinfo /vsicurl/https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/BH31_10000_0403.tiff +``` + +

+ Output + +``` +Driver: GTiff/GeoTIFF +Files: /vsicurl/https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/BH31_10000_0403.tiff +Size is 4800, 7200 +Coordinate System is: +PROJCRS["NZGD2000 / New Zealand Transverse Mercator 2000", + BASEGEOGCRS["NZGD2000", + DATUM["New Zealand Geodetic Datum 2000", + ELLIPSOID["GRS 1980",6378137,298.257222101, + LENGTHUNIT["metre",1]]], + PRIMEM["Greenwich",0, + ANGLEUNIT["degree",0.0174532925199433]], + ID["EPSG",4167]], + CONVERSION["New Zealand Transverse Mercator 2000", + METHOD["Transverse Mercator", + ID["EPSG",9807]], + PARAMETER["Latitude of natural origin",0, + ANGLEUNIT["degree",0.0174532925199433], + ID["EPSG",8801]], + PARAMETER["Longitude of natural origin",173, + ANGLEUNIT["degree",0.0174532925199433], + ID["EPSG",8802]], + PARAMETER["Scale factor at natural origin",0.9996, + SCALEUNIT["unity",1], + ID["EPSG",8805]], + PARAMETER["False easting",1600000, + LENGTHUNIT["metre",1], + ID["EPSG",8806]], + PARAMETER["False northing",10000000, + LENGTHUNIT["metre",1], + ID["EPSG",8807]]], + CS[Cartesian,2], + AXIS["northing (N)",north, + ORDER[1], + LENGTHUNIT["metre",1]], + AXIS["easting (E)",east, + ORDER[2], + LENGTHUNIT["metre",1]], + USAGE[ + SCOPE["Engineering survey, topographic mapping."], + AREA["New Zealand - North Island, South Island, Stewart Island - onshore."], + BBOX[-47.33,166.37,-34.1,178.63]], + ID["EPSG",2193]] +Data axis to CRS axis mapping: 2,1 +Origin = (1741600.000000000000000,5672400.000000000000000) +Pixel Size = (1.000000000000000,-1.000000000000000) +Metadata: + AREA_OR_POINT=Area +Image Structure Metadata: + COMPRESSION=LERC + INTERLEAVE=BAND + LAYOUT=COG + LERC_VERSION=2.4 +Corner Coordinates: +Upper Left ( 1741600.000, 5672400.000) (174d38'13.91"E, 39d 5' 9.73"S) +Lower Left ( 1741600.000, 5665200.000) (174d38'19.32"E, 39d 9' 3.21"S) +Upper Right ( 1746400.000, 5672400.000) (174d41'33.63"E, 39d 5' 6.88"S) +Lower Right ( 1746400.000, 5665200.000) (174d41'39.22"E, 39d 9' 0.35"S) +Center ( 1744000.000, 5668800.000) (174d39'56.52"E, 39d 7' 5.05"S) +Band 1 Block=512x512 Type=Float32, ColorInterp=Gray + Min=130.799 Max=454.541 + Minimum=130.799, Maximum=454.541, Mean=289.727, StdDev=59.772 + NoData Value=-9999 + Overviews: 2400x3600, 1200x1800, 600x900, 300x450 + Metadata: + STATISTICS_MAXIMUM=454.54098510742 + STATISTICS_MEAN=289.72720030798 + STATISTICS_MINIMUM=130.79899597168 + STATISTICS_STDDEV=59.771690336322 + STATISTICS_VALID_PERCENT=100 +``` + +
+ +## QGIS + +### Loading the TIFF + +1. In QGIS, open the "Data Source Manager" (press `ctrl+L`) +2. Select "Protocol: HTTP(S)" as the "Source Type" +3. Select "HTTP/HTTPS/FTP" as the "Protocol Type" +4. Paste the HTTPS URL to the TIFF, for example `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/BH31_10000_0403.tiff` +5. Click on the "Add" button and wait for the file to load. + + ![Data Source Manager](img/usage/qgis_data-source-manager.png) + ![QGIS View TIFF](img/usage/qgis_visualisation.png) + +## ArcGIS Pro + +### Connecting to a Public Bucket + +1. On the "Insert" ribbon, select "Connections" then "Cloud Store" then "New Cloud Storage Connection". + + ![ArcGIS Pro New Cloud Storage Connection](img/usage/arcgis_pro_new_cloud_connection.png) +2. In the "Create Cloud Storage Connection" dialog, add a "Connection File Name" e.g. `New Zealand Elevation`, "Service Provider" as `AMAZON`, "Bucket Name" as `nz-elevation`, "Region" as `Asia Pacific (Sydney)` and "Service Endpoint" as `s3.ap-southeast-2.amazon.com`. +3. Because this is a Public Bucket, add a "Provider Option" with "Name" of `AWS_NO_SIGN_REQUEST` and "Value" of `YES`. This means that you won't need an Access Key ID or Secret Access Key. + + ![ArcGIS Pro Cloud Storage Connection Details](img/usage/arcgis_pro_connection_details.png) +4. Click "OK". The cloud storage connection will appear in the "Catalog" pane, where the bucket structure can be explored. + + ![ArcGIS Pro Catalog View](img/usage/arcgis_pro_catalog_view.png) +5. From here you can add individual TIFFs to the map, export them to different data formats, etc. + +## Cyberduck + +[Cyberduck](https://cyberduck.io/) is a free and open source cloud storage browser for Windows and Mac, with support for public S3 buckets. The instructions below are relevant on Windows, [Mac setup is different](https://github.com/iterate-ch/cyberduck/issues/12891). + +### Connecting to a Public Bucket + +1. Select "Open Connection". +2. Expand the "Connection Profiles" dropdown (that defaults to FTP) and select "More Options" at the bottom of the list. Search using "HTTPS" to find the `S3 (HTTPS)` connection profile. Select it, then close the "Preferences" window. +3. Add a "Server" of `s3-ap-southeast-2.amazonaws.com`, check the "Anonymous Login" checkbox and add a "Path" of `nz-elevation`. + + ![Cyberduck Open Connection](img/usage/cyberduck_open_connection.png) +4. Click "Connect". The top level of the bucket will be displayed and can be explored. + + ![Cyberduck Bucket View](img/usage/cyberduck_bucket_view.png) +5. From here you can use "Get Info" to calculate the size of particular directories or datasets and right-click to "Download" or "Synchronize". From 28cd8310815f51734f676d5859f6164719f16c39 Mon Sep 17 00:00:00 2001 From: Megan Davidson <33814653+MDavidson17@users.noreply.github.com> Date: Thu, 21 Mar 2024 09:49:11 +1300 Subject: [PATCH 279/309] ci: add argo copy steps TDE-1099 (#281) note: this code has been copied across from [linz/imagery/.github/workflows/publish.yaml](https://github.com/linz/imagery/blob/master/.github/workflows/publish.yml) The intention of this change is to add the argo steps in order to support the automation of publishing to the ODR. However, there are some other changes as well (like renaming and version updates) in order to keep the two publish workflows almost identical - making any future updates easier. depends on: https://github.com/linz/topo-aws-infrastructure/pull/336 --- .github/workflows/publish.yml | 68 ++++++++++++++++++++++++++------ publish-odr-parameters/README.md | 36 +++++++++++++++++ 2 files changed, 92 insertions(+), 12 deletions(-) create mode 100644 publish-odr-parameters/README.md diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0eafca0e..57161757 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,16 +1,12 @@ name: Publish -on: [push] +on: [ push ] jobs: main: - name: Publish + name: Validate STAC runs-on: ubuntu-latest - concurrency: publish-${{ github.ref }} - - permissions: - id-token: write - contents: read + concurrency: validate-${{ github.ref }} steps: - uses: linz/action-typescript@dee99184c4305aea6c380a52db9b2d7abaaa3e78 # v3 @@ -39,7 +35,7 @@ jobs: run: docker run --volume="${PWD}:/repo" --workdir=/repo actionlint -color deploy-prod: - name: Publish STAC + name: Publish ODR & Sync STAC runs-on: ubuntu-latest concurrency: publish-${{ github.ref }} needs: main @@ -55,14 +51,23 @@ jobs: steps: - uses: linz/action-typescript@dee99184c4305aea6c380a52db9b2d7abaaa3e78 # v3 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + with: + fetch-depth: 0 + + - name: Use Node.js 18.x + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 + with: + node-version: '18.x' + # FIXME: catalog.json is not pushed to the repository (temporary solution) - name: Create STAC Catalog - uses: docker://ghcr.io/linz/argo-tasks:v2 + uses: docker://ghcr.io/linz/argo-tasks:v3 with: args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ - name: Validate STAC Catalog - uses: docker://ghcr.io/linz/argo-tasks:v2 + uses: docker://ghcr.io/linz/argo-tasks:v3 with: args: stac-validate /github/workspace/stac/catalog.json @@ -70,7 +75,45 @@ jobs: run: | # Enable double star operator shopt -s globstar - docker run -v "${PWD}:${PWD}" ghcr.io/linz/argo-tasks:v2 stac-validate "$PWD"/stac/**/collection.json + docker run -v "${PWD}:${PWD}" ghcr.io/linz/argo-tasks:v3 stac-validate "$PWD"/stac/**/collection.json + + - name: Setup kubectl + uses: azure/setup-kubectl@901a10e89ea615cf61f57ac05cecdf23e7de06d8 # v3 + with: + version: 'latest' + + - name: AWS Configure + uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a # v4 + with: + aws-region: ap-southeast-2 + mask-aws-account-id: true + role-to-assume: ${{ secrets.AWS_EKS_CI_ROLE }} + + - name: Login to EKS + run: | + aws eks update-kubeconfig --name Workflows --region ap-southeast-2 + + - name: Check EKS connection + run: | + kubectl get nodes + + - name: Install Argo + run: | + curl -sLO https://github.com/argoproj/argo-workflows/releases/download/v3.4.11/argo-linux-amd64.gz + gunzip argo-linux-amd64.gz + chmod +x argo-linux-amd64 + ./argo-linux-amd64 version + + - name: Submit Added/Changed Parameter Files + id: modified-files + run: | + # AM = Include: Added, Modified + mapfile -d '' modified_parameter_files < <(git diff --name-only --diff-filter=AM -z ${{ github.event.before }} ${{ github.event.after }} -- "publish-odr-parameters/*.yaml") + + for file in "${modified_parameter_files[@]}"; do + base=$(basename "${file%.yaml}") + ./argo-linux-amd64 submit --wait --from wftmpl/copy -n argo -f "$file" -p aws_role_config_path="s3://linz-bucket-config/config-write.open-data-registry.json" --generate-name "publish-odr-$base-" + done - name: AWS Configure uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a # v4 @@ -87,7 +130,8 @@ jobs: role-to-assume: ${{ secrets.AWS_ODR_DATA_MANAGER_ROLE }} role-chaining: true + # Sync STAC files only on push to 'master' - name: Sync STAC - uses: docker://ghcr.io/linz/argo-tasks:v2 + uses: docker://ghcr.io/linz/argo-tasks:v3 with: args: stac-sync /github/workspace/stac/ s3://nz-elevation/ diff --git a/publish-odr-parameters/README.md b/publish-odr-parameters/README.md new file mode 100644 index 00000000..71b0315b --- /dev/null +++ b/publish-odr-parameters/README.md @@ -0,0 +1,36 @@ +# ODR Copy Workflow Parameters + +This folder contains the parameter yaml files generated by the `publish-odr` argo workflow. + +## How it Works: + +### Step 1: Submit the publish-odr workflow using Argo + +See [publish-odr](https://github.com/linz/topo-workflows/blob/master/workflows/raster/publish-odr.yaml) for more details. + +### Step 2: Review and Approve + +- Review and approve the STAC metadata and basemaps config preview link. +- Review the target path in the parameters yaml file. + +Example parameters file: + +```yaml +source: 's3://path/to/source/' +target: 's3://path/to/target/' +``` + +> [!Tip] +> If the parameters are incorrect or additional parameters are required they can be updated/added here. +> See the [copy workflow](https://github.com/linz/topo-workflows/tree/master/workflows/raster#copy) for additonal parameter options & default values. + +### Step 3: Merge Pull Request + +Once the pull request has been merged the [publish.yml](../.github/workflows/publish.yml) Github Action will run. + +This will: + +- Create a `catalog.json`. +- Validate the STAC. +- Submit a `copy` argo workflow for any added or modified parameter files in the `./publish-odr-parameters/` folder. +- Sync the `catalog.json` & `collection.json` created in this PR with the ODR bucket. From 20bbcadbc96a0c84a415bdf0b1eeb7ebf4a3d9d9 Mon Sep 17 00:00:00 2001 From: Megan Davidson <33814653+MDavidson17@users.noreply.github.com> Date: Tue, 26 Mar 2024 12:10:05 +1300 Subject: [PATCH 280/309] ci: remove generate-name & exclude collection TDE-1058 (#282) The logic to use $base (the name of the parameters.yaml file) to name the argo workflow submitted no longer works. This change will give each submission the name `publish-odr-file-copy-` (so that can be distinguished from publihs-odr run by any other means) In addition, the collection will be "synced" later on this workflow and include any changed made in the PR that will not be in the /flat/ directory. Therefore we should exlude it here. Related linz/imagery/ changes: https://github.com/linz/imagery/pull/377 https://github.com/linz/imagery/pull/379 --- .github/workflows/publish.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 57161757..0c586365 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -111,8 +111,7 @@ jobs: mapfile -d '' modified_parameter_files < <(git diff --name-only --diff-filter=AM -z ${{ github.event.before }} ${{ github.event.after }} -- "publish-odr-parameters/*.yaml") for file in "${modified_parameter_files[@]}"; do - base=$(basename "${file%.yaml}") - ./argo-linux-amd64 submit --wait --from wftmpl/copy -n argo -f "$file" -p aws_role_config_path="s3://linz-bucket-config/config-write.open-data-registry.json" --generate-name "publish-odr-$base-" + ./argo-linux-amd64 submit --wait --from wftmpl/copy -n argo -f "$file" -p aws_role_config_path="s3://linz-bucket-config/config-write.open-data-registry.json" -p exclude="collection.json$" --generate-name "publish-odr-file-copy-" done - name: AWS Configure From 4d1d6d0fc2bd91706f59dff0af51249e0ea73bc6 Mon Sep 17 00:00:00 2001 From: Megan Davidson <33814653+MDavidson17@users.noreply.github.com> Date: Wed, 27 Mar 2024 08:29:31 +1300 Subject: [PATCH 281/309] ci: add skip-argo and skip-sync options [skip-argo] [skip-sync] TDE-1058 (#283) added back the skip steps so that if developers need to make fixes to the repo they have an easy option to do so without accidentally syncing the stac or running argo. Example of an accidental sync: https://github.com/linz/imagery/actions/runs/8413889662/job/23036808911 --- .github/workflows/publish.yml | 2 ++ publish-odr-parameters/README.md | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0c586365..79b465a0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -106,6 +106,7 @@ jobs: - name: Submit Added/Changed Parameter Files id: modified-files + if: ${{ !contains(github.event.head_commit.message, '[skip-argo]')}} run: | # AM = Include: Added, Modified mapfile -d '' modified_parameter_files < <(git diff --name-only --diff-filter=AM -z ${{ github.event.before }} ${{ github.event.after }} -- "publish-odr-parameters/*.yaml") @@ -131,6 +132,7 @@ jobs: # Sync STAC files only on push to 'master' - name: Sync STAC + if: ${{ !contains(github.event.head_commit.message, '[skip-sync]')}} uses: docker://ghcr.io/linz/argo-tasks:v3 with: args: stac-sync /github/workspace/stac/ s3://nz-elevation/ diff --git a/publish-odr-parameters/README.md b/publish-odr-parameters/README.md index 71b0315b..aae1a598 100644 --- a/publish-odr-parameters/README.md +++ b/publish-odr-parameters/README.md @@ -2,6 +2,10 @@ This folder contains the parameter yaml files generated by the `publish-odr` argo workflow. +> [!Tip] +> Add `[skip-argo]` to your PR title/body if you do not want to deploy changes to the ODR +> Add `[skip-sync]` to your PR title/body if you do not want to sync the catalog/collections to the ODR + ## How it Works: ### Step 1: Submit the publish-odr workflow using Argo From 28ef58df8a0747d253033c256adaff809c1ac166 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Mon, 29 Apr 2024 10:40:19 +1200 Subject: [PATCH 282/309] feat: import Gisborne LiDAR 1m DEM (2023) EDS-90 (#285) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-38.2496921,177.8809638,z8?style=18-es-gisborne-2023-dem-1m-gghtd&tileMatrix=NZTM2000Quad&debug&config=L8TuzSUutDHnXXtx7FHoqgkqDjgMiWx4jsyL1LATkAHgv5ju7wnn6WuGmf3zDdjyM1UM5pd1wb8HhQHLMzaPhvD5A8yVm8gqUFPuwjRbAZRkBav5syxDnb4iDfASdoHhdt19GKs6FFbL8ckYo7wZF4egRABsEHKN3Rfb8pmzTMRJwugPi5qwqnuxDkQqj4ucsj) **ODR destination path:** `s3://nz-elevation/gisborne/gisborne_2023/dem_1m/2193/` --- ...QMDFKQ68GXZAZNG4SQ0401C-1713484627103.yaml | 7 + .../gisborne_2023/dem_1m/2193/collection.json | 170 +++++++++++++++++- 2 files changed, 173 insertions(+), 4 deletions(-) create mode 100644 publish-odr-parameters/01HQMDFKQ68GXZAZNG4SQ0401C-1713484627103.yaml diff --git a/publish-odr-parameters/01HQMDFKQ68GXZAZNG4SQ0401C-1713484627103.yaml b/publish-odr-parameters/01HQMDFKQ68GXZAZNG4SQ0401C-1713484627103.yaml new file mode 100644 index 00000000..088a58d8 --- /dev/null +++ b/publish-odr-parameters/01HQMDFKQ68GXZAZNG4SQ0401C-1713484627103.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-04/18-es-gisborne-2023-dem-1m-gghtd/flat/", + "target": "s3://nz-elevation/gisborne/gisborne_2023/dem_1m/2193/", + "ticket": "EDS-90", + "copy_option": "--force", + "region": "gisborne" +} \ No newline at end of file diff --git a/stac/gisborne/gisborne_2023/dem_1m/2193/collection.json b/stac/gisborne/gisborne_2023/dem_1m/2193/collection.json index 4d03b5b6..3fd6e99b 100644 --- a/stac/gisborne/gisborne_2023/dem_1m/2193/collection.json +++ b/stac/gisborne/gisborne_2023/dem_1m/2193/collection.json @@ -12,8 +12,122 @@ "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD46_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0501.json", "type": "application/json" }, { "rel": "item", "href": "./BF40_10000_0405.json", "type": "application/json" }, { "rel": "item", "href": "./BF40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./BF41_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BF41_10000_0402.json", "type": "application/json" }, { "rel": "item", "href": "./BF41_10000_0403.json", "type": "application/json" }, @@ -24,6 +138,21 @@ { "rel": "item", "href": "./BF41_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BF41_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BF41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./BF42_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BF42_10000_0402.json", "type": "application/json" }, { "rel": "item", "href": "./BF42_10000_0403.json", "type": "application/json" }, @@ -34,6 +163,21 @@ { "rel": "item", "href": "./BF42_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BF42_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BF42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./BF43_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BF43_10000_0402.json", "type": "application/json" }, { "rel": "item", "href": "./BF43_10000_0403.json", "type": "application/json" }, @@ -44,6 +188,21 @@ { "rel": "item", "href": "./BF43_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BF43_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BF43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0305.json", "type": "application/json" }, { "rel": "item", "href": "./BF44_10000_0401.json", "type": "application/json" }, { "rel": "item", "href": "./BF44_10000_0402.json", "type": "application/json" }, { "rel": "item", "href": "./BF44_10000_0403.json", "type": "application/json" }, @@ -54,6 +213,9 @@ { "rel": "item", "href": "./BF44_10000_0503.json", "type": "application/json" }, { "rel": "item", "href": "./BF44_10000_0504.json", "type": "application/json" }, { "rel": "item", "href": "./BF44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0301.json", "type": "application/json" }, { "rel": "item", "href": "./BG40_10000_0104.json", "type": "application/json" }, { "rel": "item", "href": "./BG40_10000_0105.json", "type": "application/json" }, { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, @@ -166,8 +328,8 @@ "linz:region": "gisborne", "linz:security_classification": "unclassified", "extent": { - "spatial": { "bbox": [[177.1042804, -38.9989083, 178.3620224, -38.3263176]] }, - "temporal": { "interval": [["2023-09-10T12:00:00Z", "2023-11-12T11:00:00Z"]] } + "spatial": { "bbox": [[177.1042804, -38.9989083, 178.6355576, -37.4863429]] }, + "temporal": { "interval": [["2023-09-10T12:00:00Z", "2023-12-15T11:00:00Z"]] } }, "assets": { "capture_area": { @@ -175,8 +337,8 @@ "title": "Capture area", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "12206962afb78ee99fa7c5d24861da92377fc7a96f3ff1be2ec3df85d19fb6e4a5fa", - "file:size": 11370 + "file:checksum": "12203d26fc48f5ab8be755782e2f58ef8f9eca88e7834a5e62d29b41eff0b16bd370", + "file:size": 23640 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From ed18d475cc6b94a3bf0d26197b2c11ea81610990 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Mon, 29 Apr 2024 10:46:06 +1200 Subject: [PATCH 283/309] feat: import Bay of Plenty - Tauranga LiDAR 1m DEM (2022) EDS-29 (#286) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-37.7235084,176.2131557,z9?style=21-es-tauranga-2022-dem-1m-tqwlj&tileMatrix=NZTM2000Quad&debug&config=L8TuzSUutDHnXXtx7FHoqgkqDjgMiWx4jsyL1LATkAHgv5ju7wsbbUPnV7ff9yKCSv27JNBjSus6yuxf64eipTTRBeEqzaCXUPvfAcYnVHHNu6MxYUVdSNYVhfJLw4LesdNDhfnckCUNkfNhEGCMjNKrkfpLedabRKwi4K4DZXxFSb5jmZK2j3sjJ3Ssyzn7gu) **ODR destination path:** `s3://nz-elevation/bay-of-plenty/tauranga_2022/dem_1m/2193/` --- ...W190TPDAKZK8A0NM7NN9C4J-1713735249296.yaml | 7 +++ .../tauranga_2022/dem_1m/2193/collection.json | 63 +++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 publish-odr-parameters/01HW190TPDAKZK8A0NM7NN9C4J-1713735249296.yaml create mode 100644 stac/bay-of-plenty/tauranga_2022/dem_1m/2193/collection.json diff --git a/publish-odr-parameters/01HW190TPDAKZK8A0NM7NN9C4J-1713735249296.yaml b/publish-odr-parameters/01HW190TPDAKZK8A0NM7NN9C4J-1713735249296.yaml new file mode 100644 index 00000000..d72ad65d --- /dev/null +++ b/publish-odr-parameters/01HW190TPDAKZK8A0NM7NN9C4J-1713735249296.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-04/21-es-tauranga-2022-dem-1m-tqwlj/flat/", + "target": "s3://nz-elevation/bay-of-plenty/tauranga_2022/dem_1m/2193/", + "ticket": "EDS-29", + "copy_option": "--no-clobber", + "region": "bay-of-plenty" +} \ No newline at end of file diff --git a/stac/bay-of-plenty/tauranga_2022/dem_1m/2193/collection.json b/stac/bay-of-plenty/tauranga_2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..c4af22f0 --- /dev/null +++ b/stac/bay-of-plenty/tauranga_2022/dem_1m/2193/collection.json @@ -0,0 +1,63 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HW190TPDAKZK8A0NM7NN9C4J", + "title": "Bay of Plenty - Tauranga LiDAR 1m DEM (2022)", + "description": "Digital Elevation Model within the Bay of Plenty region captured in 2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0401.json", "type": "application/json" } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "BOPLASS", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Tauranga", + "extent": { + "spatial": { "bbox": [[175.9696946, -37.8919503, 176.4623641, -37.562256]] }, + "temporal": { "interval": [["2022-12-01T11:00:00Z", "2022-12-02T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122004b9ff9447f515775e415ca7b7b4f0739bf91a9abed049910c97dd274b211419", + "file:size": 4039 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 94118b25c0ee6f3eb8625ea9182715f0cf0ed487 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:51:23 +1200 Subject: [PATCH 284/309] feat: import Waikato - Hamilton LiDAR 1m DEM (2023) EDS-94 (#288) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-37.7456354,175.2609258,z9?style=21-es-hamilton-2023-dem-1m-gdldq&tileMatrix=NZTM2000Quad&debug&config=L8TuzSUutDHnXXtx7FHoqgkqDjgMiWx4jsyL1LATkAHgv5ju7wsbbUPnV7CcGeAT2c45Bhx9aaNgk7iNT6QDHYYjCYZdRsiB2iuLYFXnriSH7QZ2gApQywTWDyywNryQav9ThHGpKic353aF6xnJ6GAcKFeX1RZ5uQjztCqBuu9aK5yiABDEvEFyrsWHwWD1CD) **ODR destination path:** `s3://nz-elevation/waikato/hamilton_2023/dem_1m/2193/` --- ...W19G256CF3VN562X0251PAG-1713735738978.yaml | 7 ++ .../hamilton_2023/dem_1m/2193/collection.json | 64 +++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 publish-odr-parameters/01HW19G256CF3VN562X0251PAG-1713735738978.yaml create mode 100644 stac/waikato/hamilton_2023/dem_1m/2193/collection.json diff --git a/publish-odr-parameters/01HW19G256CF3VN562X0251PAG-1713735738978.yaml b/publish-odr-parameters/01HW19G256CF3VN562X0251PAG-1713735738978.yaml new file mode 100644 index 00000000..89c7d5f4 --- /dev/null +++ b/publish-odr-parameters/01HW19G256CF3VN562X0251PAG-1713735738978.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-04/21-es-hamilton-2023-dem-1m-gdldq/flat/", + "target": "s3://nz-elevation/waikato/hamilton_2023/dem_1m/2193/", + "ticket": "EDS-94", + "copy_option": "--no-clobber", + "region": "waikato" +} \ No newline at end of file diff --git a/stac/waikato/hamilton_2023/dem_1m/2193/collection.json b/stac/waikato/hamilton_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..88033b96 --- /dev/null +++ b/stac/waikato/hamilton_2023/dem_1m/2193/collection.json @@ -0,0 +1,64 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HW19G256CF3VN562X0251PAG", + "title": "Waikato - Hamilton LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Waikato region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0502.json", "type": "application/json" } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "Hamilton City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hamilton", + "extent": { + "spatial": { "bbox": [[175.0930298, -37.9097967, 175.4295474, -37.5845465]] }, + "temporal": { "interval": [["2023-11-09T11:00:00Z", "2023-11-09T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204aae44985b4860a0bb94ca5bbdeaacb1445d3ef74a1353eadfaabeb10bf4043b", + "file:size": 1512 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 4b2db96dfd8712ec1efeb2e52e5d579cd1c410d3 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Mon, 29 Apr 2024 12:00:32 +1200 Subject: [PATCH 285/309] feat: import Waikato - Hamilton LiDAR 1m DSM (2023) EDS-94 (#287) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-37.7456354,175.2609258,z9?style=21-es-hamilton-2023-dsm-1m-qwv92&tileMatrix=NZTM2000Quad&debug&config=L8TuzSUutDHnXXtx7FHoqgkqDjgMiWx4jsyL1LATkAHgv5ju7wsbbUPnV7CcGeAT2c45Bhx9aaNgk7nn1cB1zuB9Qz2X4NLLBBP31uUauopguXwq9NUzUd2L9eDZ9fgwGD8vUygougSTUSX1347vWzWBTv5183KF8dDsLE5fVSN2DZkbY35ZxVaY74YPNPvWf3) **ODR destination path:** `s3://nz-elevation/waikato/hamilton_2023/dsm_1m/2193/` --- ...W19G257AZSE4YDB819RPMW9-1713735736735.yaml | 7 ++ .../hamilton_2023/dsm_1m/2193/collection.json | 64 +++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 publish-odr-parameters/01HW19G257AZSE4YDB819RPMW9-1713735736735.yaml create mode 100644 stac/waikato/hamilton_2023/dsm_1m/2193/collection.json diff --git a/publish-odr-parameters/01HW19G257AZSE4YDB819RPMW9-1713735736735.yaml b/publish-odr-parameters/01HW19G257AZSE4YDB819RPMW9-1713735736735.yaml new file mode 100644 index 00000000..302546f8 --- /dev/null +++ b/publish-odr-parameters/01HW19G257AZSE4YDB819RPMW9-1713735736735.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-04/21-es-hamilton-2023-dsm-1m-qwv92/flat/", + "target": "s3://nz-elevation/waikato/hamilton_2023/dsm_1m/2193/", + "ticket": "EDS-94", + "copy_option": "--no-clobber", + "region": "waikato" +} \ No newline at end of file diff --git a/stac/waikato/hamilton_2023/dsm_1m/2193/collection.json b/stac/waikato/hamilton_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..a0f5f137 --- /dev/null +++ b/stac/waikato/hamilton_2023/dsm_1m/2193/collection.json @@ -0,0 +1,64 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HW19G257AZSE4YDB819RPMW9", + "title": "Waikato - Hamilton LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Waikato region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0502.json", "type": "application/json" } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "Hamilton City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hamilton", + "extent": { + "spatial": { "bbox": [[175.0930298, -37.9097967, 175.4295474, -37.5845465]] }, + "temporal": { "interval": [["2023-11-09T11:00:00Z", "2023-11-09T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220d5a11c9f001c69baef0e1184a643d7f3db51969b14e9078214e86cad59465ef8", + "file:size": 1510 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From c30f303bb9821ae76c794505b838be63c7beb3b7 Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Tue, 30 Apr 2024 09:26:53 +1200 Subject: [PATCH 286/309] fix: change Gisborne 2023 DSM lifecycle to "ongoing" TDE-1159 (#290) The current lifecycle status for this dataset is "ongoing", with one more supply to be processed. --- stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json b/stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json index 1de43c8b..19375b55 100644 --- a/stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json +++ b/stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json @@ -2,7 +2,7 @@ "type": "Collection", "stac_version": "1.0.0", "id": "01HQMDFZP3KT8EFJK778REJJR1", - "title": "Gisborne LiDAR 1m DSM (2023)", + "title": "Gisborne LiDAR 1m DSM (2023) - Draft", "description": "Digital Surface Model within the Gisborne region captured in 2023.", "license": "CC-BY-4.0", "links": [ @@ -161,7 +161,7 @@ { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], - "linz:lifecycle": "completed", + "linz:lifecycle": "ongoing", "linz:geospatial_category": "dsm", "linz:region": "gisborne", "linz:security_classification": "unclassified", From 73f7c3d1096758e05442d778a28cd3ea7235307c Mon Sep 17 00:00:00 2001 From: Megan Davidson <33814653+MDavidson17@users.noreply.github.com> Date: Fri, 3 May 2024 15:20:21 +1200 Subject: [PATCH 287/309] ci: restrict concurrency to STAC sync step (#291) copying across: https://github.com/linz/imagery/pull/394 --- .github/workflows/publish.yml | 45 +++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 21 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 79b465a0..a9179d97 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,7 +6,6 @@ jobs: main: name: Validate STAC runs-on: ubuntu-latest - concurrency: validate-${{ github.ref }} steps: - uses: linz/action-typescript@dee99184c4305aea6c380a52db9b2d7abaaa3e78 # v3 @@ -34,10 +33,9 @@ jobs: - name: Run actionlint to check workflow files run: docker run --volume="${PWD}:/repo" --workdir=/repo actionlint -color - deploy-prod: - name: Publish ODR & Sync STAC + publish-odr: + name: Publish ODR runs-on: ubuntu-latest - concurrency: publish-${{ github.ref }} needs: main if: ${{ github.ref == 'refs/heads/master' }} @@ -60,23 +58,6 @@ jobs: with: node-version: '18.x' - # FIXME: catalog.json is not pushed to the repository (temporary solution) - - name: Create STAC Catalog - uses: docker://ghcr.io/linz/argo-tasks:v3 - with: - args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ - - - name: Validate STAC Catalog - uses: docker://ghcr.io/linz/argo-tasks:v3 - with: - args: stac-validate /github/workspace/stac/catalog.json - - - name: Validate STAC Collections - run: | - # Enable double star operator - shopt -s globstar - docker run -v "${PWD}:${PWD}" ghcr.io/linz/argo-tasks:v3 stac-validate "$PWD"/stac/**/collection.json - - name: Setup kubectl uses: azure/setup-kubectl@901a10e89ea615cf61f57ac05cecdf23e7de06d8 # v3 with: @@ -115,6 +96,23 @@ jobs: ./argo-linux-amd64 submit --wait --from wftmpl/copy -n argo -f "$file" -p aws_role_config_path="s3://linz-bucket-config/config-write.open-data-registry.json" -p exclude="collection.json$" --generate-name "publish-odr-file-copy-" done + sync-stac: + name: Sync STAC files + runs-on: ubuntu-latest + concurrency: publish-${{ github.ref }} + needs: publish-odr + if: ${{ github.ref == 'refs/heads/master' }} + + environment: + name: prod + + permissions: + id-token: write + contents: read + + steps: + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - name: AWS Configure uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a # v4 with: @@ -130,6 +128,11 @@ jobs: role-to-assume: ${{ secrets.AWS_ODR_DATA_MANAGER_ROLE }} role-chaining: true + - name: Create STAC Catalog + uses: docker://ghcr.io/linz/argo-tasks:v3 + with: + args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ + # Sync STAC files only on push to 'master' - name: Sync STAC if: ${{ !contains(github.event.head_commit.message, '[skip-sync]')}} From 0c47810e112a4624be0c4b2f8f38e405e03c38c6 Mon Sep 17 00:00:00 2001 From: paulfouquet <86932794+paulfouquet@users.noreply.github.com> Date: Mon, 13 May 2024 10:43:52 +1200 Subject: [PATCH 288/309] ci: upgrade argo-tasks from v3 to v4 (#293) --- .github/workflows/publish.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a9179d97..da9df0f5 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,6 +1,6 @@ name: Publish -on: [ push ] +on: [push] jobs: main: @@ -12,12 +12,12 @@ jobs: # FIXME: catalog.json is not pushed to the repository (temporary solution) - name: Create STAC Catalog - uses: docker://ghcr.io/linz/argo-tasks:v3 + uses: docker://ghcr.io/linz/argo-tasks:v4 with: args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ - name: Validate STAC Catalog - uses: docker://ghcr.io/linz/argo-tasks:v3 + uses: docker://ghcr.io/linz/argo-tasks:v4 with: args: stac-validate /github/workspace/stac/catalog.json @@ -25,7 +25,7 @@ jobs: run: | # Enable double star operator shopt -s globstar - docker run -v "$PWD:$PWD" ghcr.io/linz/argo-tasks:v3 stac-validate "$PWD"/stac/**/collection.json + docker run -v "$PWD:$PWD" ghcr.io/linz/argo-tasks:v4 stac-validate "$PWD"/stac/**/collection.json - name: Download actionlint run: docker build --tag actionlint - < .github/workflows/actionlint.dockerfile @@ -129,13 +129,13 @@ jobs: role-chaining: true - name: Create STAC Catalog - uses: docker://ghcr.io/linz/argo-tasks:v3 + uses: docker://ghcr.io/linz/argo-tasks:v4 with: args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ # Sync STAC files only on push to 'master' - name: Sync STAC if: ${{ !contains(github.event.head_commit.message, '[skip-sync]')}} - uses: docker://ghcr.io/linz/argo-tasks:v3 + uses: docker://ghcr.io/linz/argo-tasks:v4 with: args: stac-sync /github/workspace/stac/ s3://nz-elevation/ From 9a619f5fc033170f462153bd2e12292d25ebcef2 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Mon, 27 May 2024 10:35:57 +1200 Subject: [PATCH 289/309] feat: import Hawke's Bay LiDAR 1m DEM (2023) EDS-72 (#294) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-39.5274009,176.6297527,z9?style=21-es-hawkes-bay-2023-dem-1m-64fc5&tileMatrix=NZTM2000Quad&debug&config=7Rf6qYRV3P6uApiq14tyUQJCDRocqtRdk496uQ8L1Q2yVWRh1u6WMyMA6DHxzqX4XYHpJyMnq2bAteGoLLj7fw3gMr2zAYZbmYHxP5NYdLnrt5fiaBJPHJ4F4nQ3tg43NvsJqWRwKM7rh2MwRN8mxLa582D1hoSbsDSsFeJ3oxhRSY6HsVCVKmbaP85kx5mTtAQZf) **ODR destination path:** `s3://nz-elevation/hawkes-bay/hawkes-bay_2023/dem_1m/2193/` --------- Co-authored-by: Alice Fage Co-authored-by: Alice Fage --- ...YCJ3EXF37J4A9130AH7Q2RF-1716261456688.yaml | 7 + .../dem_1m/2193/collection.json | 1294 +++++++++++++++++ 2 files changed, 1301 insertions(+) create mode 100644 publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1716261456688.yaml create mode 100644 stac/hawkes-bay/hawkes-bay_2023/dem_1m/2193/collection.json diff --git a/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1716261456688.yaml b/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1716261456688.yaml new file mode 100644 index 00000000..c3ae8bf4 --- /dev/null +++ b/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1716261456688.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-05/21-es-hawkes-bay-2023-dem-1m-64fc5/flat/", + "target": "s3://nz-elevation/hawkes-bay/hawkes-bay_2023/dem_1m/2193/", + "ticket": "EDS-72", + "copy_option": "--no-clobber", + "region": "hawkes-bay" +} \ No newline at end of file diff --git a/stac/hawkes-bay/hawkes-bay_2023/dem_1m/2193/collection.json b/stac/hawkes-bay/hawkes-bay_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..812ce501 --- /dev/null +++ b/stac/hawkes-bay/hawkes-bay_2023/dem_1m/2193/collection.json @@ -0,0 +1,1294 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HYCJ3EXF37J4A9130AH7Q2RF", + "title": "Hawke's Bay LiDAR 1m DEM (2023) - Draft", + "description": "Digital Elevation Model within the Hawke's Bay region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "rel": "item", + "href": "./BH36_10000_0404.json", + "type": "application/json", + "file:checksum": "122028a958bd7fa7d991129576a63b9eed41fb069fbd8bda7984fc7baf872053b9ff" + }, + { + "rel": "item", + "href": "./BH36_10000_0405.json", + "type": "application/json", + "file:checksum": "122070f62f8090c7377dabe0506439df91345b599bba2ebf08aff33385ff4ceedae3" + }, + { + "rel": "item", + "href": "./BH36_10000_0503.json", + "type": "application/json", + "file:checksum": "122095a81fe1a7ec0c86e6385a5c42f892ef699c98ae5c9dd4a48d2906ad85ace0cb" + }, + { + "rel": "item", + "href": "./BH36_10000_0504.json", + "type": "application/json", + "file:checksum": "122017cebd91fa4e49468cd028b7f7da5745ee393cb52ad3f8d96cd2230b8a4a7306" + }, + { + "rel": "item", + "href": "./BH36_10000_0505.json", + "type": "application/json", + "file:checksum": "122028c777d0ae1bdc80866406aae120055adf3379e1fa5f37b3e29f821acea52e80" + }, + { + "rel": "item", + "href": "./BH37_10000_0501.json", + "type": "application/json", + "file:checksum": "12209b1bf00f9ee6f7777f97e17a0ab04582114aa1b70a4e026ad6103ec81ae7ff7b" + }, + { + "rel": "item", + "href": "./BH37_10000_0502.json", + "type": "application/json", + "file:checksum": "12205d4d39b6490d5a1e5176ef4b606148dfe58167fc6e5ca5971860d5d1225c815b" + }, + { + "rel": "item", + "href": "./BH38_10000_0304.json", + "type": "application/json", + "file:checksum": "1220ccf2d794c62ade5dd13b7371ef1d99b0800abc9e8f4880fc1586f802d116642e" + }, + { + "rel": "item", + "href": "./BH38_10000_0305.json", + "type": "application/json", + "file:checksum": "122042c9bc495214beba80686ff17c4731b73f9df1bcf4b772d04a03568c91738a79" + }, + { + "rel": "item", + "href": "./BH38_10000_0403.json", + "type": "application/json", + "file:checksum": "1220aea474d3a605657fbd33661cd723229a405901813de007542e0e69f6ea30279d" + }, + { + "rel": "item", + "href": "./BH38_10000_0404.json", + "type": "application/json", + "file:checksum": "122033905a9a9ec5e3f378067187a3d907d6f2a61241855fbc23c236469d819db445" + }, + { + "rel": "item", + "href": "./BH38_10000_0405.json", + "type": "application/json", + "file:checksum": "1220cefb2c67763c53959a2794a0cce71f08ffcfdf4985d3c4268dc83ae87c5640c5" + }, + { + "rel": "item", + "href": "./BH38_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d794b9ae7453eac568c0922c28877fe65aba9e87b309ea6be0bb1b18db1f92c8" + }, + { + "rel": "item", + "href": "./BH38_10000_0504.json", + "type": "application/json", + "file:checksum": "12200a9c044db4579b96259caa3c7dd873a80b336b9e2df161a2a632d27efb5b420a" + }, + { + "rel": "item", + "href": "./BH38_10000_0505.json", + "type": "application/json", + "file:checksum": "1220b833632cc11005323ad3619e83f05070c573ad0a89d689bd77023d0f11deedf6" + }, + { + "rel": "item", + "href": "./BH39_10000_0301.json", + "type": "application/json", + "file:checksum": "122045866446fd4c1fb8eb9f4868435d36577e868142e66bc43007bbda415ba4c988" + }, + { + "rel": "item", + "href": "./BH39_10000_0302.json", + "type": "application/json", + "file:checksum": "1220558941615a9cbdf0550a864ec0f2b44ddd49121181f90756ee26b4b0f2ef8cff" + }, + { + "rel": "item", + "href": "./BH39_10000_0303.json", + "type": "application/json", + "file:checksum": "122019990907d4a700165f7a140d2eb79ec8d32de4498748dac1c247b0b71aedeca1" + }, + { + "rel": "item", + "href": "./BH39_10000_0304.json", + "type": "application/json", + "file:checksum": "122082be0e86ffafb7a972fca606ae04af99249d614777cf9eab76145af1cf50773b" + }, + { + "rel": "item", + "href": "./BH39_10000_0305.json", + "type": "application/json", + "file:checksum": "12203e3b9f3069a948d406a3420bf0f30f9ef199677d38d2881ebf056512f0788404" + }, + { + "rel": "item", + "href": "./BH39_10000_0401.json", + "type": "application/json", + "file:checksum": "122083f3a469dc3b72f6b7e4ce9b2c820f8061db3e9c1e7ef308eb0dc00ab4d25e15" + }, + { + "rel": "item", + "href": "./BH39_10000_0402.json", + "type": "application/json", + "file:checksum": "12201015cfbe1c7e4fa70767a79530a8b554f9a198e14b983a6021ce7060de68e718" + }, + { + "rel": "item", + "href": "./BH39_10000_0403.json", + "type": "application/json", + "file:checksum": "122089565d9fa7a995cb5a042701577c9f7915fd1700fe0b64549a8b40569966fca1" + }, + { + "rel": "item", + "href": "./BH39_10000_0404.json", + "type": "application/json", + "file:checksum": "122006af5671c4b377a791bd07679727705b8cc892ee87ff390cae427e0c5713b6f4" + }, + { + "rel": "item", + "href": "./BH39_10000_0405.json", + "type": "application/json", + "file:checksum": "12208ddf6aa2e0ffd8e5211b7ef053309ad355ec43859d8ceced81d59fdca63aeb7b" + }, + { + "rel": "item", + "href": "./BH39_10000_0501.json", + "type": "application/json", + "file:checksum": "1220bcbe6727a6baf6e125529c806f9951fee31aede20fef13b4d3d61b36be600c35" + }, + { + "rel": "item", + "href": "./BH39_10000_0502.json", + "type": "application/json", + "file:checksum": "12201097a857f5aadad9a56bc29cdc33b69e51f39cbb5236d8c45752fb7f5c0adcc6" + }, + { + "rel": "item", + "href": "./BH39_10000_0503.json", + "type": "application/json", + "file:checksum": "1220c9ca431cfb38e28410afab7051ccd81dfa26617fdfef03d39c43c63c9adc69ed" + }, + { + "rel": "item", + "href": "./BH39_10000_0504.json", + "type": "application/json", + "file:checksum": "1220863ba098ad943b919b3a903e5c9d8d37016481ed341a41ac732f1995db8ef7c2" + }, + { + "rel": "item", + "href": "./BH39_10000_0505.json", + "type": "application/json", + "file:checksum": "122042c85d87b403ab3a145eedd3a7efad4a8fb8e3c4966603c1fce0946d75a7aef0" + }, + { + "rel": "item", + "href": "./BH40_10000_0401.json", + "type": "application/json", + "file:checksum": "12202826f1213952f801c1b4724a341bff5b784ffe3cd19680e0f8699a5e79f8f84d" + }, + { + "rel": "item", + "href": "./BH40_10000_0402.json", + "type": "application/json", + "file:checksum": "1220e003d4114ea62b3e4768c1ab8222d2b7b6eedc2f075323ad18a000c4ad0b897a" + }, + { + "rel": "item", + "href": "./BH40_10000_0501.json", + "type": "application/json", + "file:checksum": "1220fb2fd78d6f951fa000bfb0a2c73dd56e9248a7ca16cfa1bb969a9d31546ba742" + }, + { + "rel": "item", + "href": "./BH40_10000_0502.json", + "type": "application/json", + "file:checksum": "12201a0bbe8b5c50a175aeb4e0614df8ebdaa1ee81112df1c020b448016e2299894c" + }, + { + "rel": "item", + "href": "./BH40_10000_0503.json", + "type": "application/json", + "file:checksum": "1220b0ff8418fe94bc021c4bbd19943f1803d896d63194096b1f24d4bf85f23fdecf" + }, + { + "rel": "item", + "href": "./BJ36_10000_0103.json", + "type": "application/json", + "file:checksum": "12204522c6362b528b19a1b02d5d777692270d621b91fb8d34014b30c92387cfc419" + }, + { + "rel": "item", + "href": "./BJ36_10000_0104.json", + "type": "application/json", + "file:checksum": "12200a6c2b4dca1fde9d8650bccebc6194db24d03872f8956d1f8dbff24851441ad1" + }, + { + "rel": "item", + "href": "./BJ36_10000_0105.json", + "type": "application/json", + "file:checksum": "12207396f3d997a1d52d8820664196528c788a2d8675357774884428bd77191727af" + }, + { + "rel": "item", + "href": "./BJ36_10000_0203.json", + "type": "application/json", + "file:checksum": "12202c815c3a9fb9230795563091f452617ebe713a6e825b5185f982bc3da906732c" + }, + { + "rel": "item", + "href": "./BJ36_10000_0204.json", + "type": "application/json", + "file:checksum": "1220b03c1e9c28b5cbf6cc207f43fa28029bde99bf802e635582dd509b812ee36b51" + }, + { + "rel": "item", + "href": "./BJ36_10000_0205.json", + "type": "application/json", + "file:checksum": "122052901148a3d44bb6e6c3c4a0b4e529abf4976d5ef1d287b9adb9266b7515efac" + }, + { + "rel": "item", + "href": "./BJ36_10000_0303.json", + "type": "application/json", + "file:checksum": "1220662ebfe0125fc455ec8bf42825272940bea3b5ac24f817aafadc75f2f424dcf7" + }, + { + "rel": "item", + "href": "./BJ36_10000_0304.json", + "type": "application/json", + "file:checksum": "12209884baef195d48fbf3ebb07cfdd6f8b5dba8ffa8c8138fc97fd1635092f9818b" + }, + { + "rel": "item", + "href": "./BJ36_10000_0305.json", + "type": "application/json", + "file:checksum": "122089f9e32c5bda09fb921a0bf2448ae58f3d620c994949c46bf21e57a138f9aa69" + }, + { + "rel": "item", + "href": "./BJ36_10000_0403.json", + "type": "application/json", + "file:checksum": "122040452693ef4a0b5434c922e16b287130284f42112dd9a0afc9782c5189137f84" + }, + { + "rel": "item", + "href": "./BJ36_10000_0404.json", + "type": "application/json", + "file:checksum": "1220d3990e1de81a32e0d73a30d8521dafb773a8a686ddd59f2fea1124e87ed118de" + }, + { + "rel": "item", + "href": "./BJ36_10000_0405.json", + "type": "application/json", + "file:checksum": "12209d05333f7c79649a2db53bfcbddfa577be02d1e39b38decedb0f09507ac00835" + }, + { + "rel": "item", + "href": "./BJ36_10000_0504.json", + "type": "application/json", + "file:checksum": "122023e6552cf616c4a225a18ae74de2b51137405b0771243d6fe953b9f08c710df2" + }, + { + "rel": "item", + "href": "./BJ36_10000_0505.json", + "type": "application/json", + "file:checksum": "1220ac66dc02b05173bc42decfcea8a1a960674b05e9204b21cb68ddc80e94425e4d" + }, + { + "rel": "item", + "href": "./BJ37_10000_0101.json", + "type": "application/json", + "file:checksum": "1220cf487be348995e6607e0aac3eca95bc742651e169b6657e02ef66821b0d83cb3" + }, + { + "rel": "item", + "href": "./BJ37_10000_0102.json", + "type": "application/json", + "file:checksum": "1220b3f7245f1c19752e5ccb9e323d6428a42ac96c9c7d13165323269e8491c0e475" + }, + { + "rel": "item", + "href": "./BJ37_10000_0103.json", + "type": "application/json", + "file:checksum": "122053eeae7e7459c0b9fd17ff4feb1f252afae59d53f07f34953fb9055e29807b7d" + }, + { + "rel": "item", + "href": "./BJ37_10000_0104.json", + "type": "application/json", + "file:checksum": "1220800bdb304cc2557ac02ff86ab623b8192a849b2db07c1180a125cb1fc3ce9977" + }, + { + "rel": "item", + "href": "./BJ37_10000_0201.json", + "type": "application/json", + "file:checksum": "122034f729914259729df0bcba82109e52e8bc3eb2690d8445261041628f5c81e6c2" + }, + { + "rel": "item", + "href": "./BJ37_10000_0202.json", + "type": "application/json", + "file:checksum": "12202e615b1a4b7db2bde2fe01c268458a51b9cbc2a307a499c24f8957cb27eecac3" + }, + { + "rel": "item", + "href": "./BJ37_10000_0203.json", + "type": "application/json", + "file:checksum": "12202778d5011f7560a44cace229c94d4c1ffb32f490105708e0b29a8662fcc35aa9" + }, + { + "rel": "item", + "href": "./BJ37_10000_0204.json", + "type": "application/json", + "file:checksum": "122072265734f94fe191f7b0a11469e19b55b36ca4acbf3972a1a0642404644c5921" + }, + { + "rel": "item", + "href": "./BJ37_10000_0205.json", + "type": "application/json", + "file:checksum": "1220e817d55d6a4397143a5a258c2cac00547c33d042123e6d2f74b017d03325f710" + }, + { + "rel": "item", + "href": "./BJ37_10000_0301.json", + "type": "application/json", + "file:checksum": "12201a1a67bbed8f14b8c984527412eedca58c3b263f7b404786643cd2174419986b" + }, + { + "rel": "item", + "href": "./BJ37_10000_0302.json", + "type": "application/json", + "file:checksum": "1220f0e610d4d5a764f53117e0ea48dd7272f189a449a16933800f3a98dac90f6bfe" + }, + { + "rel": "item", + "href": "./BJ37_10000_0303.json", + "type": "application/json", + "file:checksum": "1220cc42042c3c76e67582b7fa8e8c7d494ccac05cbb91f6d0c843b99fce9f30f9e0" + }, + { + "rel": "item", + "href": "./BJ37_10000_0304.json", + "type": "application/json", + "file:checksum": "1220ad735ea74756028316b7ae63831352abe24189f93ddb7626109fe1670232f8a0" + }, + { + "rel": "item", + "href": "./BJ37_10000_0305.json", + "type": "application/json", + "file:checksum": "12203aeb902a1298eb122153d7f9ff6ed798c0d1083dc424c702e8e50346a59120e7" + }, + { + "rel": "item", + "href": "./BJ37_10000_0401.json", + "type": "application/json", + "file:checksum": "1220d5252e0626616ae8c44efb668bb9f07ac86518bd0f44bea7418abea99df02478" + }, + { + "rel": "item", + "href": "./BJ37_10000_0402.json", + "type": "application/json", + "file:checksum": "122096ffda0932904560bec9041110bd7e94bdbd9cb64a5636ff03142986e580bb46" + }, + { + "rel": "item", + "href": "./BJ37_10000_0403.json", + "type": "application/json", + "file:checksum": "12205c6f126a39c5b38cbe81ab7f57e1f4abdd7b093aa606e7faae819fbc6fb50393" + }, + { + "rel": "item", + "href": "./BJ37_10000_0404.json", + "type": "application/json", + "file:checksum": "12201ce3b01971384e4e2d8c688d7da0fbe648e4422da20a47868ec249c17fbe8a9e" + }, + { + "rel": "item", + "href": "./BJ37_10000_0405.json", + "type": "application/json", + "file:checksum": "1220092ab6177ca351cb9aa340c3ccf03592a875792d079e5122ac045de76c46b059" + }, + { + "rel": "item", + "href": "./BJ37_10000_0501.json", + "type": "application/json", + "file:checksum": "122093f0c2945ca832fa3fa5bb6fa18286e7ff81301c357b0bc0544c50d45ec08ec3" + }, + { + "rel": "item", + "href": "./BJ37_10000_0502.json", + "type": "application/json", + "file:checksum": "122049a979767eb5df0269b103a2739542e93b2a04b1b74e75d9b438dae04e9739c1" + }, + { + "rel": "item", + "href": "./BJ37_10000_0503.json", + "type": "application/json", + "file:checksum": "12205424f4c00c77c371c5bfa26ca6bc43f7e5f8960251b2918f002efd5be6d3c703" + }, + { + "rel": "item", + "href": "./BJ37_10000_0504.json", + "type": "application/json", + "file:checksum": "12200c778b324f1a72d59f460a255253d9277d5dc4f04827d92f42c9ae58ee908ac3" + }, + { + "rel": "item", + "href": "./BJ37_10000_0505.json", + "type": "application/json", + "file:checksum": "1220b108e4d17f2497c9cc3f607fc46ac2ad96753f66d630d75c1ef8c92ad2757cae" + }, + { + "rel": "item", + "href": "./BJ38_10000_0101.json", + "type": "application/json", + "file:checksum": "122043c6e04ea1562a2ab0397d36c7849d7480fdeb3c7c9e4c87d291cb7fdc5b2b2f" + }, + { + "rel": "item", + "href": "./BJ38_10000_0102.json", + "type": "application/json", + "file:checksum": "1220ba4eb8121be5ea5ac70bde744691ff52cdd7ec4d74c75efd8d8d0e77bcfabfeb" + }, + { + "rel": "item", + "href": "./BJ38_10000_0103.json", + "type": "application/json", + "file:checksum": "122025bbeaf0b5288021afd76430d1157e4a32cb7ad02da184c161256d3fb03679b0" + }, + { + "rel": "item", + "href": "./BJ38_10000_0104.json", + "type": "application/json", + "file:checksum": "122017beda5053bea46c9662d5a35826c360671012e01678bb5e7d6e7f9c30f268ff" + }, + { + "rel": "item", + "href": "./BJ38_10000_0105.json", + "type": "application/json", + "file:checksum": "1220cd5de34094ddb22cae9a00590f6e80c4e57d3bb6b8381c9a0d6d50590aee37c0" + }, + { + "rel": "item", + "href": "./BJ38_10000_0201.json", + "type": "application/json", + "file:checksum": "1220508fcba7a5f64da8d6587a9a9ef0d633f5b1e8c4257080e4dc28d39a4a03e3b6" + }, + { + "rel": "item", + "href": "./BJ38_10000_0202.json", + "type": "application/json", + "file:checksum": "122043c6d33143326b4433f808f88129ea1ffaddf88c6d834d23bc2ab53fe9dc1bb7" + }, + { + "rel": "item", + "href": "./BJ38_10000_0203.json", + "type": "application/json", + "file:checksum": "1220d1630d93e8acf0e42923ff18eda9bc3742171358e376e96e33cac93048286f40" + }, + { + "rel": "item", + "href": "./BJ38_10000_0204.json", + "type": "application/json", + "file:checksum": "122092a616bfc6ba0e827cfcd29424f087cb4619f2a28738a035e8cb3ef8205238d0" + }, + { + "rel": "item", + "href": "./BJ38_10000_0205.json", + "type": "application/json", + "file:checksum": "12207982f20d4b644644397022332ddfce776ca8b7adf30bd39470ef72a311f40c61" + }, + { + "rel": "item", + "href": "./BJ38_10000_0301.json", + "type": "application/json", + "file:checksum": "1220b99a79ddd672b62d5a798800d36eb8c9e2f3e572b554b9a2ba3a4a34f3df7b73" + }, + { + "rel": "item", + "href": "./BJ38_10000_0302.json", + "type": "application/json", + "file:checksum": "12201fc3a26bb7f84d09fef46175b255ad86afdb7877537c9bcd0b5caf416afa69c5" + }, + { + "rel": "item", + "href": "./BJ38_10000_0303.json", + "type": "application/json", + "file:checksum": "1220a4f58421213014726faa8dd04d829070c255ae8c9d204e6b6a3dbebc04e260e9" + }, + { + "rel": "item", + "href": "./BJ38_10000_0304.json", + "type": "application/json", + "file:checksum": "12209c77df3e2b77f75da5beccb92db12f8759fb6a756566895b7aa9cce249e301ee" + }, + { + "rel": "item", + "href": "./BJ38_10000_0305.json", + "type": "application/json", + "file:checksum": "122015a0ffa524e7e47c22b2a471d22210e9f642765d741068af50e8afa1ef540d20" + }, + { + "rel": "item", + "href": "./BJ38_10000_0401.json", + "type": "application/json", + "file:checksum": "1220a42b3b9b6bbaeb957b6b2a25d021cd2dab674467d45250418c756d4d67286c98" + }, + { + "rel": "item", + "href": "./BJ38_10000_0402.json", + "type": "application/json", + "file:checksum": "12203563800044ef48ce1f35adc500e2849a041f983562b5dc514f0a70f280c8b248" + }, + { + "rel": "item", + "href": "./BJ38_10000_0403.json", + "type": "application/json", + "file:checksum": "122066628daf7460f1ea96f4ea51c2c66a250ed1b193e4b521bec2f1531a40c00b7e" + }, + { + "rel": "item", + "href": "./BJ38_10000_0404.json", + "type": "application/json", + "file:checksum": "1220aeabcacd5581ea3269477f6bb018db6e3aad5a68ca6cddc17d5bb7df37806a2e" + }, + { + "rel": "item", + "href": "./BJ38_10000_0405.json", + "type": "application/json", + "file:checksum": "12201f2abc6b43441342a37fcad565284113be210465736e52bf36eaadc68e3bd0dc" + }, + { + "rel": "item", + "href": "./BJ38_10000_0501.json", + "type": "application/json", + "file:checksum": "1220d207cc440e6e46fb4de517248eaed6a4e9d30d031da32b47f1535b428a58cdb3" + }, + { + "rel": "item", + "href": "./BJ38_10000_0502.json", + "type": "application/json", + "file:checksum": "12200b8cfe7f6ec95b2a1cdead699585f1acf3a9b6762aad9ed7b7fbf17022e8b83f" + }, + { + "rel": "item", + "href": "./BJ38_10000_0503.json", + "type": "application/json", + "file:checksum": "1220744bbc169ee59f6a1c2bb6fdd3e556752e3da4601a70046b75d8f5259e844160" + }, + { + "rel": "item", + "href": "./BJ38_10000_0504.json", + "type": "application/json", + "file:checksum": "12204f727740bfd2007bab0aabe5dde7db29b499a708095ae77e7210597aaaf465cd" + }, + { + "rel": "item", + "href": "./BJ38_10000_0505.json", + "type": "application/json", + "file:checksum": "1220b732097c9ab8bf7a129154b78cdfe7a924ce3c7f95e27c1661167af15686ec40" + }, + { + "rel": "item", + "href": "./BJ39_10000_0101.json", + "type": "application/json", + "file:checksum": "122028006e4dd9a66b43dbd2d33a12282d27cccadb8274de104fbde8d3624671e58d" + }, + { + "rel": "item", + "href": "./BJ39_10000_0102.json", + "type": "application/json", + "file:checksum": "12208b5a55ddf8f983c82f56e76e96ee437cd5eba91b6f1987d23bcad1e419f567a4" + }, + { + "rel": "item", + "href": "./BJ39_10000_0103.json", + "type": "application/json", + "file:checksum": "1220bc951637f301a1206404bd4a8fe9c1a8f876673264f38a8d508c20f8e9de78fe" + }, + { + "rel": "item", + "href": "./BJ39_10000_0104.json", + "type": "application/json", + "file:checksum": "1220d996ccedab0a358e24b7e4ecf1edc78e4873fd05883070dad3f02b526eb4a43a" + }, + { + "rel": "item", + "href": "./BJ39_10000_0105.json", + "type": "application/json", + "file:checksum": "122048b12b4f49cc9b1c754df66e8bcd4ad2562bd1ad7b3c9b2280addd40b1341de4" + }, + { + "rel": "item", + "href": "./BJ39_10000_0201.json", + "type": "application/json", + "file:checksum": "1220ad065f368e47ec4ac632295968a6d9cb7a0c85682c0d8d0dc963a6acd4a00675" + }, + { + "rel": "item", + "href": "./BJ39_10000_0202.json", + "type": "application/json", + "file:checksum": "122048f03a6abee6d25e9f66b172e55c531975e35884af5b424dd92e6860480cc360" + }, + { + "rel": "item", + "href": "./BJ39_10000_0203.json", + "type": "application/json", + "file:checksum": "1220f86cdc2be4066aa72a7c6e9a4a83cf109e7471ee9a5dfe7be22865f3a923c1ee" + }, + { + "rel": "item", + "href": "./BJ39_10000_0204.json", + "type": "application/json", + "file:checksum": "1220950083ce635ae7058c27b2a448170a5a67b356a281c08fd12b90f90205c09701" + }, + { + "rel": "item", + "href": "./BJ39_10000_0205.json", + "type": "application/json", + "file:checksum": "12208cddc8e68b788f8d2863f7ed0b70eca55d5f867d7cecaee8898feba31dfa541c" + }, + { + "rel": "item", + "href": "./BJ39_10000_0301.json", + "type": "application/json", + "file:checksum": "122023130af4511a76a5975bd8cc99ad67faed4c6662984db45d31ca82291b7b377c" + }, + { + "rel": "item", + "href": "./BJ39_10000_0302.json", + "type": "application/json", + "file:checksum": "122047b76debc1036794e9e7ece4a0d0860e11d053a9e799bd8c347fc6c0d27de57b" + }, + { + "rel": "item", + "href": "./BJ39_10000_0303.json", + "type": "application/json", + "file:checksum": "1220bf7b4089248f58a8e94d7369a9af4928d8c1ea971de252f6134c1d63e2a526f5" + }, + { + "rel": "item", + "href": "./BJ39_10000_0304.json", + "type": "application/json", + "file:checksum": "122071f8bf9a1e5ce58f57e03a28f19bf02c91275c9ec509ee36503b4651bd2f9df8" + }, + { + "rel": "item", + "href": "./BJ39_10000_0305.json", + "type": "application/json", + "file:checksum": "1220a94a371fc1ebdc6084cc1b13113003ce852c0108e1b1df7c2fa0b602ce065088" + }, + { + "rel": "item", + "href": "./BJ39_10000_0401.json", + "type": "application/json", + "file:checksum": "122033ef9192c9eb0e162f7839584ba944febb7b6df30d653980e9efe79f6e3ef8cb" + }, + { + "rel": "item", + "href": "./BJ39_10000_0402.json", + "type": "application/json", + "file:checksum": "122071211a921e0ac3d96f586bed5141538e2b817b75837311d5857297ee7b13135d" + }, + { + "rel": "item", + "href": "./BJ39_10000_0403.json", + "type": "application/json", + "file:checksum": "12205abba14fcd8c385686fe30bd8e882b1985d1eb95447dac7444eff3aedd01b88a" + }, + { + "rel": "item", + "href": "./BJ39_10000_0501.json", + "type": "application/json", + "file:checksum": "1220af395c3e0b3082a93b327c7e2441cd9848c244aaabd3ba26aaac2cf1f79c6d81" + }, + { + "rel": "item", + "href": "./BJ39_10000_0502.json", + "type": "application/json", + "file:checksum": "1220da087223ea3a8300aa6d8183bbb8ca757a3fdf00c3b278166688f105d00d0bc4" + }, + { + "rel": "item", + "href": "./BJ39_10000_0503.json", + "type": "application/json", + "file:checksum": "122052f2d8127719cbf64b714e1b37dc055a48e4961d0590713c51f45f661d77c74d" + }, + { + "rel": "item", + "href": "./BJ40_10000_0101.json", + "type": "application/json", + "file:checksum": "122097d4ba8cc07304942f3f180bfbee230b20b81a54a1bfaff23fe760807798f7ac" + }, + { + "rel": "item", + "href": "./BJ40_10000_0102.json", + "type": "application/json", + "file:checksum": "122038532f84fc5b2fe0cd4d5c9c8172be4a5701b2b5b9e97a13a7227c2ddb06a4e1" + }, + { + "rel": "item", + "href": "./BJ40_10000_0201.json", + "type": "application/json", + "file:checksum": "12201f3dc394ebf256cd696c11a4e8a5bdc9414cbeaf5b5f50338077f53872bf4e8a" + }, + { + "rel": "item", + "href": "./BK36_10000_0104.json", + "type": "application/json", + "file:checksum": "1220f752195f95502f31cf97bf05aedc2f4ad34d97158a86721e4851911de1f13286" + }, + { + "rel": "item", + "href": "./BK36_10000_0105.json", + "type": "application/json", + "file:checksum": "1220ab7eca2422e556e005c01acffbfb79a4f30102214eb6d0ff561ebd8af0c6226a" + }, + { + "rel": "item", + "href": "./BK36_10000_0204.json", + "type": "application/json", + "file:checksum": "1220db71c7b11b9a34934ea1a905c80255dfdcacc3a556acd001b3998b981575d3aa" + }, + { + "rel": "item", + "href": "./BK36_10000_0205.json", + "type": "application/json", + "file:checksum": "1220fdd60fa330022c65dac77913a7c194e8433ddbb3b06e61b557c88a386c714a00" + }, + { + "rel": "item", + "href": "./BK36_10000_0305.json", + "type": "application/json", + "file:checksum": "122070f8ee19f6fff1bcdc031dc2722c357697a9425c4e2a9ff5ec56168f2bdfdcec" + }, + { + "rel": "item", + "href": "./BK37_10000_0101.json", + "type": "application/json", + "file:checksum": "1220ad020c8b15b8ba4e7ecf58bd53f0a52a1fc7f4a665b216cbdeecde7d3914b535" + }, + { + "rel": "item", + "href": "./BK37_10000_0102.json", + "type": "application/json", + "file:checksum": "12209cf3192e840a441adcb0a8beaae1d07a5fd6259b15ebde5e1ffe962d290bc90e" + }, + { + "rel": "item", + "href": "./BK37_10000_0103.json", + "type": "application/json", + "file:checksum": "1220e2d0066c8fec3b7c018bf191754bef4bc96af630f92a5aa9e74fd292bac4e5d3" + }, + { + "rel": "item", + "href": "./BK37_10000_0104.json", + "type": "application/json", + "file:checksum": "122029672fab10d3a8fa031bd7f0c413a8e81945022eae7eb8ab466e023e699256f7" + }, + { + "rel": "item", + "href": "./BK37_10000_0105.json", + "type": "application/json", + "file:checksum": "1220cf9bd12c6bc94bb17fd134a59347b43c6738215f0b69dab86c057cabf2e19f92" + }, + { + "rel": "item", + "href": "./BK37_10000_0201.json", + "type": "application/json", + "file:checksum": "1220316f9e6995900e03eb8558c93e41d0faa590bc41338ca9cb7771d9629a0e4388" + }, + { + "rel": "item", + "href": "./BK37_10000_0202.json", + "type": "application/json", + "file:checksum": "1220b32ccbf1d8caaad4e950941e78fb331f70dc2c0741057385130792f6225265e1" + }, + { + "rel": "item", + "href": "./BK37_10000_0203.json", + "type": "application/json", + "file:checksum": "122045daf69fcdbc8a6ce8c5546e0c19783072bc3867f6feb51154ddfcd492d6c10f" + }, + { + "rel": "item", + "href": "./BK37_10000_0204.json", + "type": "application/json", + "file:checksum": "12201bb5572f3b21f92ea1691a866f886ffe6bdadbb4e209e2ad1adaba74c7d97e0b" + }, + { + "rel": "item", + "href": "./BK37_10000_0205.json", + "type": "application/json", + "file:checksum": "12209c0a94b30a0e4df5bcc09090ee41e55a89a94801fecbae2ac95ce57075f7af40" + }, + { + "rel": "item", + "href": "./BK37_10000_0301.json", + "type": "application/json", + "file:checksum": "1220d6ccc2c8194d4423d3c0a7ed5814cce3bfd3950f2a17e144f9a9f8a2104c815d" + }, + { + "rel": "item", + "href": "./BK37_10000_0302.json", + "type": "application/json", + "file:checksum": "122035cefb16e06b40bc99888c8144d7dbd3d22971c2cc6da72b3e02393f75ac3c84" + }, + { + "rel": "item", + "href": "./BK37_10000_0303.json", + "type": "application/json", + "file:checksum": "1220aaf6b144160f8dc41d7636655e6b72e9eae0000fd18ea9c3f670620cfa3a446a" + }, + { + "rel": "item", + "href": "./BK37_10000_0304.json", + "type": "application/json", + "file:checksum": "1220cd88a86fa2c2a65e9629c6c6eafffa12fbcfa4d614d47ce1fd3211301be03296" + }, + { + "rel": "item", + "href": "./BK37_10000_0305.json", + "type": "application/json", + "file:checksum": "1220dcf0455f9e58d92c804179b82bffc91462e52fe2c7488bbd6eac6549d91e5fc7" + }, + { + "rel": "item", + "href": "./BK37_10000_0401.json", + "type": "application/json", + "file:checksum": "12208ea3a59544b4e7bc41f3d812738a3c0ef81a05f3da4be44de8e966598e6a0ab7" + }, + { + "rel": "item", + "href": "./BK37_10000_0402.json", + "type": "application/json", + "file:checksum": "1220fa766e328672ae962c7a22e79417b5f6aea7f435b597f3e8f94ae057bb919c4c" + }, + { + "rel": "item", + "href": "./BK37_10000_0403.json", + "type": "application/json", + "file:checksum": "12205dc401f390bc536351cedbce9282ead71f97fa90a96c92fb83bc2586bcb5eae5" + }, + { + "rel": "item", + "href": "./BK37_10000_0404.json", + "type": "application/json", + "file:checksum": "1220cb97f8e9609caa9eed2acbb1c5a9504c6f7cb9a1eb846ac6e37ef22173f785c1" + }, + { + "rel": "item", + "href": "./BK37_10000_0405.json", + "type": "application/json", + "file:checksum": "1220273d6caca8e20ab1666ba84ac763169fac4492c2c80597a18543e0982842eeb0" + }, + { + "rel": "item", + "href": "./BK38_10000_0101.json", + "type": "application/json", + "file:checksum": "1220fc4759f2fdc6a5e13a30413bbfeb676dd3c1580544bec881e91f366c8974cd5b" + }, + { + "rel": "item", + "href": "./BK38_10000_0102.json", + "type": "application/json", + "file:checksum": "1220ae7172c2727a7db0fc2a977effbe0c9579780499c67aa529f2afe7c21fb71129" + }, + { + "rel": "item", + "href": "./BK38_10000_0103.json", + "type": "application/json", + "file:checksum": "122050a7dfaa7d9b630f1b83f4f3b7e59bb323a809d291da0ffb4660aa3872f5de2c" + }, + { + "rel": "item", + "href": "./BK38_10000_0104.json", + "type": "application/json", + "file:checksum": "12203ce7b82e2b6a16d34c69baa8e9a0230a406ad92933094dc7afab334f819866f2" + }, + { + "rel": "item", + "href": "./BK38_10000_0105.json", + "type": "application/json", + "file:checksum": "12208c2f743a27e523d696bf9d09b62fc9837099cabfe52d16ac0e9583985988c150" + }, + { + "rel": "item", + "href": "./BK38_10000_0201.json", + "type": "application/json", + "file:checksum": "1220299f7c4757e21f040b7f39bcc34e70739893585b55ac01935a8305542760ce0c" + }, + { + "rel": "item", + "href": "./BK38_10000_0202.json", + "type": "application/json", + "file:checksum": "1220d3bb28ffb6153c1008f381be507c7311e8fcf7f39c0de37aa4cdef29cbe70871" + }, + { + "rel": "item", + "href": "./BK38_10000_0203.json", + "type": "application/json", + "file:checksum": "12208c3d2fea550dc73fd5085534cd9ad96e39c10b258af6758ae80bd7874eea52c3" + }, + { + "rel": "item", + "href": "./BK38_10000_0204.json", + "type": "application/json", + "file:checksum": "12207845380919562bbc6f8333e9f0f2c18331127e977ff670a1467e1998ae19d462" + }, + { + "rel": "item", + "href": "./BK38_10000_0205.json", + "type": "application/json", + "file:checksum": "12205194766afce71476b47466c6f831303b6c7f0eccd4294011b237b553d2fc21cd" + }, + { + "rel": "item", + "href": "./BK38_10000_0301.json", + "type": "application/json", + "file:checksum": "122017a4eb442c8ee9993745ac0f3639e4d46252510402431f9ab0e1c69257328a0b" + }, + { + "rel": "item", + "href": "./BK38_10000_0302.json", + "type": "application/json", + "file:checksum": "12206683336bb60dd22a9f5f75808d44979f6ca53f9e68ef6ea178410f1b5690e8e5" + }, + { + "rel": "item", + "href": "./BK38_10000_0303.json", + "type": "application/json", + "file:checksum": "12203cc6a451ce1f2810f21752b19fa4b7f02f57e5ebfc541b328fe1a2b81d92963c" + }, + { + "rel": "item", + "href": "./BK38_10000_0304.json", + "type": "application/json", + "file:checksum": "1220ada08fd2f68abfda1a815a79a78240c18fde31302d90d18561819ca84d8b11d8" + }, + { + "rel": "item", + "href": "./BK38_10000_0305.json", + "type": "application/json", + "file:checksum": "1220ff699321d2f8c78c79351b9dc2f6af76cb2f4ce4320d6e2a1cca06b286d64dbf" + }, + { + "rel": "item", + "href": "./BK38_10000_0401.json", + "type": "application/json", + "file:checksum": "1220b31a5e5994859c1bc7ae0489bc29da5b44c40351c9022074949484c5c82dfe65" + }, + { + "rel": "item", + "href": "./BK38_10000_0402.json", + "type": "application/json", + "file:checksum": "1220b3f5526abd0893517e247b4fa3bbd0fa6b80f1ac3eeabdc8476eac8a83fea3d4" + }, + { + "rel": "item", + "href": "./BK38_10000_0403.json", + "type": "application/json", + "file:checksum": "12203c3900a5252b42a67ea24ffcc7914e133e2a53d7b0c589ad0cffadb1a3b39f6c" + }, + { + "rel": "item", + "href": "./BK38_10000_0404.json", + "type": "application/json", + "file:checksum": "1220d01bfb0a75e5f9857d9d224a28c4d06f9db17cc047e15851b072cef7e68a9073" + }, + { + "rel": "item", + "href": "./BK38_10000_0405.json", + "type": "application/json", + "file:checksum": "12205ca80ababb0c733d743f42324f5cda75fc317dda5d7e7c18df62775c89663bb4" + }, + { + "rel": "item", + "href": "./BK38_10000_0501.json", + "type": "application/json", + "file:checksum": "12204760babe2d78418aa59596880abfaa33a3be2933390090a779f8ee5737a34e27" + }, + { + "rel": "item", + "href": "./BK38_10000_0502.json", + "type": "application/json", + "file:checksum": "12201e75fdd769d7053cb03902d9941478654b17edf3635052d6e84a7e09e30233e0" + }, + { + "rel": "item", + "href": "./BK38_10000_0503.json", + "type": "application/json", + "file:checksum": "1220b9ea8eff641e72b7d841c9633d96f4b19bb51fd811ac355257ac28cca38a0251" + }, + { + "rel": "item", + "href": "./BK38_10000_0504.json", + "type": "application/json", + "file:checksum": "122043c7c3418632a9193148afc8875de7d75a050d6484e56c3c1a6e81a665835918" + }, + { + "rel": "item", + "href": "./BK38_10000_0505.json", + "type": "application/json", + "file:checksum": "1220a1fab93e80cfe1234a99ade024e395bfb257cba214ee84ea777d21d4696d39fc" + }, + { + "rel": "item", + "href": "./BK39_10000_0101.json", + "type": "application/json", + "file:checksum": "122017cfe52a595d3ed091d90ffa3bab99cbea37454e146f8466ae452d97db5f606a" + }, + { + "rel": "item", + "href": "./BK39_10000_0102.json", + "type": "application/json", + "file:checksum": "1220e331c4293a2a008482999b6b1a0d2fd50508e90dc4d8d9158763aa02d9a03b01" + }, + { + "rel": "item", + "href": "./BK39_10000_0103.json", + "type": "application/json", + "file:checksum": "1220f1d3b5bf8f5978c86845ed26190ad544343c150fbf9215e9d61905508558740c" + }, + { + "rel": "item", + "href": "./BK39_10000_0201.json", + "type": "application/json", + "file:checksum": "12206aed37a361fe2238253c1fa444828753cde6df508bd90a725a01a464bf4d7d31" + }, + { + "rel": "item", + "href": "./BK39_10000_0202.json", + "type": "application/json", + "file:checksum": "1220b262de3c8dc07f4f8107f8327b96e1127774c2848cd54e333f3980c40d552d97" + }, + { + "rel": "item", + "href": "./BK39_10000_0203.json", + "type": "application/json", + "file:checksum": "1220da63ef9fd44e2dab1638ddbbcbc203a06872a9683d32c9ad6c49656e582029bf" + }, + { + "rel": "item", + "href": "./BK39_10000_0204.json", + "type": "application/json", + "file:checksum": "122084a3c20f70d6b1cd35947e3719254784f6b71b866c0059c2a99c33eb87c739f1" + }, + { + "rel": "item", + "href": "./BK39_10000_0301.json", + "type": "application/json", + "file:checksum": "1220f175687e58c5e57a026887337e5ae34125965644681b30fe16c1ebf396af26df" + }, + { + "rel": "item", + "href": "./BK39_10000_0302.json", + "type": "application/json", + "file:checksum": "1220bd1cd50544d1fc66b75b683cb99acc98c99a14a9e4a7dc50bb8dfa3bd24b5ef1" + }, + { + "rel": "item", + "href": "./BK39_10000_0303.json", + "type": "application/json", + "file:checksum": "122086345e431357d43ec198d42625ca2519fb16efc0a6738d17199876ec3bbdf4c9" + }, + { + "rel": "item", + "href": "./BK39_10000_0304.json", + "type": "application/json", + "file:checksum": "1220e71ad59aba2ff20fb73fae14d3e8de0a203bf154363912610e1e16451cdfaa73" + }, + { + "rel": "item", + "href": "./BK39_10000_0401.json", + "type": "application/json", + "file:checksum": "1220ed6b624ffe35e34091837907b4464a4cc77a618cc1aa6864477100da603380cf" + }, + { + "rel": "item", + "href": "./BK39_10000_0402.json", + "type": "application/json", + "file:checksum": "122052987a6582558b7a4576ba1b268d7812487eaf5cd3d73898eddd438e790baa75" + }, + { + "rel": "item", + "href": "./BK39_10000_0403.json", + "type": "application/json", + "file:checksum": "12204127f757134958f264060ace580ab295a9bf375037ae2576324534e40ef0ecfa" + }, + { + "rel": "item", + "href": "./BK39_10000_0404.json", + "type": "application/json", + "file:checksum": "12209b413fc9a51699c971746567301d9acd8a886dc0168ac446cf381ddb281fc1d2" + }, + { + "rel": "item", + "href": "./BK39_10000_0501.json", + "type": "application/json", + "file:checksum": "1220605b50df9fbd1fcb05aff029b1fb88fc44e1160d1236872ee7f016ac5bac9fca" + }, + { + "rel": "item", + "href": "./BK39_10000_0502.json", + "type": "application/json", + "file:checksum": "122066f7433e9ff1e1d21d7ad5908cf83235c5dd9f7270d3633f048873f4adeaaa85" + }, + { + "rel": "item", + "href": "./BK39_10000_0503.json", + "type": "application/json", + "file:checksum": "12201b4858941859559280a7e210471be39a6a96b9f9e8708f4fa5d3a4b43f6ff033" + }, + { + "rel": "item", + "href": "./BL38_10000_0103.json", + "type": "application/json", + "file:checksum": "122042d6be82cac6bf4e52259e867673167de8e779f5eeb525d05c0388ca08b9a1ca" + }, + { + "rel": "item", + "href": "./BL38_10000_0104.json", + "type": "application/json", + "file:checksum": "1220211a876764b9c269ce5ad291e82df48ba7fe547b9c4f5719135877b85c359aa9" + }, + { + "rel": "item", + "href": "./BL38_10000_0105.json", + "type": "application/json", + "file:checksum": "1220e67c3095ba5dac14943b1f3126e576fff009e3267216414c4f18d44009d9ba65" + }, + { + "rel": "item", + "href": "./BL38_10000_0203.json", + "type": "application/json", + "file:checksum": "122034fa25ec7edcd3e1bea209fb50ea477061446abf86b28a2575204f2a7c407f1d" + }, + { + "rel": "item", + "href": "./BL38_10000_0204.json", + "type": "application/json", + "file:checksum": "122048b0dfda7e0ce5074fbd78e5fd07f2509e9c3553e7a85882b374319d901cc314" + }, + { + "rel": "item", + "href": "./BL38_10000_0205.json", + "type": "application/json", + "file:checksum": "1220690af91b325137328d367bd7ad15a27b8a016c40a939f764e696a94649230b80" + }, + { + "rel": "item", + "href": "./BL38_10000_0302.json", + "type": "application/json", + "file:checksum": "12207e58ae8fdd4ba73fc5a146f1ce3d8f44bc38dd45abf157719d6a45645d0e140e" + }, + { + "rel": "item", + "href": "./BL38_10000_0303.json", + "type": "application/json", + "file:checksum": "1220cd89192d8d9f0637ee0c79a3cf71d82fa78686e40476ae45b3d2b9c29a4441cd" + }, + { + "rel": "item", + "href": "./BL38_10000_0304.json", + "type": "application/json", + "file:checksum": "12208e2dbc1dfa682ceefb1d95ab46ad1db6bb32954923077005630d34804f6b83c9" + }, + { + "rel": "item", + "href": "./BL38_10000_0305.json", + "type": "application/json", + "file:checksum": "1220f943aac89a003b6b61195ac7342718bf9501c3921c27ba651fa588173e07f17a" + }, + { + "rel": "item", + "href": "./BL38_10000_0405.json", + "type": "application/json", + "file:checksum": "1220dd0dd7cb6900b192e1f2433a5c4f6db3b399c1e2e9a80e1f38af55a2eff22dcf" + }, + { + "rel": "item", + "href": "./BL39_10000_0101.json", + "type": "application/json", + "file:checksum": "1220d9e3f88200dd773f2893d13fef75014a08d1fae512fb347c15aa06534f6ce9a3" + }, + { + "rel": "item", + "href": "./BL39_10000_0102.json", + "type": "application/json", + "file:checksum": "12202b4ed568b63736323a53154c8d18acd9993be1534d5b00750fd2b19a5e41e4ee" + }, + { + "rel": "item", + "href": "./BL39_10000_0201.json", + "type": "application/json", + "file:checksum": "1220125fc8b2538788f1e29d7ed4b52044c71582be2f6bde7ce51a02ec69e6ed3698" + }, + { + "rel": "item", + "href": "./BL39_10000_0202.json", + "type": "application/json", + "file:checksum": "1220684712c0c74a3a60e271850ff0c715fd3896a0eb14877854723509e755675d5e" + }, + { + "rel": "item", + "href": "./BL39_10000_0203.json", + "type": "application/json", + "file:checksum": "1220de28a0fc2b437fdb717ac9ae93504cc93a76050a1f442bb17bd356b0ee829799" + }, + { + "rel": "item", + "href": "./BL39_10000_0301.json", + "type": "application/json", + "file:checksum": "1220aa67a13d56f7343501c878bd5dc49ddb4c3a49da5584259fd72436f812452f23" + }, + { + "rel": "item", + "href": "./BL39_10000_0302.json", + "type": "application/json", + "file:checksum": "122062d81db3ab32b14e85c1d72611d1f4d5224d9e8f3ae840afb2054b50c0136e21" + }, + { + "rel": "item", + "href": "./BL39_10000_0401.json", + "type": "application/json", + "file:checksum": "1220634bcb36390811f8f4310fdb0e1298c13a5ac2cada13e444c644010ebafcdbc2" + } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "ongoing", + "linz:geospatial_category": "dem", + "linz:region": "hawkes-bay", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[176.0260349, -40.0750063, 177.193365, -38.9634771]] }, + "temporal": { "interval": [["2023-09-19T12:00:00Z", "2023-12-20T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12209cb32e1ad063e46dbea5f9923f725fbca55deb004a50a46730cd55d26afedda4", + "file:size": 79036 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 98006ef4dd49e845f0bdc8f07b115899ae32e62a Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Mon, 27 May 2024 10:36:00 +1200 Subject: [PATCH 290/309] feat: import Hawke's Bay LiDAR 1m DSM (2023) EDS-72 (#295) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-39.5274009,176.6297527,z9?style=21-es-hawkes-bay-2023-dsm-1m-w9djl&tileMatrix=NZTM2000Quad&debug&config=7Rf6qYRV3P6uApiq14tyUQJCDRocqtRdk496uQ8L1Q2yVWRh1u6WMyMA6DHxzqX4XYHpJyMnq2bAteGoLR8gBhrPicKXkmHQqM14Zo8ei6LkKatjx94bG1XHyyKxakMieRF7MaYgFHU4LxYZdtJ5T24fFsyr5A2yaqu9fsAL8JYSaHCcg996jPJuiDtpgqkdLXBE1) **ODR destination path:** `s3://nz-elevation/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/` --------- Co-authored-by: Alice Fage Co-authored-by: Alice Fage --- ...YCKM9WF7ZWQ4DPCFFCF8H40-1716263039972.yaml | 7 + .../dsm_1m/2193/collection.json | 1294 +++++++++++++++++ 2 files changed, 1301 insertions(+) create mode 100644 publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1716263039972.yaml create mode 100644 stac/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/collection.json diff --git a/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1716263039972.yaml b/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1716263039972.yaml new file mode 100644 index 00000000..23fa2053 --- /dev/null +++ b/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1716263039972.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-05/21-es-hawkes-bay-2023-dsm-1m-w9djl/flat/", + "target": "s3://nz-elevation/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/", + "ticket": "EDS-72", + "copy_option": "--no-clobber", + "region": "hawkes-bay" +} \ No newline at end of file diff --git a/stac/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/collection.json b/stac/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..5819f62b --- /dev/null +++ b/stac/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/collection.json @@ -0,0 +1,1294 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HYCKM9WF7ZWQ4DPCFFCF8H40", + "title": "Hawke's Bay LiDAR 1m DSM (2023) - Draft", + "description": "Digital Surface Model within the Hawke's Bay region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "rel": "item", + "href": "./BH36_10000_0404.json", + "type": "application/json", + "file:checksum": "1220279fe24c88513542656794c0c72b0ccefa4b1a662f60a669f011cb10722a24ea" + }, + { + "rel": "item", + "href": "./BH36_10000_0405.json", + "type": "application/json", + "file:checksum": "1220ea34dd7607f3ef4c91a430aa844261e99a98403cc0a0433b4ceb28a8df934f27" + }, + { + "rel": "item", + "href": "./BH36_10000_0503.json", + "type": "application/json", + "file:checksum": "122021aafc9642e8059cb0429dd1ebff900b27263e68e1ecb0edd270e5b47de3e08e" + }, + { + "rel": "item", + "href": "./BH36_10000_0504.json", + "type": "application/json", + "file:checksum": "12209a8de72a92e87ab083390fb7ec7df1553d9c2d76cd9b78fe388a54672dfb6b0b" + }, + { + "rel": "item", + "href": "./BH36_10000_0505.json", + "type": "application/json", + "file:checksum": "1220357e4c8647ac4abe1222fc8a7f742b2473c63b648d1656c2bf97d356a54c5bb1" + }, + { + "rel": "item", + "href": "./BH37_10000_0501.json", + "type": "application/json", + "file:checksum": "1220f5030bdb2167f649c75076e20f55eb3b4fba8906375a12e4b440fb6a73d457ad" + }, + { + "rel": "item", + "href": "./BH37_10000_0502.json", + "type": "application/json", + "file:checksum": "12200fdb268ce8059ed86b8e2076f165ec0cda34b3710418688b82430960878e864d" + }, + { + "rel": "item", + "href": "./BH38_10000_0304.json", + "type": "application/json", + "file:checksum": "1220902a85e3f89f9719eeabdbcf47eb2dfdab1ac27b4d5fd764c6bf157b497817e7" + }, + { + "rel": "item", + "href": "./BH38_10000_0305.json", + "type": "application/json", + "file:checksum": "12207f92c3a3240e0af4aa5ce51a6a394ffcd0c50a5d2e52fdecd0ed127af7c7e470" + }, + { + "rel": "item", + "href": "./BH38_10000_0403.json", + "type": "application/json", + "file:checksum": "1220bff41ed412bd4df949a086f351403b9e00de2a5cd62145d728d57483a0f470eb" + }, + { + "rel": "item", + "href": "./BH38_10000_0404.json", + "type": "application/json", + "file:checksum": "1220433cdfc24e1f34f046abef2e17f9d7a5181a5fd7c7bb9f49795a8a55a55e5775" + }, + { + "rel": "item", + "href": "./BH38_10000_0405.json", + "type": "application/json", + "file:checksum": "122027df61c29839507a8e82a954ce163ed68360d3ee727afa1039ebd6d20f0e3c5d" + }, + { + "rel": "item", + "href": "./BH38_10000_0503.json", + "type": "application/json", + "file:checksum": "12209d41d1197c66849580c8f2cec405b895f66f539a6e2cf2182e9c41e9683a2ce5" + }, + { + "rel": "item", + "href": "./BH38_10000_0504.json", + "type": "application/json", + "file:checksum": "1220b747becfe799566022ff64a0fa3ba5eb9a47251ed324f6f8f4a0ccfe3f7a2318" + }, + { + "rel": "item", + "href": "./BH38_10000_0505.json", + "type": "application/json", + "file:checksum": "122024f8f248e8ca8be2e6419e7b1cfda35c01cab6ec018481d3ad1ec9bd1964ab9f" + }, + { + "rel": "item", + "href": "./BH39_10000_0301.json", + "type": "application/json", + "file:checksum": "12201675ff4dc375b7db9d072b8f397c00fb901b35f75a8a5e0c16a2243c3d5bde5f" + }, + { + "rel": "item", + "href": "./BH39_10000_0302.json", + "type": "application/json", + "file:checksum": "1220fba30a3546ecaed855e12a34e5529e9a5744c181e2364a31b25c89e38b1e6ed2" + }, + { + "rel": "item", + "href": "./BH39_10000_0303.json", + "type": "application/json", + "file:checksum": "12205d0375d03a3d7f39876b4f9c5b0bcd4e25f80ba96942513edc43b8fb385534d1" + }, + { + "rel": "item", + "href": "./BH39_10000_0304.json", + "type": "application/json", + "file:checksum": "122027812477f03f0d543f9e91fc5e092f2381fe375bfcbaff70e52b3446d2ff02e0" + }, + { + "rel": "item", + "href": "./BH39_10000_0305.json", + "type": "application/json", + "file:checksum": "1220fb4343399ad3acf098333dd680b32dc742e896a937337a15408432dcdf03c13f" + }, + { + "rel": "item", + "href": "./BH39_10000_0401.json", + "type": "application/json", + "file:checksum": "122030a8115dd46ef3e001be2c82cb685fd45f825a991e89e87c12b00c0e936bea70" + }, + { + "rel": "item", + "href": "./BH39_10000_0402.json", + "type": "application/json", + "file:checksum": "12206a9a19def3e1615b6eeb448126967920d5b99f6c5e8ee068337e86f3586d88e9" + }, + { + "rel": "item", + "href": "./BH39_10000_0403.json", + "type": "application/json", + "file:checksum": "12206ef92a5edc86ed5650c993f8a77abe57ad1e190d5c92ce28976b03c7af406a3d" + }, + { + "rel": "item", + "href": "./BH39_10000_0404.json", + "type": "application/json", + "file:checksum": "1220a39fb4a9de95900c566420a7aaae13bcf9d9a64ba225ed8f1f8a0820d28c950a" + }, + { + "rel": "item", + "href": "./BH39_10000_0405.json", + "type": "application/json", + "file:checksum": "12200d148098cccec5558b6de280a8a28067f9b843531c184522dad1bb6c240f2151" + }, + { + "rel": "item", + "href": "./BH39_10000_0501.json", + "type": "application/json", + "file:checksum": "122000d20782a3897daa18437810b8a9e31e17936ae8a1cb0976f6b34112ac76a282" + }, + { + "rel": "item", + "href": "./BH39_10000_0502.json", + "type": "application/json", + "file:checksum": "12200d06f6deb401e6392f636f487fe9652f3b5eec3e72602a4eea6bdd51f09a1e6d" + }, + { + "rel": "item", + "href": "./BH39_10000_0503.json", + "type": "application/json", + "file:checksum": "1220959902dcfd7c452267c6d8b26ffecb984c03cf51d2ae1506f5f944bb0d65f171" + }, + { + "rel": "item", + "href": "./BH39_10000_0504.json", + "type": "application/json", + "file:checksum": "1220494a2148edff8861340e39246352ca341eeb6185ef9af377470355668897e821" + }, + { + "rel": "item", + "href": "./BH39_10000_0505.json", + "type": "application/json", + "file:checksum": "1220ac69299b1b87618109be0632fa13a2e6e8a6c8e1571d612c74a74c40dc802358" + }, + { + "rel": "item", + "href": "./BH40_10000_0401.json", + "type": "application/json", + "file:checksum": "12209e4c61d5c353763b48c9d2e0747e8da9143b3c1f245227d6de0419e6189300db" + }, + { + "rel": "item", + "href": "./BH40_10000_0402.json", + "type": "application/json", + "file:checksum": "122072c05bd94cd01096a6ebe9d88bc47206365150e32c062321ef90245263ac3493" + }, + { + "rel": "item", + "href": "./BH40_10000_0501.json", + "type": "application/json", + "file:checksum": "1220aca5b3f621bd71ca1b3781d9bbfe2deed705d61122eaea7d61143a3be474ed26" + }, + { + "rel": "item", + "href": "./BH40_10000_0502.json", + "type": "application/json", + "file:checksum": "12203653fea1bc84e93b9f3d07e248f34c5a38f8a732835a58779cc6ddb11752fcb8" + }, + { + "rel": "item", + "href": "./BH40_10000_0503.json", + "type": "application/json", + "file:checksum": "12209a74e3bbf2885fccc5330a41625a28c45d4f691bd6b0a45e5dfd190e445d69bd" + }, + { + "rel": "item", + "href": "./BJ36_10000_0103.json", + "type": "application/json", + "file:checksum": "122015a22a0734e628fc60450f90b2a82a33be8c1f3dbb30a85fcb13f46e84f842df" + }, + { + "rel": "item", + "href": "./BJ36_10000_0104.json", + "type": "application/json", + "file:checksum": "12209d5f5228a5f43dcc72c7a79faf0285380434e0c53de2013f6a9007fa1c52493a" + }, + { + "rel": "item", + "href": "./BJ36_10000_0105.json", + "type": "application/json", + "file:checksum": "12207483ae8fc8910b1a95ba566050ce363d32cdf0792cb5b25584d736fa492407e0" + }, + { + "rel": "item", + "href": "./BJ36_10000_0203.json", + "type": "application/json", + "file:checksum": "122008330b85ea84c76ab2d5708fd3e1f2b0f81a85e6d9c88c0a3aaac2a5f0d5c6bd" + }, + { + "rel": "item", + "href": "./BJ36_10000_0204.json", + "type": "application/json", + "file:checksum": "12203038d4a2b96d481216396c8c1a87858c2efe4cad195c3b58becc6bfdb1cc28ed" + }, + { + "rel": "item", + "href": "./BJ36_10000_0205.json", + "type": "application/json", + "file:checksum": "1220cdfffd5760cfe2bfc2bb8a655a899a333f2f870cecd4f21d28bcaf3bcf28c56a" + }, + { + "rel": "item", + "href": "./BJ36_10000_0303.json", + "type": "application/json", + "file:checksum": "122036b786509d6bad8d4e00a36c35c12fded2b07e417baa5904beb5326f482df9bb" + }, + { + "rel": "item", + "href": "./BJ36_10000_0304.json", + "type": "application/json", + "file:checksum": "1220f92acc2306bfe285ff692f04c089e35dc3219032bfa721490e62b9443f2e9922" + }, + { + "rel": "item", + "href": "./BJ36_10000_0305.json", + "type": "application/json", + "file:checksum": "12207d8038dac6657d09ac5b439db192f4f445f6922c21a5062b293b22d9f81e59bf" + }, + { + "rel": "item", + "href": "./BJ36_10000_0403.json", + "type": "application/json", + "file:checksum": "12205039c236d3ff4a24316183beac103d9edc6a896f45ac271fce5f65bd4fe6aaf8" + }, + { + "rel": "item", + "href": "./BJ36_10000_0404.json", + "type": "application/json", + "file:checksum": "12207d210c5dbcd1ae2d71945bcb5157b1f7088ab7d44202157435f2c1d9c71254f0" + }, + { + "rel": "item", + "href": "./BJ36_10000_0405.json", + "type": "application/json", + "file:checksum": "122019cdbe244a05be78ed226f5c74ffc96ba660204a44035df632faa5a36b96df43" + }, + { + "rel": "item", + "href": "./BJ36_10000_0504.json", + "type": "application/json", + "file:checksum": "12200edd8730cbe33f90cc90bbfee7cebe2b6b62c607a810daab81f099f682091616" + }, + { + "rel": "item", + "href": "./BJ36_10000_0505.json", + "type": "application/json", + "file:checksum": "1220610344e27b2ec39d9410c3c435406644ce28bea2fdaac99b0552099149866fc4" + }, + { + "rel": "item", + "href": "./BJ37_10000_0101.json", + "type": "application/json", + "file:checksum": "12206a8035458f68de2be1bf2950da2a8bfdbebe83b995496eecf48a2652c00042d8" + }, + { + "rel": "item", + "href": "./BJ37_10000_0102.json", + "type": "application/json", + "file:checksum": "1220937bd335dca0ee012684763ef25dd91799d6d44aecbae50793a8a7fa492a9188" + }, + { + "rel": "item", + "href": "./BJ37_10000_0103.json", + "type": "application/json", + "file:checksum": "12207b737d9cd67f601fa3715c4991206f75eb58f57ca175d086dbf451b0aed246f0" + }, + { + "rel": "item", + "href": "./BJ37_10000_0104.json", + "type": "application/json", + "file:checksum": "1220f9ad9c3a5690e6fb0c3c13f8b63465a8572d8c6cdd5490e3f58351485089eb36" + }, + { + "rel": "item", + "href": "./BJ37_10000_0201.json", + "type": "application/json", + "file:checksum": "1220b60a2c66ab169145400d70002df4acb7971c54f2d953fe0929065570a3687e20" + }, + { + "rel": "item", + "href": "./BJ37_10000_0202.json", + "type": "application/json", + "file:checksum": "12201d5c999333d420ba5e8054f8acb346cc6aaf9a145a11e8c0fbb62862d51efd2a" + }, + { + "rel": "item", + "href": "./BJ37_10000_0203.json", + "type": "application/json", + "file:checksum": "12201ea5741ddf2f4883f1ad795e38258bb7407ff6f4c43f1165094fa6f4bda838e4" + }, + { + "rel": "item", + "href": "./BJ37_10000_0204.json", + "type": "application/json", + "file:checksum": "1220ac3b1089bb0e5a91a10d31e2b1f55cb855109c3c72b28ef275f34baf3bc0af67" + }, + { + "rel": "item", + "href": "./BJ37_10000_0205.json", + "type": "application/json", + "file:checksum": "1220b75f32ff8cc943439e442dd561b3d173d1c361a7d494b458680e2b9f99c04ef3" + }, + { + "rel": "item", + "href": "./BJ37_10000_0301.json", + "type": "application/json", + "file:checksum": "122063745879e02d36b6ec5ae528acafda1ad0be1df265bf4c34a9ebb15c9646d3ce" + }, + { + "rel": "item", + "href": "./BJ37_10000_0302.json", + "type": "application/json", + "file:checksum": "1220694eab3558d8daa620bc2d1c903f0bda47d015f0761e6428cbdee0c950d3a6d6" + }, + { + "rel": "item", + "href": "./BJ37_10000_0303.json", + "type": "application/json", + "file:checksum": "1220b2d840d66a31805a7f77bf32d363f8f4065f3f2dce8bf82df1827325c1ea80ba" + }, + { + "rel": "item", + "href": "./BJ37_10000_0304.json", + "type": "application/json", + "file:checksum": "1220e818705f29cb86dcfc8fc79e0e1e714b839e14d7f7464d3ff448aeb37193e25a" + }, + { + "rel": "item", + "href": "./BJ37_10000_0305.json", + "type": "application/json", + "file:checksum": "1220a219d26a50dbf814c7c4fccfe3b3ba6130ca0a986b2b58e90373ab5bac8ae53c" + }, + { + "rel": "item", + "href": "./BJ37_10000_0401.json", + "type": "application/json", + "file:checksum": "12209d61c0fa702be789a9d612ad277f2110cb5e48167a3c0cee6cefe0a904c6a905" + }, + { + "rel": "item", + "href": "./BJ37_10000_0402.json", + "type": "application/json", + "file:checksum": "1220140d98d2c83c7738b3c39000d0c9d25763fb8057ab8ffa1c30a5458ee78519c7" + }, + { + "rel": "item", + "href": "./BJ37_10000_0403.json", + "type": "application/json", + "file:checksum": "1220438781726ecccd14115e3799bf6ac5f33f9681931689add10d8e756c51fec5a5" + }, + { + "rel": "item", + "href": "./BJ37_10000_0404.json", + "type": "application/json", + "file:checksum": "1220689f0f2416c4d5fa0711bde840755147964afd7ae27b0d1bc2123d938886a7cd" + }, + { + "rel": "item", + "href": "./BJ37_10000_0405.json", + "type": "application/json", + "file:checksum": "12202406d3837d432f80ce33733110663b9d93f149e6c599544bfdf2683ca5bbe05e" + }, + { + "rel": "item", + "href": "./BJ37_10000_0501.json", + "type": "application/json", + "file:checksum": "12201934b96cbd405cad823b718f9026923c436a6bcf2aef0e173063b56c97f48b89" + }, + { + "rel": "item", + "href": "./BJ37_10000_0502.json", + "type": "application/json", + "file:checksum": "1220b237d465ca4e1b5e1efa87330ca47e9a33537593e78925600e6b2d31a9b52c6a" + }, + { + "rel": "item", + "href": "./BJ37_10000_0503.json", + "type": "application/json", + "file:checksum": "122087adef38937ec97c9ac6413a844444f1a938f0333c8ebe90c9edbfeddbe38871" + }, + { + "rel": "item", + "href": "./BJ37_10000_0504.json", + "type": "application/json", + "file:checksum": "122083861e574549f7bff8f1343b475b239870e4d606f155725da660e4df31c1c034" + }, + { + "rel": "item", + "href": "./BJ37_10000_0505.json", + "type": "application/json", + "file:checksum": "1220cea3426bcfa3358943b1e3e7c827684d67cada0a76631c3378ae52248dc24683" + }, + { + "rel": "item", + "href": "./BJ38_10000_0101.json", + "type": "application/json", + "file:checksum": "1220a26d248c57ea37a24b5c165ec6a3e9c8fc9a8a23b1eb273d58f53c3b0c6bcee8" + }, + { + "rel": "item", + "href": "./BJ38_10000_0102.json", + "type": "application/json", + "file:checksum": "1220ac7495753dc1d9b73a4fd668832ffc25fe05ea01e90d79084583a834a8dd1b51" + }, + { + "rel": "item", + "href": "./BJ38_10000_0103.json", + "type": "application/json", + "file:checksum": "122042607ea82cada0deeb643e254ba219fd3985ce0f9536e0baeaed441a7ba8ee7a" + }, + { + "rel": "item", + "href": "./BJ38_10000_0104.json", + "type": "application/json", + "file:checksum": "1220815b43f54522418db0394197cc052ef2c56a76bf610c2b924ce3192d6dc593f6" + }, + { + "rel": "item", + "href": "./BJ38_10000_0105.json", + "type": "application/json", + "file:checksum": "1220eb4151c8b088265b37cae29eda700264740f4710a0b7666b39e784c294aadf56" + }, + { + "rel": "item", + "href": "./BJ38_10000_0201.json", + "type": "application/json", + "file:checksum": "122050c99b55f60b130ffd12da10d5465d9a701bdb35052f35c6675ac2d2074f2367" + }, + { + "rel": "item", + "href": "./BJ38_10000_0202.json", + "type": "application/json", + "file:checksum": "122063a323fefa5499fb47bbcacf8af0b7c666850a9ebbed8bb668b53ba61ae9201e" + }, + { + "rel": "item", + "href": "./BJ38_10000_0203.json", + "type": "application/json", + "file:checksum": "12208a153476353681f24fff9c3cc7958b537b2a694b628aebec98e5bbc2bfdb84fc" + }, + { + "rel": "item", + "href": "./BJ38_10000_0204.json", + "type": "application/json", + "file:checksum": "12203f1e126000fd7f8c81f9cbd7f9d7aea9e3ffa01e70c2b20f0eff8cc3e817a04b" + }, + { + "rel": "item", + "href": "./BJ38_10000_0205.json", + "type": "application/json", + "file:checksum": "1220840080fd795f5ee4e4ead51ff5f4d6603c9e0dc8d82ef06942bb1d52e8540423" + }, + { + "rel": "item", + "href": "./BJ38_10000_0301.json", + "type": "application/json", + "file:checksum": "12200ac15eb229af796ac05080382ee629e62030f373f2ac2cb316d504b17d6df394" + }, + { + "rel": "item", + "href": "./BJ38_10000_0302.json", + "type": "application/json", + "file:checksum": "1220e7ef81b27a8269f787122ad4e9fe6fdc618a130c068a0a2af6b35ae8bcd3fd7a" + }, + { + "rel": "item", + "href": "./BJ38_10000_0303.json", + "type": "application/json", + "file:checksum": "1220de0c4b6ffcc38b8728bb3b15647ee9759f9a729872ee9171a68d7dfae7c77875" + }, + { + "rel": "item", + "href": "./BJ38_10000_0304.json", + "type": "application/json", + "file:checksum": "1220228c49fbf6ecb6542e52e86f97808234052f982f4750bc0bf24fde4e78b85187" + }, + { + "rel": "item", + "href": "./BJ38_10000_0305.json", + "type": "application/json", + "file:checksum": "1220494d4e7f989d00a4d0b6dce17f397bdf922ac90a713e0711704417870576976a" + }, + { + "rel": "item", + "href": "./BJ38_10000_0401.json", + "type": "application/json", + "file:checksum": "1220355e1ac2d2be9c358f9ad8b98b7953bc45b1d8f1539e95a157aeaf3a8f8d3179" + }, + { + "rel": "item", + "href": "./BJ38_10000_0402.json", + "type": "application/json", + "file:checksum": "12207b5ef75831da8d89302bf87c009289adde09e74f7a0e428b3fe8e61ae776ec68" + }, + { + "rel": "item", + "href": "./BJ38_10000_0403.json", + "type": "application/json", + "file:checksum": "122068499567e016b4cd317cb804101dd2685dc794de2cb16834b246aa67723e8ded" + }, + { + "rel": "item", + "href": "./BJ38_10000_0404.json", + "type": "application/json", + "file:checksum": "122064d357192305ce31b90ce769bedc9c60f59e27b60e90ececfcc6428f220d998a" + }, + { + "rel": "item", + "href": "./BJ38_10000_0405.json", + "type": "application/json", + "file:checksum": "12207d658ffcdcd8c44977c78490446f28653122d0deb905f9adb959ddcd03bea897" + }, + { + "rel": "item", + "href": "./BJ38_10000_0501.json", + "type": "application/json", + "file:checksum": "122012272fd5d283d3000df7957ba230d3fa8177c65e8f9968c5a3904969d681cbce" + }, + { + "rel": "item", + "href": "./BJ38_10000_0502.json", + "type": "application/json", + "file:checksum": "122004444484496fdfdbeb44b7697f934322a24f2deef3161b7af53f99e3e512aa96" + }, + { + "rel": "item", + "href": "./BJ38_10000_0503.json", + "type": "application/json", + "file:checksum": "1220c25240f7184701b61825d8dfd5c729a9faa42f67d1721ed0a2078be27426dbf3" + }, + { + "rel": "item", + "href": "./BJ38_10000_0504.json", + "type": "application/json", + "file:checksum": "1220af2c4c8a684b1baee9a8689967e96ed20e939d736856a771770291913de3131f" + }, + { + "rel": "item", + "href": "./BJ38_10000_0505.json", + "type": "application/json", + "file:checksum": "122087c739bcbd92793918aea06c8bf857ab498d16aa7c6faac23d6598cf8c0757e9" + }, + { + "rel": "item", + "href": "./BJ39_10000_0101.json", + "type": "application/json", + "file:checksum": "12205a057164087e7f557f1408597ceb96d37424f2d7fa10e47aad42c834b4eb912c" + }, + { + "rel": "item", + "href": "./BJ39_10000_0102.json", + "type": "application/json", + "file:checksum": "1220b8c34619ee904ee501298e99ee37cc0b7eaf9d6dca4994920d8adc6806434788" + }, + { + "rel": "item", + "href": "./BJ39_10000_0103.json", + "type": "application/json", + "file:checksum": "122078f4ab3be8ec6071a9c374181cd15def281bb177dfc45fad14acb8818b27d317" + }, + { + "rel": "item", + "href": "./BJ39_10000_0104.json", + "type": "application/json", + "file:checksum": "122065e0461d5c9d83f5df26fe96b236f9a99c6eec884ab95e925dd4d3582e4a981c" + }, + { + "rel": "item", + "href": "./BJ39_10000_0105.json", + "type": "application/json", + "file:checksum": "122000feacae29e95da5431ee2aa273ade2f6f1f32767b1991394b37df20f9611bc4" + }, + { + "rel": "item", + "href": "./BJ39_10000_0201.json", + "type": "application/json", + "file:checksum": "12204643e7915dfe35b5f13d054c6d089cdeea040bc6f38de9704f4d355257fcf5da" + }, + { + "rel": "item", + "href": "./BJ39_10000_0202.json", + "type": "application/json", + "file:checksum": "122036c6800e7b77adcd15414e9f9caa09226d27e8737d725f799f40a0da47a5028c" + }, + { + "rel": "item", + "href": "./BJ39_10000_0203.json", + "type": "application/json", + "file:checksum": "12204ea2370a33966967868cfcc7e9e109f050e8e620f3c353eaaaab2758b965d9ee" + }, + { + "rel": "item", + "href": "./BJ39_10000_0204.json", + "type": "application/json", + "file:checksum": "122096c41fdc6bdc14f4b5c41e051b4370cdd006eea839ea8a582ab0bda2445a8879" + }, + { + "rel": "item", + "href": "./BJ39_10000_0205.json", + "type": "application/json", + "file:checksum": "1220d9149cdc4948712b0edf3408a06680c45df8bb2fe91acde82249daea7124c5b3" + }, + { + "rel": "item", + "href": "./BJ39_10000_0301.json", + "type": "application/json", + "file:checksum": "1220d14c2caa5dc78972ab98b41740be497f9ab914b5ce6d044c0527cc51f5899ca0" + }, + { + "rel": "item", + "href": "./BJ39_10000_0302.json", + "type": "application/json", + "file:checksum": "122038988e3eb6acf28c4e7b339576d7c36a710159cbb1e29e8bc2f28adbacecaf55" + }, + { + "rel": "item", + "href": "./BJ39_10000_0303.json", + "type": "application/json", + "file:checksum": "1220e0fa653c80fa6bad8fb5906315d90478e89d1e6c84ee928438d43ff799c67621" + }, + { + "rel": "item", + "href": "./BJ39_10000_0304.json", + "type": "application/json", + "file:checksum": "122025030f990eb4d69f0d05e8da18d65edf47e4183d52be7821fd26e503790046f6" + }, + { + "rel": "item", + "href": "./BJ39_10000_0305.json", + "type": "application/json", + "file:checksum": "1220c70638b2ba23571cdb984b5fa9c946c65873c7e714914b98ea8461b9b5daa827" + }, + { + "rel": "item", + "href": "./BJ39_10000_0401.json", + "type": "application/json", + "file:checksum": "1220abf331cca13aa880a924ee2831064f9b2611b68e4bf89b4dd485597237e5d231" + }, + { + "rel": "item", + "href": "./BJ39_10000_0402.json", + "type": "application/json", + "file:checksum": "1220a723556ee5a5e5188488d8426f2ccdddc532474bafb4ef44caa86375b564095d" + }, + { + "rel": "item", + "href": "./BJ39_10000_0403.json", + "type": "application/json", + "file:checksum": "1220138d2bab10f28f87889a6dd6886da9ed0aecd5833912f825f1ffb9b16aa47840" + }, + { + "rel": "item", + "href": "./BJ39_10000_0501.json", + "type": "application/json", + "file:checksum": "12207a396f2e05f4733fd4ba56b158ff844c04ed6cf988ee1f964fac9f90e3f74d18" + }, + { + "rel": "item", + "href": "./BJ39_10000_0502.json", + "type": "application/json", + "file:checksum": "1220dbae3959a57c2cb2b724cdfece6df8fe6da23c67cfc3774a7d407dd1acfea5e1" + }, + { + "rel": "item", + "href": "./BJ39_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d8029ae4532bc14666b720eb91f7c225fa59fb82e9aef606d909286d47cc3034" + }, + { + "rel": "item", + "href": "./BJ40_10000_0101.json", + "type": "application/json", + "file:checksum": "1220e52ee7092da4a25af9df75204bb5956a95d749c0b6a90335bbc2bbbe5e32c306" + }, + { + "rel": "item", + "href": "./BJ40_10000_0102.json", + "type": "application/json", + "file:checksum": "12206e58ecdec6e44e9f922a755547205cf5a7e69e1c0e3b413806b3307be5048bdc" + }, + { + "rel": "item", + "href": "./BJ40_10000_0201.json", + "type": "application/json", + "file:checksum": "12209487e62a06c2cf8516ed9e1d8bace179a346407fe2dc6fd9eaf5b20335c4aa0d" + }, + { + "rel": "item", + "href": "./BK36_10000_0104.json", + "type": "application/json", + "file:checksum": "1220de32a4d2aa02a091c7f20c4e9099ac99596e06e1eb71961c84f8ef0a40c7d6df" + }, + { + "rel": "item", + "href": "./BK36_10000_0105.json", + "type": "application/json", + "file:checksum": "1220b5a554676b1a9a6a882f803c1d03d73ad6692ec29e2b697f4f98d681ec3e07a1" + }, + { + "rel": "item", + "href": "./BK36_10000_0204.json", + "type": "application/json", + "file:checksum": "1220b816807847ed0ade2c66ba42828ecfcf7803c1b374d21f25fd3bc26423fb1ada" + }, + { + "rel": "item", + "href": "./BK36_10000_0205.json", + "type": "application/json", + "file:checksum": "12203e92e5e29e80f0e2e7337ad96635cf76ab72d768ca6eefe8742af1eacecb4b2c" + }, + { + "rel": "item", + "href": "./BK36_10000_0305.json", + "type": "application/json", + "file:checksum": "1220bdab2e5b3f0ed5adafa4c19b5b8faae6993f780204271f1d0e257193a463f41f" + }, + { + "rel": "item", + "href": "./BK37_10000_0101.json", + "type": "application/json", + "file:checksum": "12201b7c1d2bccb4db47cebee8bed80f48d039d0d40afe8d3ed143318222f976f3cb" + }, + { + "rel": "item", + "href": "./BK37_10000_0102.json", + "type": "application/json", + "file:checksum": "122078bf0ade9a730c0e2088cf0216f3d1b11fe8696d6d9991935eaa09f7128f7022" + }, + { + "rel": "item", + "href": "./BK37_10000_0103.json", + "type": "application/json", + "file:checksum": "1220e5f788b98e18c31ff647b81fed35743b184825b564b4be7159a5a85afd4428f2" + }, + { + "rel": "item", + "href": "./BK37_10000_0104.json", + "type": "application/json", + "file:checksum": "122087ef7157de7f60697837ff31d9fcf99f551db544c0fa3201b247e10efc63add2" + }, + { + "rel": "item", + "href": "./BK37_10000_0105.json", + "type": "application/json", + "file:checksum": "1220422c0e703311d82c04212c53476f8f5ca74483a03b2f5d0d2bb5209b38131209" + }, + { + "rel": "item", + "href": "./BK37_10000_0201.json", + "type": "application/json", + "file:checksum": "1220288b29957a9bc975ec95f11a448983ec8d76ac33879c1cf1db1ff79731de289b" + }, + { + "rel": "item", + "href": "./BK37_10000_0202.json", + "type": "application/json", + "file:checksum": "12200daba25b592ae692ceef67fe75af19278b1d75e08c8612c5eb631d061cb40694" + }, + { + "rel": "item", + "href": "./BK37_10000_0203.json", + "type": "application/json", + "file:checksum": "1220d438abc5fa02c9c89acdf03a2cbdbeb6a08dc0ac39f16ec808ec323eb5315852" + }, + { + "rel": "item", + "href": "./BK37_10000_0204.json", + "type": "application/json", + "file:checksum": "12200b6dbc2251d607045d9e1438516a27888eeb56eb9df8a9e933b7b0d354acbe20" + }, + { + "rel": "item", + "href": "./BK37_10000_0205.json", + "type": "application/json", + "file:checksum": "1220851de739f0686b3728c584f0a6409294a3e8c23405e43f2d8ce4c75b41f7bb0d" + }, + { + "rel": "item", + "href": "./BK37_10000_0301.json", + "type": "application/json", + "file:checksum": "12208cd810ed1ee5a0b6f3d2cf438f1fa3f6c520ec56c45c4b8ac0f7b954176ecbf0" + }, + { + "rel": "item", + "href": "./BK37_10000_0302.json", + "type": "application/json", + "file:checksum": "12203de5d62ebc15d9737c341fc321659167c85639e1c97687343b145b14515c0173" + }, + { + "rel": "item", + "href": "./BK37_10000_0303.json", + "type": "application/json", + "file:checksum": "1220013d9cd75dd03510f6300f2925692d3a6cc3d63c29ef8ee7a5f7a487d1d21209" + }, + { + "rel": "item", + "href": "./BK37_10000_0304.json", + "type": "application/json", + "file:checksum": "12201001a86568766b000675740b320a4fd3be2efa9aa7ab42fa429d8c894d1f3952" + }, + { + "rel": "item", + "href": "./BK37_10000_0305.json", + "type": "application/json", + "file:checksum": "12201a9ddf2eddc0a86360b06eebef25f886c3d32f3855ae8e1a88dc860da2ed45b1" + }, + { + "rel": "item", + "href": "./BK37_10000_0401.json", + "type": "application/json", + "file:checksum": "12208318224ced346b48a587f491e0b3f0f4f8c7ea913c27d275bd8302edb784528a" + }, + { + "rel": "item", + "href": "./BK37_10000_0402.json", + "type": "application/json", + "file:checksum": "122064fb39dac8c0e5872a624b88d43a71433910fd389b809439a4f5bab94c53c9d3" + }, + { + "rel": "item", + "href": "./BK37_10000_0403.json", + "type": "application/json", + "file:checksum": "12203f6bb83e71c436779ac89da5e377b0a7e254764b142328fb1d39d55212595555" + }, + { + "rel": "item", + "href": "./BK37_10000_0404.json", + "type": "application/json", + "file:checksum": "1220d88c49e11dd8d150cf148c8c19a2acf911ae79d4ae1c4229ef86e2c690072ec9" + }, + { + "rel": "item", + "href": "./BK37_10000_0405.json", + "type": "application/json", + "file:checksum": "1220888717ae66b12eada9f8aa2aa7d4fa5c4903e6d97e4cf37096a4786014c23916" + }, + { + "rel": "item", + "href": "./BK38_10000_0101.json", + "type": "application/json", + "file:checksum": "1220e03266104e45541a47707bb0246d7adc5e6d5b4be4a7956feea078a4f5ae22b2" + }, + { + "rel": "item", + "href": "./BK38_10000_0102.json", + "type": "application/json", + "file:checksum": "12208b223e07d88132237bd082239d4505d52d7c13aba464c6275c1b837066a35ce4" + }, + { + "rel": "item", + "href": "./BK38_10000_0103.json", + "type": "application/json", + "file:checksum": "1220139d2fb30f0f1318bec2210603df9055894af353e96547eaf4c5169fd9a89635" + }, + { + "rel": "item", + "href": "./BK38_10000_0104.json", + "type": "application/json", + "file:checksum": "122039e3abc71a31345ff8d480e8ee79fbefa31f69d1968cb62ecc52572dd7612161" + }, + { + "rel": "item", + "href": "./BK38_10000_0105.json", + "type": "application/json", + "file:checksum": "12200614d3a5d98c1bfdf57ac977310a6bb885c3fbb9c12f152438d8b633837eadb4" + }, + { + "rel": "item", + "href": "./BK38_10000_0201.json", + "type": "application/json", + "file:checksum": "12208299a6ed837165ba2677729f57fe86c2817b828983ff02049451bdfc6eb996d8" + }, + { + "rel": "item", + "href": "./BK38_10000_0202.json", + "type": "application/json", + "file:checksum": "1220fd52631113072f42471307ea8398251f6bc25c960456e47cfc86b36247b9bf8c" + }, + { + "rel": "item", + "href": "./BK38_10000_0203.json", + "type": "application/json", + "file:checksum": "1220faad24fb6610a3f0b4697cd1248859ea36244eabeb035b3e216cb8c9f1627ee5" + }, + { + "rel": "item", + "href": "./BK38_10000_0204.json", + "type": "application/json", + "file:checksum": "1220ae24f931de39044e9e2468f353bec53bd6d3a9c866b9ee6dd0b69a9756dc9a77" + }, + { + "rel": "item", + "href": "./BK38_10000_0205.json", + "type": "application/json", + "file:checksum": "1220d658ac714785daf1549d970a4425e660ac9a5c2e1a0445e07af5182422a3f30a" + }, + { + "rel": "item", + "href": "./BK38_10000_0301.json", + "type": "application/json", + "file:checksum": "1220d6bbe13529e3eb8180e920de52eeca522eea511b9d7033f8ccdc607eaccba43b" + }, + { + "rel": "item", + "href": "./BK38_10000_0302.json", + "type": "application/json", + "file:checksum": "12209b9e73bd3de304f58aaaa16988afdcaf3898fc34123f35b85aa762a2ca17c770" + }, + { + "rel": "item", + "href": "./BK38_10000_0303.json", + "type": "application/json", + "file:checksum": "122016d6f9f93bd1667ab54225036f93131dab9f36f743f4186331d913b9090235a0" + }, + { + "rel": "item", + "href": "./BK38_10000_0304.json", + "type": "application/json", + "file:checksum": "1220484ac3fd262f74514c1af0fe4fcbf220408495f6437c70b1a61eb34152d8f2af" + }, + { + "rel": "item", + "href": "./BK38_10000_0305.json", + "type": "application/json", + "file:checksum": "12205958638121d1b0f1325fedb340b3bda5f817a37f8de1358f337f7d0c9a18f8d6" + }, + { + "rel": "item", + "href": "./BK38_10000_0401.json", + "type": "application/json", + "file:checksum": "12204b350ff94a78a7e8a40a8827c6fbfc24ec80e67d9ee6dfe1dfff60e31c732d29" + }, + { + "rel": "item", + "href": "./BK38_10000_0402.json", + "type": "application/json", + "file:checksum": "122054fd6102348ace216d182a6974258ca8dd83de64a2fb7fae30d4be0a335ce2c6" + }, + { + "rel": "item", + "href": "./BK38_10000_0403.json", + "type": "application/json", + "file:checksum": "12203b3c4424bc16274c0ff19a5599541142b5a0a87bc41b40c801ba0be2e247a8ea" + }, + { + "rel": "item", + "href": "./BK38_10000_0404.json", + "type": "application/json", + "file:checksum": "12202b7be29d8cf4fe1eb2aa8f37dff8e54365d7f8a311ecc2b836130eabbfd7a78b" + }, + { + "rel": "item", + "href": "./BK38_10000_0405.json", + "type": "application/json", + "file:checksum": "1220b66ef6aac10d0ec0d5ce4b377e766eee6654d6c869c6d79cdf13b225fff985b7" + }, + { + "rel": "item", + "href": "./BK38_10000_0501.json", + "type": "application/json", + "file:checksum": "1220d673481f1d86a559bb834b5e2bf36f72022a579c4d297b21b575371366aa5937" + }, + { + "rel": "item", + "href": "./BK38_10000_0502.json", + "type": "application/json", + "file:checksum": "1220e73633e18b8ef42bc906a68536c5eb2ffe817777c9b38942a1e4f4445b1766dd" + }, + { + "rel": "item", + "href": "./BK38_10000_0503.json", + "type": "application/json", + "file:checksum": "1220df46259cb9bbfd82b6a5006e5cfadfb90f1972577961bb8f3f6c953fb25711e9" + }, + { + "rel": "item", + "href": "./BK38_10000_0504.json", + "type": "application/json", + "file:checksum": "12205db43abe4fb54067acc4b0ef17cab9c308668164b791a436b7f3a2f4e9e91723" + }, + { + "rel": "item", + "href": "./BK38_10000_0505.json", + "type": "application/json", + "file:checksum": "1220d6afa2de2651a72773b6be88e045a580a11e2704546235ad6d377de08cf409f9" + }, + { + "rel": "item", + "href": "./BK39_10000_0101.json", + "type": "application/json", + "file:checksum": "1220cd3f4252371948505008912f3862d5a0ead35b3f499864158b19ef9689e7e21a" + }, + { + "rel": "item", + "href": "./BK39_10000_0102.json", + "type": "application/json", + "file:checksum": "12204cd75c519d93bec5eb3ec6872f8a71f30351706588d50896abb06a27819d9174" + }, + { + "rel": "item", + "href": "./BK39_10000_0103.json", + "type": "application/json", + "file:checksum": "1220f7e3962f849b7646cec2159dab60bdd527536c3a61827418d16f3c6e772935fc" + }, + { + "rel": "item", + "href": "./BK39_10000_0201.json", + "type": "application/json", + "file:checksum": "1220bf7edccd74f924f336d1ba6461ee396f1a02f8783e7caadad56d5b94f39ca2f4" + }, + { + "rel": "item", + "href": "./BK39_10000_0202.json", + "type": "application/json", + "file:checksum": "1220a13c0f2f54995d6b69145320ab1213fc6fccacd017ff5ccb4ea5638fec0b18ea" + }, + { + "rel": "item", + "href": "./BK39_10000_0203.json", + "type": "application/json", + "file:checksum": "1220f2a9cc10ae36c93626a3e9a326d172e00992178933be0025a9770843ebf184bb" + }, + { + "rel": "item", + "href": "./BK39_10000_0204.json", + "type": "application/json", + "file:checksum": "1220d5c95fefda8075e06c7da8b301e1a1a3e5e7317ee3476300b6e805d1f76464bf" + }, + { + "rel": "item", + "href": "./BK39_10000_0301.json", + "type": "application/json", + "file:checksum": "122008e152843bb5ec39a81a6dd7bf7bae2e2a4074e40bf914c0f33d4180f9b99e1c" + }, + { + "rel": "item", + "href": "./BK39_10000_0302.json", + "type": "application/json", + "file:checksum": "1220c40162439a352c57c6914e999fb648601406adb4527d13cc09d06b7312cf89b5" + }, + { + "rel": "item", + "href": "./BK39_10000_0303.json", + "type": "application/json", + "file:checksum": "12201f1772ae6d7772f1594400cf1b7b80df9e3791f29c2e7ca1ef2a1aa25a97a87a" + }, + { + "rel": "item", + "href": "./BK39_10000_0304.json", + "type": "application/json", + "file:checksum": "1220e47ab60b073b03c3cbac39aca4c9db01a59950ac3fc4315f9d191ac5ff02ef61" + }, + { + "rel": "item", + "href": "./BK39_10000_0401.json", + "type": "application/json", + "file:checksum": "1220db65cf01f43046a3c38028d1980c5439f6ee3fc718d9fc07e11989172710b24f" + }, + { + "rel": "item", + "href": "./BK39_10000_0402.json", + "type": "application/json", + "file:checksum": "1220ed4e60a457816a0229a338a62205485fa008f49b68cf27ed7c7fe92ae8a39148" + }, + { + "rel": "item", + "href": "./BK39_10000_0403.json", + "type": "application/json", + "file:checksum": "122092351af45e7e8d341ee6bfbd89346a9ef61922c7ec433e2b468bd14e47109939" + }, + { + "rel": "item", + "href": "./BK39_10000_0404.json", + "type": "application/json", + "file:checksum": "122028d5a406076e6de96b925041b96ec41709c2d6b0377cbe4b19784c4f33781a08" + }, + { + "rel": "item", + "href": "./BK39_10000_0501.json", + "type": "application/json", + "file:checksum": "122086959db3ee69c98c855035c85646560dbb3eb33e1e1e3723388493578c3b26ae" + }, + { + "rel": "item", + "href": "./BK39_10000_0502.json", + "type": "application/json", + "file:checksum": "1220b0a328cfb622f0b0858a1fc68b131a059b778a072b72f7c8dda0ceaccd8d40be" + }, + { + "rel": "item", + "href": "./BK39_10000_0503.json", + "type": "application/json", + "file:checksum": "122082c0db12709bbc834bb8e4511b40560068a0de3c7ccbfdaf1c9f75d85c353ea2" + }, + { + "rel": "item", + "href": "./BL38_10000_0103.json", + "type": "application/json", + "file:checksum": "12205d182c65098663ee5d40bce2e3886cba904934bbd8ccb754227ebd236d01fdc7" + }, + { + "rel": "item", + "href": "./BL38_10000_0104.json", + "type": "application/json", + "file:checksum": "12200fa5bdcde2badb81d39ba637a0bd65dddd2ecee09750e680ec3df5f43a703846" + }, + { + "rel": "item", + "href": "./BL38_10000_0105.json", + "type": "application/json", + "file:checksum": "1220af9114cc292666618982ee3e0c1f56d7a67a2de296505d15befed86a87a1cafa" + }, + { + "rel": "item", + "href": "./BL38_10000_0203.json", + "type": "application/json", + "file:checksum": "122078ed6e81c8b4e30cd88eb1a6835a14e4117c9f37ce3be1cc31a87a50b936b12d" + }, + { + "rel": "item", + "href": "./BL38_10000_0204.json", + "type": "application/json", + "file:checksum": "1220a22bc4d66dc018b44a6f1c33c3c642b6492aee5dc7ba37c3e10703a08a9088b4" + }, + { + "rel": "item", + "href": "./BL38_10000_0205.json", + "type": "application/json", + "file:checksum": "1220eaa399758c40d2bdae4d47d7ebb87e894d5fae8f24b42e97eeca30d6b426142a" + }, + { + "rel": "item", + "href": "./BL38_10000_0302.json", + "type": "application/json", + "file:checksum": "1220c192456f645fbe961a16ae1cd36339b32fadc15d6ebf2fc377c64a89f5077aea" + }, + { + "rel": "item", + "href": "./BL38_10000_0303.json", + "type": "application/json", + "file:checksum": "122087f33340f591703cb54f410a5fdb4148b88b08c43390aa279be3d77fa12fb2e4" + }, + { + "rel": "item", + "href": "./BL38_10000_0304.json", + "type": "application/json", + "file:checksum": "1220a17e5bd4666fb0e81a7125b172adc717063ef3c20f8600d2812cce5c7d8bceec" + }, + { + "rel": "item", + "href": "./BL38_10000_0305.json", + "type": "application/json", + "file:checksum": "12203d16d79e98b553d82ff5d4f6e369ad54c1d29f55b0561d4fae48583afe67660f" + }, + { + "rel": "item", + "href": "./BL38_10000_0405.json", + "type": "application/json", + "file:checksum": "1220962e9ec24b5610bf1f8858ad83c9f78b724a46e4df38f2aab64ea2363094655e" + }, + { + "rel": "item", + "href": "./BL39_10000_0101.json", + "type": "application/json", + "file:checksum": "122028cc17bbe7af138b4854ccf4ebf19d152714c5e5741c2ffe47d8195e93c742d4" + }, + { + "rel": "item", + "href": "./BL39_10000_0102.json", + "type": "application/json", + "file:checksum": "1220995bcd12758c3bc7f3c1ae973301e5ea0f30c7412d2549a8cb5b0b5abedfa30b" + }, + { + "rel": "item", + "href": "./BL39_10000_0201.json", + "type": "application/json", + "file:checksum": "1220099a66b40b7fcff9ca717e6ca08d947cdaca93eb204d19f1c8a1594682f7fddd" + }, + { + "rel": "item", + "href": "./BL39_10000_0202.json", + "type": "application/json", + "file:checksum": "122049345c3218619077d4575924e3a886f7432ad409016f8394b996180757c8948d" + }, + { + "rel": "item", + "href": "./BL39_10000_0203.json", + "type": "application/json", + "file:checksum": "12201249d1e9b332334257a48ba98a254f911f6d51b0e5e01d5110fd915c4f63cedc" + }, + { + "rel": "item", + "href": "./BL39_10000_0301.json", + "type": "application/json", + "file:checksum": "122095162eddfaeff995111c5205a699b96901a305b698d46d23c236c27ae66e7a43" + }, + { + "rel": "item", + "href": "./BL39_10000_0302.json", + "type": "application/json", + "file:checksum": "1220709b7e56f5d478173965054e171e6a67d984e4312a08b4ce6666ce6349ec4572" + }, + { + "rel": "item", + "href": "./BL39_10000_0401.json", + "type": "application/json", + "file:checksum": "1220d97f516db69cbf5f61c372e61c04a748dafcbe33d788d9711096c8f5ab0c9df5" + } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "ongoing", + "linz:geospatial_category": "dsm", + "linz:region": "hawkes-bay", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[176.0260349, -40.0750063, 177.193365, -38.9634771]] }, + "temporal": { "interval": [["2023-09-19T12:00:00Z", "2023-12-20T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220eea49e393d015b6cb61e941beb14372f72fb13f9823a7f34f1dcb96ca62e807d", + "file:size": 79370 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 37b6fd642f3a7788e088908e50c04c1f9dee0b95 Mon Sep 17 00:00:00 2001 From: Victor Engmark Date: Tue, 28 May 2024 22:11:05 +0000 Subject: [PATCH 291/309] build: Bump Node.js to latest LTS, 20.13.1 TDE-1090 (#296) 1. Update the engine: ``` jq '.engines.node = "^20.13.1"' package.json | sponge package.json ``` 2. Update the lock file: ``` npm install ``` 3. Update the uses of `linz/action-typescript`: ``` for path in .github/workflows/*.y*ml; do yq --inplace '(.jobs.*.steps[] | select(.uses == "linz/action-typescript*").with.node-version) = "20.x"' "$path" done ``` --- .github/workflows/publish.yml | 32 ++++---------------------------- package-lock.json | 3 +++ package.json | 3 +++ 3 files changed, 10 insertions(+), 28 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index da9df0f5..db876f92 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,90 +1,74 @@ name: Publish - on: [push] - jobs: main: name: Validate STAC runs-on: ubuntu-latest - steps: - uses: linz/action-typescript@dee99184c4305aea6c380a52db9b2d7abaaa3e78 # v3 - + with: + node-version: 20.x # FIXME: catalog.json is not pushed to the repository (temporary solution) - name: Create STAC Catalog uses: docker://ghcr.io/linz/argo-tasks:v4 with: args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ - - name: Validate STAC Catalog uses: docker://ghcr.io/linz/argo-tasks:v4 with: args: stac-validate /github/workspace/stac/catalog.json - - name: Validate STAC Collections run: | # Enable double star operator shopt -s globstar docker run -v "$PWD:$PWD" ghcr.io/linz/argo-tasks:v4 stac-validate "$PWD"/stac/**/collection.json - - name: Download actionlint run: docker build --tag actionlint - < .github/workflows/actionlint.dockerfile - - name: Run actionlint to check workflow files run: docker run --volume="${PWD}:/repo" --workdir=/repo actionlint -color - publish-odr: name: Publish ODR runs-on: ubuntu-latest needs: main if: ${{ github.ref == 'refs/heads/master' }} - environment: name: prod - permissions: id-token: write contents: read - steps: - uses: linz/action-typescript@dee99184c4305aea6c380a52db9b2d7abaaa3e78 # v3 - + with: + node-version: 20.x - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 with: fetch-depth: 0 - - name: Use Node.js 18.x uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 with: node-version: '18.x' - - name: Setup kubectl uses: azure/setup-kubectl@901a10e89ea615cf61f57ac05cecdf23e7de06d8 # v3 with: version: 'latest' - - name: AWS Configure uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a # v4 with: aws-region: ap-southeast-2 mask-aws-account-id: true role-to-assume: ${{ secrets.AWS_EKS_CI_ROLE }} - - name: Login to EKS run: | aws eks update-kubeconfig --name Workflows --region ap-southeast-2 - - name: Check EKS connection run: | kubectl get nodes - - name: Install Argo run: | curl -sLO https://github.com/argoproj/argo-workflows/releases/download/v3.4.11/argo-linux-amd64.gz gunzip argo-linux-amd64.gz chmod +x argo-linux-amd64 ./argo-linux-amd64 version - - name: Submit Added/Changed Parameter Files id: modified-files if: ${{ !contains(github.event.head_commit.message, '[skip-argo]')}} @@ -95,31 +79,25 @@ jobs: for file in "${modified_parameter_files[@]}"; do ./argo-linux-amd64 submit --wait --from wftmpl/copy -n argo -f "$file" -p aws_role_config_path="s3://linz-bucket-config/config-write.open-data-registry.json" -p exclude="collection.json$" --generate-name "publish-odr-file-copy-" done - sync-stac: name: Sync STAC files runs-on: ubuntu-latest concurrency: publish-${{ github.ref }} needs: publish-odr if: ${{ github.ref == 'refs/heads/master' }} - environment: name: prod - permissions: id-token: write contents: read - steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - name: AWS Configure uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a # v4 with: aws-region: ap-southeast-2 mask-aws-account-id: true role-to-assume: ${{ secrets.AWS_ODR_CI_ROLE }} - - name: AWS Configure ODR uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a # v4 with: @@ -127,12 +105,10 @@ jobs: mask-aws-account-id: true role-to-assume: ${{ secrets.AWS_ODR_DATA_MANAGER_ROLE }} role-chaining: true - - name: Create STAC Catalog uses: docker://ghcr.io/linz/argo-tasks:v4 with: args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ - # Sync STAC files only on push to 'master' - name: Sync STAC if: ${{ !contains(github.event.head_commit.message, '[skip-sync]')}} diff --git a/package-lock.json b/package-lock.json index 97127bf2..637a84d6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,6 +10,9 @@ "license": "MIT", "devDependencies": { "@linzjs/style": "^4.0.0" + }, + "engines": { + "node": "^20.13.1" } }, "node_modules/@eslint-community/eslint-utils": { diff --git a/package.json b/package.json index 8e305271..d6351caa 100644 --- a/package.json +++ b/package.json @@ -10,5 +10,8 @@ }, "devDependencies": { "@linzjs/style": "^4.0.0" + }, + "engines": { + "node": "^20.13.1" } } From 58e5e61834e58e4838646bd3362fc0546a2af2c1 Mon Sep 17 00:00:00 2001 From: Victor Engmark Date: Mon, 3 Jun 2024 23:53:32 +0000 Subject: [PATCH 292/309] feat: Enforce Prettier formatting (#297) --- .prettierignore | 1 + docs/naming.md | 4 +- docs/tiff-compression/README.md | 58 +++++++++++++-------------- docs/usage.md | 70 +++++++++++++++++++-------------- package.json | 3 +- 5 files changed, 72 insertions(+), 64 deletions(-) create mode 100644 .prettierignore diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 00000000..f3674da1 --- /dev/null +++ b/.prettierignore @@ -0,0 +1 @@ +publish-odr-parameters diff --git a/docs/naming.md b/docs/naming.md index d78366f6..d0717004 100644 --- a/docs/naming.md +++ b/docs/naming.md @@ -44,7 +44,7 @@ which can be broken down as: ### S3 Path Restrictions -The _path_ is restricted to a limited set of characters with no whitespace: lowercase "a through "z", numbers "0" through "9", hyphen ("-"), and underscore ("_"). When generating a [dataset S3 path](#imagery-dataset-s3-paths), the system will pass through these characters unchanged to the path, and will transform many others to allowed characters - see the subsections for details. Any characters not mentioned in this section or subsections will result in an error. +The _path_ is restricted to a limited set of characters with no whitespace: lowercase "a through "z", numbers "0" through "9", hyphen ("-"), and underscore ("\_"). When generating a [dataset S3 path](#imagery-dataset-s3-paths), the system will pass through these characters unchanged to the path, and will transform many others to allowed characters - see the subsections for details. Any characters not mentioned in this section or subsections will result in an error. #### Uppercase characters @@ -60,7 +60,7 @@ These characters are replaced with a hyphen. For example, "Tikitapu/Blue Lake" i #### Apostrophes -These are *removed,* so "Hawke's Bay" is changed to "hawkes-bay". +These are _removed,_ so "Hawke's Bay" is changed to "hawkes-bay". #### Ampersands diff --git a/docs/tiff-compression/README.md b/docs/tiff-compression/README.md index aebd7b53..04914aff 100644 --- a/docs/tiff-compression/README.md +++ b/docs/tiff-compression/README.md @@ -17,7 +17,7 @@ LINZ is required to store the elevation data in a safe and secure manner while a ## Goals -As the data is stored in [AWS S3](https://aws.amazon.com/s3/) every GB of data stored costs LINZ [$0.0025 USD / month](https://aws.amazon.com/s3/pricing/?nc=sn&loc=4), to reduce costs for new zealand the imagery needs to be compressed to ensure cost efficient storage. +As the data is stored in [AWS S3](https://aws.amazon.com/s3/) every GB of data stored costs LINZ [$0.0025 USD / month](https://aws.amazon.com/s3/pricing/?nc=sn&loc=4), to reduce costs for new zealand the imagery needs to be compressed to ensure cost efficient storage. This data is large and will also be accessed remotely it should be stored in a cloud optimized format so users can extract only the parts of the data they need, [Cloud optimised geotiff (COG)](https://www.cogeo.org/) without downloading the entire TIFF. @@ -35,26 +35,25 @@ Stacked lerc compression was not tested due to increased testing complexity and GDAL provides a two options for most compression type -- Compression Level +- Compression Level - Predictor (none), Predictor 2 (Integer data type) or 3 (floating-point predictor) LERC has additional options for adjusting how much error is allowed, as the datasets generally have a ~20cm vertical accuracy, to keep the accuracy high only small amounts of allowed z error were tested (<5mm); - ZSTD (66 Tests) - - Predictor NO/1/2 - - Level 1-22 + - Predictor NO/1/2 + - Level 1-22 - Deflate (27 Tests) - - Predictor NO/1/2 - - level 1-9 + - Predictor NO/1/2 + - level 1-9 - LZW (3 Tests) - - Predictor NO/1/2 + - Predictor NO/1/2 - LERC (5 Tests) - - max z error: 0.1mm, 0.5mm, 1mm, 2mm, 5mm + - max z error: 0.1mm, 0.5mm, 1mm, 2mm, 5mm Testing data was selected from [CF15](https://data.linz.govt.nz/data/?mv.basemap=Streets&mv.content=layer.104687.color:003399.opacity:100,layer.109627.opacity:100&mv.zoom=9&mv.centre=169.8493143938876,-45.98894052690091) in [Otago - Coastal Catchments LiDAR 1m DEM (2021)](https://data.linz.govt.nz/layer/109627-otago-coastal-catchments-lidar-1m-dem-2021/) as it provided a mix of flat and hilly regions. which resulted in 2,999 source tiff files approximately 3.4GB -to provide a somewhat reproducible result A docker container [`gdal-ubuntu-small-3.7.0`](https://github.com/OSGeo/gdal/pkgs/container/gdal/91692621?tag=ubuntu-small-3.7.0) was used - +to provide a somewhat reproducible result A docker container [`gdal-ubuntu-small-3.7.0`](https://github.com/OSGeo/gdal/pkgs/container/gdal/91692621?tag=ubuntu-small-3.7.0) was used ### Process @@ -85,46 +84,45 @@ docker run \ /output/cf15-${compression}_predictor-${precdictor}_level-${level}_error-${error}.tiff ``` - ## Results - A full table of results can be found in the [output.tsv](./compression-results.tsv) Key results -|Id|File Size (mb)|Duration for 5 runs (ms)| -|-|-|-| -|base | 3456.00| 0| -|lzw_predictor-2 | 2686.27| 190926| -|deflate_predictor-2_level-9| 1982.15| 208897| -|zstd_predictor-2_level-17 | 1858.77| 469185| -|lerc_z-error-0.001 | 1319.11| 192573| - +| Id | File Size (mb) | Duration for 5 runs (ms) | +| --------------------------- | -------------- | ------------------------ | +| base | 3456.00 | 0 | +| lzw_predictor-2 | 2686.27 | 190926 | +| deflate_predictor-2_level-9 | 1982.15 | 208897 | +| zstd_predictor-2_level-17 | 1858.77 | 469185 | +| lerc_z-error-0.001 | 1319.11 | 192573 | LERC is by far the best compression and speed for converting the DEMS into COGs. if having a minor (1mm) error is allowed it is a huge savings. - As most of this work is for cost reduction for storage and egress of data, what level of cost reduction would this have for 1TB of input data. With the current [AWS S3 pricing](https://aws.amazon.com/s3/pricing/) the following metrics were used -Standard Access - used for frequently accessed data +Standard Access - used for frequently accessed data + - $0.025 / GB / month = $300 / TB /Year Infrequent Access - used for infrequently accessed data (most of our DEMs would fit into this category) + - $0.0138 / GB / month = $165 / TB / Year Egress - Cost to send the data out of AWS + - $0.114 / GB = $114.00 / TB -|Id|Cost/TB/Year (Standard)| Cost/TB/Year (Infrequent)|Egress (1 copy downloaded)| -|-|-|-|-| -|base | $300.00| $165.60| $114.00 | -|lzw_predictor-2 | $233.18| $128.71| $88.61 | -|deflate_predictor-2_level-9| $172.06| $94.78| $65.38 | -|zstd_predictor-2_level-17 | $161.35| $89.06| $61.31 | -|lerc_z-error-0.001 | $114.50| $63.20| $45.51 | +| Id | Cost/TB/Year (Standard) | Cost/TB/Year (Infrequent) | Egress (1 copy downloaded) | +| --------------------------- | ----------------------- | ------------------------- | -------------------------- | +| base | $300.00 | $165.60 | $114.00 | +| lzw_predictor-2 | $233.18 | $128.71 | $88.61 | +| deflate_predictor-2_level-9 | $172.06 | $94.78 | $65.38 | +| zstd_predictor-2_level-17 | $161.35 | $89.06 | $61.31 | +| lerc_z-error-0.001 | $114.50 | $63.20 | $45.51 | So using LERC (1mm) for 1TB of input data would result in approx $190 USD / year in storage costs savings, and $70 in savings for every copy of the data that was egressed out of AWS. @@ -147,7 +145,7 @@ sudo apt-get install libwebp-dev sudo apt-get install libzstd-dev # Download GDAL for specific QGIS version you already have installed -# e.g. QGIS 3.22.4 uses GDAL 3.4.1 +# e.g. QGIS 3.22.4 uses GDAL 3.4.1 wget -c http://download.osgeo.org/gdal/3.4.1/gdal-3.4.1.tar.gz tar -xvzf gdal-3.4.1.tar.gz cd gdal-3.4.1 diff --git a/docs/usage.md b/docs/usage.md index 9a5614c8..465aa617 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -6,7 +6,7 @@ Our public New Zealand Elevation bucket can be used with a number of application The STAC Catalog, https://nz-elevation.s3-ap-southeast-2.amazonaws.com/catalog.json, is the entry point of the LINZ elevation data. It points to the different STAC Collections representing a dataset. -> **_Note:_** The files in the *nz-elevation* bucket can be accessed via `s3://nz-elevation` or `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/`. +> **_Note:_** The files in the _nz-elevation_ bucket can be accessed via `s3://nz-elevation` or `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/`. ### Manually navigate through the STAC Catalog to a get a TIFF @@ -14,31 +14,34 @@ This is an example using the "Taranaki LiDAR 1m DEM (2021)" dataset. 1. From `catalog.json` get the Collection link for "Taranaki LiDAR 1m DEM (2021)" in the `links` list: - ```json - { - "rel": "child", - "href": "./taranaki/taranaki_2021/dem_1m/2193/collection.json", - "title": "Taranaki LiDAR 1m DEM (2021)", - "file:checksum": "122098144561ea4de8e880fb3b857b1ca07d32400189cf48cf9cad96921efdeb3f15", - "file:size": 25426 - }, - ``` + ```json + { + "rel": "child", + "href": "./taranaki/taranaki_2021/dem_1m/2193/collection.json", + "title": "Taranaki LiDAR 1m DEM (2021)", + "file:checksum": "122098144561ea4de8e880fb3b857b1ca07d32400189cf48cf9cad96921efdeb3f15", + "file:size": 25426 + }, + ``` + 2. The Collection can be accessed from this GitHub repository, `stac/taranaki/taranaki_2021/dem_1m/2193/collection.json` or from `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/collection.json`. From the Collection get an Item link in the `links` list: - ```json - { "rel": "item", "href": "./BH31_10000_0403.json", "type": "application/json" } - ``` + ```json + { "rel": "item", "href": "./BH31_10000_0403.json", "type": "application/json" } + ``` + 3. The Item can be accessed from `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/BH31_10000_0403.json`. A list of assets can be found: - ```json - "assets": { - "visual": { - "href": "./BH31_10000_0403.tiff", - "type": "image/tiff; application=geotiff; profile=cloud-optimized", - "file:checksum": "122042af9034edaf0c2ff7522e26db4fb3a4a5835015f6dfc118acbd6c3f2b011ee5" - } - } - ``` + ```json + "assets": { + "visual": { + "href": "./BH31_10000_0403.tiff", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "file:checksum": "122042af9034edaf0c2ff7522e26db4fb3a4a5835015f6dfc118acbd6c3f2b011ee5" + } + } + ``` + 4. In this case, the TIFF can be accessed from `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/BH31_10000_0403.tiff` > **_Note:_** Our TIFF files and STAC Item files use the same base name. Having the link to the STAC Item, you can determine the TIFF link by changing its suffix from `.json` to `.tiff`. @@ -79,6 +82,7 @@ Check the total size of all elevation data held for one region. ```shell s5cmd --no-sign-request du --humanize s3://nz-elevation/canterbury/* ``` + ``` 103.5G bytes in 7784 objects: s3://nz-elevation/canterbury/* ``` @@ -88,6 +92,7 @@ Check the total size of a specific elevation dataset and limit to just the eleva ```shell s5cmd --no-sign-request du --humanize s3://nz-elevation/canterbury/christchurch_2020-2021/dem_1m/2193/*.tiff ``` + ``` 592.5M bytes in 27 objects: s3://nz-elevation/canterbury/christchurch_2020-2021/dem_1m/2193/*.tiff ``` @@ -178,7 +183,7 @@ Upper Right ( 1746400.000, 5672400.000) (174d41'33.63"E, 39d 5' 6.88"S) Lower Right ( 1746400.000, 5665200.000) (174d41'39.22"E, 39d 9' 0.35"S) Center ( 1744000.000, 5668800.000) (174d39'56.52"E, 39d 7' 5.05"S) Band 1 Block=512x512 Type=Float32, ColorInterp=Gray - Min=130.799 Max=454.541 + Min=130.799 Max=454.541 Minimum=130.799, Maximum=454.541, Mean=289.727, StdDev=59.772 NoData Value=-9999 Overviews: 2400x3600, 1200x1800, 600x900, 300x450 @@ -202,8 +207,8 @@ Band 1 Block=512x512 Type=Float32, ColorInterp=Gray 4. Paste the HTTPS URL to the TIFF, for example `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/BH31_10000_0403.tiff` 5. Click on the "Add" button and wait for the file to load. - ![Data Source Manager](img/usage/qgis_data-source-manager.png) - ![QGIS View TIFF](img/usage/qgis_visualisation.png) + ![Data Source Manager](img/usage/qgis_data-source-manager.png) + ![QGIS View TIFF](img/usage/qgis_visualisation.png) ## ArcGIS Pro @@ -211,14 +216,17 @@ Band 1 Block=512x512 Type=Float32, ColorInterp=Gray 1. On the "Insert" ribbon, select "Connections" then "Cloud Store" then "New Cloud Storage Connection". - ![ArcGIS Pro New Cloud Storage Connection](img/usage/arcgis_pro_new_cloud_connection.png) + ![ArcGIS Pro New Cloud Storage Connection](img/usage/arcgis_pro_new_cloud_connection.png) + 2. In the "Create Cloud Storage Connection" dialog, add a "Connection File Name" e.g. `New Zealand Elevation`, "Service Provider" as `AMAZON`, "Bucket Name" as `nz-elevation`, "Region" as `Asia Pacific (Sydney)` and "Service Endpoint" as `s3.ap-southeast-2.amazon.com`. 3. Because this is a Public Bucket, add a "Provider Option" with "Name" of `AWS_NO_SIGN_REQUEST` and "Value" of `YES`. This means that you won't need an Access Key ID or Secret Access Key. - ![ArcGIS Pro Cloud Storage Connection Details](img/usage/arcgis_pro_connection_details.png) + ![ArcGIS Pro Cloud Storage Connection Details](img/usage/arcgis_pro_connection_details.png) + 4. Click "OK". The cloud storage connection will appear in the "Catalog" pane, where the bucket structure can be explored. - ![ArcGIS Pro Catalog View](img/usage/arcgis_pro_catalog_view.png) + ![ArcGIS Pro Catalog View](img/usage/arcgis_pro_catalog_view.png) + 5. From here you can add individual TIFFs to the map, export them to different data formats, etc. ## Cyberduck @@ -231,8 +239,10 @@ Band 1 Block=512x512 Type=Float32, ColorInterp=Gray 2. Expand the "Connection Profiles" dropdown (that defaults to FTP) and select "More Options" at the bottom of the list. Search using "HTTPS" to find the `S3 (HTTPS)` connection profile. Select it, then close the "Preferences" window. 3. Add a "Server" of `s3-ap-southeast-2.amazonaws.com`, check the "Anonymous Login" checkbox and add a "Path" of `nz-elevation`. - ![Cyberduck Open Connection](img/usage/cyberduck_open_connection.png) + ![Cyberduck Open Connection](img/usage/cyberduck_open_connection.png) + 4. Click "Connect". The top level of the bucket will be displayed and can be explored. - ![Cyberduck Bucket View](img/usage/cyberduck_bucket_view.png) + ![Cyberduck Bucket View](img/usage/cyberduck_bucket_view.png) + 5. From here you can use "Get Info" to calculate the size of particular directories or datasets and right-click to "Download" or "Synchronize". diff --git a/package.json b/package.json index d6351caa..e442307b 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,7 @@ "repository": "git@github.com:linz/elevation.git", "license": "MIT", "scripts": { - "format": "prettier -w template/ *.md", - "lint": "eslint . --quiet --fix --ignore-path .gitignore" + "lint": "eslint --quiet --fix --ignore-path=.gitignore . && prettier --check --write ." }, "devDependencies": { "@linzjs/style": "^4.0.0" From 1e21adebd013a6078e86eebdbe42da71bab76651 Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Tue, 25 Jun 2024 11:06:13 +1200 Subject: [PATCH 293/309] fix: ensure only the latest stac documents are synced into s3 (#300) **Motivation** When jobs are rerun STAC documents can be synced into s3 from a old pull request **Modification** allows workflows to be run without a commit merged to ensure stac is upto date Force checkout master when syncing stac so only the latest versions are synced. Also updates some GitHub Action versions and the Pull Request template to match the imagery repo. --- .github/pull_request_template.md | 13 +++++++++++ .github/workflows/publish.yml | 39 ++++++++++++++++++++++++++++---- 2 files changed, 47 insertions(+), 5 deletions(-) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..37436b15 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,13 @@ +### Motivation + + + +### Modifications + + + + + +### Verification + + diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index db876f92..6714cbd4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,74 +1,93 @@ name: Publish -on: [push] +on: + push: + workflow_dispatch: + jobs: main: name: Validate STAC runs-on: ubuntu-latest steps: - - uses: linz/action-typescript@dee99184c4305aea6c380a52db9b2d7abaaa3e78 # v3 + - uses: linz/action-typescript@9bf69b0f313b3525d3ba3116f26b1aff7eb7a6c0 # v3 with: node-version: 20.x - # FIXME: catalog.json is not pushed to the repository (temporary solution) + - name: Create STAC Catalog uses: docker://ghcr.io/linz/argo-tasks:v4 with: args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ + - name: Validate STAC Catalog uses: docker://ghcr.io/linz/argo-tasks:v4 with: args: stac-validate /github/workspace/stac/catalog.json + - name: Validate STAC Collections run: | # Enable double star operator shopt -s globstar docker run -v "$PWD:$PWD" ghcr.io/linz/argo-tasks:v4 stac-validate "$PWD"/stac/**/collection.json + - name: Download actionlint run: docker build --tag actionlint - < .github/workflows/actionlint.dockerfile + - name: Run actionlint to check workflow files run: docker run --volume="${PWD}:/repo" --workdir=/repo actionlint -color + publish-odr: name: Publish ODR runs-on: ubuntu-latest needs: main if: ${{ github.ref == 'refs/heads/master' }} + environment: name: prod + permissions: id-token: write contents: read + steps: - - uses: linz/action-typescript@dee99184c4305aea6c380a52db9b2d7abaaa3e78 # v3 + - uses: linz/action-typescript@9bf69b0f313b3525d3ba3116f26b1aff7eb7a6c0 # v3 with: node-version: 20.x + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 with: fetch-depth: 0 + - name: Use Node.js 18.x uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 with: node-version: '18.x' + - name: Setup kubectl - uses: azure/setup-kubectl@901a10e89ea615cf61f57ac05cecdf23e7de06d8 # v3 + uses: azure/setup-kubectl@3e0aec4d80787158d308d7b364cb1b702e7feb7f # v4.0.0 with: version: 'latest' + - name: AWS Configure uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a # v4 with: aws-region: ap-southeast-2 mask-aws-account-id: true role-to-assume: ${{ secrets.AWS_EKS_CI_ROLE }} + - name: Login to EKS run: | aws eks update-kubeconfig --name Workflows --region ap-southeast-2 + - name: Check EKS connection run: | kubectl get nodes + - name: Install Argo run: | curl -sLO https://github.com/argoproj/argo-workflows/releases/download/v3.4.11/argo-linux-amd64.gz gunzip argo-linux-amd64.gz chmod +x argo-linux-amd64 ./argo-linux-amd64 version + - name: Submit Added/Changed Parameter Files id: modified-files if: ${{ !contains(github.event.head_commit.message, '[skip-argo]')}} @@ -79,25 +98,33 @@ jobs: for file in "${modified_parameter_files[@]}"; do ./argo-linux-amd64 submit --wait --from wftmpl/copy -n argo -f "$file" -p aws_role_config_path="s3://linz-bucket-config/config-write.open-data-registry.json" -p exclude="collection.json$" --generate-name "publish-odr-file-copy-" done + sync-stac: name: Sync STAC files runs-on: ubuntu-latest concurrency: publish-${{ github.ref }} needs: publish-odr if: ${{ github.ref == 'refs/heads/master' }} + environment: name: prod + permissions: id-token: write contents: read + steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + with: + ref: master # Ensure only the latest STAC documents are synced into S3 + - name: AWS Configure uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a # v4 with: aws-region: ap-southeast-2 mask-aws-account-id: true role-to-assume: ${{ secrets.AWS_ODR_CI_ROLE }} + - name: AWS Configure ODR uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a # v4 with: @@ -105,10 +132,12 @@ jobs: mask-aws-account-id: true role-to-assume: ${{ secrets.AWS_ODR_DATA_MANAGER_ROLE }} role-chaining: true + - name: Create STAC Catalog uses: docker://ghcr.io/linz/argo-tasks:v4 with: args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ + # Sync STAC files only on push to 'master' - name: Sync STAC if: ${{ !contains(github.event.head_commit.message, '[skip-sync]')}} From 82b9c14550c5b1591a9f7515c6dddb31a3ac2042 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 4 Jul 2024 15:29:18 +1200 Subject: [PATCH 294/309] feat: import Waikato LiDAR 1m DEM (2021) (#301) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-37.8679680,175.6193091,z8?style=04-es-waikato-dem-tm4xp&tileMatrix=NZTM2000Quad&debug&config=6sUk4Za2WKysFTtUuDLY8VZKUUvfvkXoNXGCqB3PC6uJeN1fErRprUUAzMwF51rGZi9zZmRG7xKu3faxZPS4wQmcLes9PSDmL6qhRVo5VVLJJcWtABzsQRE9dnZVYwnP8g1HS67b4VVMZh7BeJmbHLKG5RhUoV5ZH9Fc635MHzB35jZrrEvQQH) **ODR destination path:** `s3://nz-elevation/waikato/waikato_2021/dem_1m/2193/` --- ...QRH2G1MPBBR8PBKPRASE0RE-1720062861770.yaml | 7 + .../waikato_2021/dem_1m/2193/collection.json | 5774 +++++++++++++++-- 2 files changed, 5250 insertions(+), 531 deletions(-) create mode 100644 publish-odr-parameters/01HQRH2G1MPBBR8PBKPRASE0RE-1720062861770.yaml diff --git a/publish-odr-parameters/01HQRH2G1MPBBR8PBKPRASE0RE-1720062861770.yaml b/publish-odr-parameters/01HQRH2G1MPBBR8PBKPRASE0RE-1720062861770.yaml new file mode 100644 index 00000000..faedcb35 --- /dev/null +++ b/publish-odr-parameters/01HQRH2G1MPBBR8PBKPRASE0RE-1720062861770.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-07/04-es-waikato-dem-tm4xp/flat/", + "target": "s3://nz-elevation/waikato/waikato_2021/dem_1m/2193/", + "ticket": "", + "copy_option": "--force", + "region": "waikato" +} \ No newline at end of file diff --git a/stac/waikato/waikato_2021/dem_1m/2193/collection.json b/stac/waikato/waikato_2021/dem_1m/2193/collection.json index 9b25467b..6ce641d6 100644 --- a/stac/waikato/waikato_2021/dem_1m/2193/collection.json +++ b/stac/waikato/waikato_2021/dem_1m/2193/collection.json @@ -12,534 +12,5244 @@ "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ35_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ35_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ35_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ35_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BB31_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BB32_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BB32_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BB32_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BB32_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BB32_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BB37_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BC36_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BC36_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BC36_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BC36_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BC36_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BC36_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BD31_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BD31_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BD36_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BD36_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BD36_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BD36_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BD36_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BE31_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BE31_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BE31_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BE31_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BE31_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BE31_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BE31_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BF36_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BF36_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BF36_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BF36_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BF36_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BF37_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BF37_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BF37_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BG33_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BG33_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BG33_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BG33_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BG33_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BG33_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BG37_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BG37_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BG37_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BG37_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BG37_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BG37_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BG37_10000_0301.json", "type": "application/json" } + { + "rel": "item", + "href": "./AZ34_10000_0302.json", + "type": "application/json", + "file:checksum": "12206807ec92ce44d0b0020d62100611dda0eddcad7298631cb020b1e49ac77c27a9" + }, + { + "rel": "item", + "href": "./AZ34_10000_0303.json", + "type": "application/json", + "file:checksum": "12205c55f1a8600165d22debfd3e4a720cd2b795b6e6c4a40dd03e9f1a892edf20df" + }, + { + "rel": "item", + "href": "./AZ34_10000_0401.json", + "type": "application/json", + "file:checksum": "122006cf5f56e493bc5c4f9718dd0228720dfe06097d57662e38b2fb629097a0f846" + }, + { + "rel": "item", + "href": "./AZ34_10000_0402.json", + "type": "application/json", + "file:checksum": "12202245b16ceb53ab4c8fb7cddfca7304d68f4b531535187484f8292a87076e621c" + }, + { + "rel": "item", + "href": "./AZ34_10000_0403.json", + "type": "application/json", + "file:checksum": "12201dffba7f80e8b984799ea1309a333a5749fde7c6ac77c30f40dfa7a200877246" + }, + { + "rel": "item", + "href": "./AZ34_10000_0404.json", + "type": "application/json", + "file:checksum": "122007e65b4d94b43454f9e4cba655c38b0f876009a7a136507c917b33150327063f" + }, + { + "rel": "item", + "href": "./AZ34_10000_0405.json", + "type": "application/json", + "file:checksum": "122087e52d657d10d9bee9970749f0fd45e167577a45ccd27a2124ebcef756eda3f7" + }, + { + "rel": "item", + "href": "./AZ34_10000_0502.json", + "type": "application/json", + "file:checksum": "1220770d22ecac48b087b6ae7b0acf8df50f2f28bffccc0eb2d17c7434b215c56e58" + }, + { + "rel": "item", + "href": "./AZ34_10000_0503.json", + "type": "application/json", + "file:checksum": "122099aca6927e9a216ba4f482b9c7fae5e5329317f0ab56515146f9ac90f73b827c" + }, + { + "rel": "item", + "href": "./AZ34_10000_0504.json", + "type": "application/json", + "file:checksum": "1220ee4fa3816e2f50d9a948a502a85657a67df71c56fbe0acfe2a8be38be8b5adf4" + }, + { + "rel": "item", + "href": "./AZ34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e624b83cacf6e47ca0bad49768ba426656b4b331a8a2eb986d2f3804c92ef926" + }, + { + "rel": "item", + "href": "./AZ35_10000_0305.json", + "type": "application/json", + "file:checksum": "12208c73eb80156cdb4cd1ade287dab5a9551a52b981fc1ea6973b4a5a7deff1c7c2" + }, + { + "rel": "item", + "href": "./AZ35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220ba2d5d441be2c49f18bdea786d3e5fb6f1074ccfbdad98616eb521690587d992" + }, + { + "rel": "item", + "href": "./AZ35_10000_0504.json", + "type": "application/json", + "file:checksum": "122016f0c83536868872a2fd4d59a0b09df6a07457e7fe7212f6271b1e8d91b30221" + }, + { + "rel": "item", + "href": "./AZ35_10000_0505.json", + "type": "application/json", + "file:checksum": "12207b473b540f1101086ee7b053f3de427bb44054ae737fdb0d2ed86f6b879a4b5f" + }, + { + "rel": "item", + "href": "./BA34_10000_0102.json", + "type": "application/json", + "file:checksum": "1220266213e124ae196c78b3e4172cb62e803f9e1f7ced99be8f51acfe22c99a8ae0" + }, + { + "rel": "item", + "href": "./BA34_10000_0103.json", + "type": "application/json", + "file:checksum": "12203e61773ea8c5cbf6c7511f44e4896471b0ced3e3a2ba179a544f4003d1eb6771" + }, + { + "rel": "item", + "href": "./BA34_10000_0104.json", + "type": "application/json", + "file:checksum": "122082b8e169262bd7bffeb41aae6be401bd211a0136e9985070370de9fcb3938f4d" + }, + { + "rel": "item", + "href": "./BA34_10000_0105.json", + "type": "application/json", + "file:checksum": "12206a1ceb873d7cc5b9b331d0948a7325bac21fd5df6d4156a5f757b5158bfafc2c" + }, + { + "rel": "item", + "href": "./BA34_10000_0202.json", + "type": "application/json", + "file:checksum": "1220dba8f4aa0b1385abab6990d208c0c44d31ad56cc29646d8f000ee2b4045832f6" + }, + { + "rel": "item", + "href": "./BA34_10000_0203.json", + "type": "application/json", + "file:checksum": "1220680117223e4a1f97f24e359a60b72969ecf1f1ce122ff1422bea5efccf4aeba4" + }, + { + "rel": "item", + "href": "./BA34_10000_0204.json", + "type": "application/json", + "file:checksum": "12201f7145a2e718f3d83f76c4fa54006045ad8cbf807abd15d451510271f921c0d6" + }, + { + "rel": "item", + "href": "./BA34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220fd25458a544e4f77e041141de95e2a0ccdcd55817b04b9fceea68a061e722c40" + }, + { + "rel": "item", + "href": "./BA34_10000_0302.json", + "type": "application/json", + "file:checksum": "1220a8661e9b44b225c1f34191f1b7a6d6915e88d74c93ff48f2cd435021c2d0b7cf" + }, + { + "rel": "item", + "href": "./BA34_10000_0303.json", + "type": "application/json", + "file:checksum": "122071b3d6f0605c29047c465046c0621d987c74927158aa2ab3d7ad5e21b5661b3a" + }, + { + "rel": "item", + "href": "./BA34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220aa79ea202590d0cda60a427ae55a76a705caec4e03a04044e95708ef87309432" + }, + { + "rel": "item", + "href": "./BA34_10000_0305.json", + "type": "application/json", + "file:checksum": "12203a1639aa9de0abe4c9ba3d849cf9566e6ff38aa0cffe9411008cce9cc94846ee" + }, + { + "rel": "item", + "href": "./BA34_10000_0403.json", + "type": "application/json", + "file:checksum": "12205b6737b5c70b1b61fcbbe182661f90b529eac44448d62e972f17814a3fc3965b" + }, + { + "rel": "item", + "href": "./BA34_10000_0404.json", + "type": "application/json", + "file:checksum": "12206942024819f9d7da4d8085e09af32ae6b447bed731b55b0c1456990a86a35a9e" + }, + { + "rel": "item", + "href": "./BA34_10000_0405.json", + "type": "application/json", + "file:checksum": "12207bc8251ebb21fa258e51e8206509ded2c122410ad24551b96b8d49647c39df29" + }, + { + "rel": "item", + "href": "./BA34_10000_0503.json", + "type": "application/json", + "file:checksum": "122094993fcd29a9224c5d00394d0a8e0a2e9debabedcf53380f58b12a903a71098c" + }, + { + "rel": "item", + "href": "./BA34_10000_0504.json", + "type": "application/json", + "file:checksum": "12205cd434e8f51afa8cfab930d591b345bc852fab1273a6237a3240fc5373cfd390" + }, + { + "rel": "item", + "href": "./BA34_10000_0505.json", + "type": "application/json", + "file:checksum": "12203baab5f852fef197829210570ad1d5d1eba342538710ea9479e514e990ab0a89" + }, + { + "rel": "item", + "href": "./BA35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220dec4013cab6b4d89dfe3764a7f1acb79de8a92c4b2dc31e99d17cbc8f1e3a7af" + }, + { + "rel": "item", + "href": "./BA35_10000_0104.json", + "type": "application/json", + "file:checksum": "1220e7b5c28bdd404d8928ef8aebccdaf16d72feef45a009e937d4ec12a7cdd65f16" + }, + { + "rel": "item", + "href": "./BA35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220c0cfdc877b65157735e5c09457fd6cabf3d471f5c8bdc99f69922ec0f800fcf7" + }, + { + "rel": "item", + "href": "./BA35_10000_0201.json", + "type": "application/json", + "file:checksum": "122008b0e937109e277dec25de208f290e6322f34af556bcc88a14ef775323354b21" + }, + { + "rel": "item", + "href": "./BA35_10000_0202.json", + "type": "application/json", + "file:checksum": "12209746f3f178fe9d8880194d93d397771af40673aa71982415d50c59bdaa3d050a" + }, + { + "rel": "item", + "href": "./BA35_10000_0203.json", + "type": "application/json", + "file:checksum": "12200ea2ec79c47919b3fade88b17ea5483823e8dbfc2960a41e653fe24c480df066" + }, + { + "rel": "item", + "href": "./BA35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220cbf692b583a1bc22ea8cba0970530fe3fad5b764dcd52251c561c90f174d8fbb" + }, + { + "rel": "item", + "href": "./BA35_10000_0205.json", + "type": "application/json", + "file:checksum": "122037d9bc191ce102ffcc3e5d32cfc98f66140ef440801eb460dd71360ef1fcc228" + }, + { + "rel": "item", + "href": "./BA35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220080eed5e5259376ab3d303a1094a04a3ec965eac4df97ad52b9c6911e36d62d8" + }, + { + "rel": "item", + "href": "./BA35_10000_0302.json", + "type": "application/json", + "file:checksum": "122090d4585e9af33bd45e66680d4ec7604c40e298de8cef9d5180bf31c23ddf9b44" + }, + { + "rel": "item", + "href": "./BA35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220e4cc8fd27c95854dec56c82f9af3da8e69e1467c733325d42cbe77d5f206ae45" + }, + { + "rel": "item", + "href": "./BA35_10000_0304.json", + "type": "application/json", + "file:checksum": "12205ed7aab3212aab88c1112f868bc8a44a6165d55db409ae7acdb7e8c53a894e35" + }, + { + "rel": "item", + "href": "./BA35_10000_0305.json", + "type": "application/json", + "file:checksum": "1220b841f20b5409ca9fe900016701b91679800cf1c4e6d57fd4e381dd979726daa8" + }, + { + "rel": "item", + "href": "./BA35_10000_0401.json", + "type": "application/json", + "file:checksum": "122003a9cae5d09d4618ed5433a3d28ab0e243fed4c593f9d19257113749ed0e4a83" + }, + { + "rel": "item", + "href": "./BA35_10000_0402.json", + "type": "application/json", + "file:checksum": "122022cf2ea1fc14a85101759b8171c0309e6a827af0b217be841b1d8ed3b6608f01" + }, + { + "rel": "item", + "href": "./BA35_10000_0403.json", + "type": "application/json", + "file:checksum": "12208cc4c1f3f3bc9786d7b2ea3e666f1ed8b5cbb1a5aa9755e1dc9e4383c0ea6097" + }, + { + "rel": "item", + "href": "./BA35_10000_0404.json", + "type": "application/json", + "file:checksum": "12200307af9894adfd5939ce318ef3d8828a0b91b5e91ce2d67a1570e082c7142746" + }, + { + "rel": "item", + "href": "./BA35_10000_0405.json", + "type": "application/json", + "file:checksum": "12209016f36f42af2a52815b2cabb87301c8ea53852b84613633c63cdff3842bde7c" + }, + { + "rel": "item", + "href": "./BA35_10000_0501.json", + "type": "application/json", + "file:checksum": "122021b1239483126da8c8873b9852fa7202619a19b54c3e29908e92c9ffb904c4bd" + }, + { + "rel": "item", + "href": "./BA35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220aeaefcda2e2413dbee6c6eafe90b173702a2809e8423f9e6f43aee36949d1bb9" + }, + { + "rel": "item", + "href": "./BA35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220b17a877648e51cb54fbd6c9701dc758920ac5dd8866e8c0a3bf9c2ba42a9482f" + }, + { + "rel": "item", + "href": "./BA35_10000_0504.json", + "type": "application/json", + "file:checksum": "12204bfb3e4b8b066d9cf10c6ed073b9b3b07de05bd773b2982beb40bd65581d3748" + }, + { + "rel": "item", + "href": "./BA35_10000_0505.json", + "type": "application/json", + "file:checksum": "12209b143f9a3fc6436422f223b204525d8799bcba6ba4523ea0b1d919f22a20e3ad" + }, + { + "rel": "item", + "href": "./BA36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220b915bfc8950aba468e7a8d04276e4732a2ba5e6a1742459fef1250a688a60402" + }, + { + "rel": "item", + "href": "./BA36_10000_0102.json", + "type": "application/json", + "file:checksum": "122042bbe705d8f999d6bbef20b990e690bf24384038c15cea220eb0b3208ab527dc" + }, + { + "rel": "item", + "href": "./BA36_10000_0103.json", + "type": "application/json", + "file:checksum": "12204c5f674326c0659a9fd2f7156fe9661ef440a39a32c412ee7b86461e917b7ecc" + }, + { + "rel": "item", + "href": "./BA36_10000_0201.json", + "type": "application/json", + "file:checksum": "12202f4a8ed3d88ebfa6007c93366160ddf677bcaf4a89312d5ec6f2effaab0ed8d9" + }, + { + "rel": "item", + "href": "./BA36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220fa68228e464be32cf5fa97bc5dbb61b780413d82b82fab615059d17bb07e9e5c" + }, + { + "rel": "item", + "href": "./BA36_10000_0301.json", + "type": "application/json", + "file:checksum": "12208b2ea92eaded3c84644dd257d90f9831cc71a48ace32d73f44370decf548c19d" + }, + { + "rel": "item", + "href": "./BA36_10000_0302.json", + "type": "application/json", + "file:checksum": "12203a7eb4e7b8ce51347a226a5b53d71335406ddbdf294e762615061c76976c174c" + }, + { + "rel": "item", + "href": "./BA36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220a228e60b227554acbd5c317f0d9263e027d165f8416f02436e44d0beda7b8fd0" + }, + { + "rel": "item", + "href": "./BA36_10000_0501.json", + "type": "application/json", + "file:checksum": "12204e5ebaaf32b25492b90420c4ddfe64ec565b6abc238fa5f0fa1853ef21877ed1" + }, + { + "rel": "item", + "href": "./BA36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220d7919fbb5814ccfa232513802161e7f6348d135874bf9178aff0a2c2947d423c" + }, + { + "rel": "item", + "href": "./BB31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220561fee9c5ce30356a9b0b761a940df038aff4046004117ace484c39543afa490" + }, + { + "rel": "item", + "href": "./BB32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220edc321f3102f3257fb2fc869cd6e4a8cddc274998d396985943389b76c4b2bd4" + }, + { + "rel": "item", + "href": "./BB32_10000_0502.json", + "type": "application/json", + "file:checksum": "12204f9f7f890ee92016b01cb94d364b784410f73c1e9c6f0caca2a2b1c0c2b70c1f" + }, + { + "rel": "item", + "href": "./BB32_10000_0503.json", + "type": "application/json", + "file:checksum": "122025ad754063650e5b003f17011aa4602bf651caea895259c923380c69b92be39e" + }, + { + "rel": "item", + "href": "./BB32_10000_0504.json", + "type": "application/json", + "file:checksum": "122014aa83d89883e915f79819c040d86a8ae6347c864c8761ee01137ea1960faa24" + }, + { + "rel": "item", + "href": "./BB32_10000_0505.json", + "type": "application/json", + "file:checksum": "12204be900e7294eb2b0b6f67823f5f3994d90ebc50c1daaffaf2ffca78fd8455508" + }, + { + "rel": "item", + "href": "./BB33_10000_0304.json", + "type": "application/json", + "file:checksum": "1220ab31d17e7b0f53e73a6b201f7891dd0014add9b991c44fe7ce5a6ffb6fcdde79" + }, + { + "rel": "item", + "href": "./BB33_10000_0305.json", + "type": "application/json", + "file:checksum": "12208412ec6953a012e5d2946a749e47d341f1a9464abd6f80794c92196a935c236b" + }, + { + "rel": "item", + "href": "./BB33_10000_0401.json", + "type": "application/json", + "file:checksum": "12204ef080b714ef3b462ae5d5f92b0d377a81b286d02095e0f461c78fb8e04a13a9" + }, + { + "rel": "item", + "href": "./BB33_10000_0402.json", + "type": "application/json", + "file:checksum": "1220255aef3df7eaffe2666dea291b54bcaa7a170da3fd54e4714f51f444b136d651" + }, + { + "rel": "item", + "href": "./BB33_10000_0403.json", + "type": "application/json", + "file:checksum": "12202b003a0e2e9b22603bed6bf56afb8d7a072a5fbb6c058afc52362c5320ad6bca" + }, + { + "rel": "item", + "href": "./BB33_10000_0404.json", + "type": "application/json", + "file:checksum": "1220356e1c5139afb1caf0299f35e406f7c30c83cc7bb1d5b15c6a6eea7c6a7804ca" + }, + { + "rel": "item", + "href": "./BB33_10000_0405.json", + "type": "application/json", + "file:checksum": "122010aab0f99abf4850d4f3222575e01df6192dfb80c09e6a2667c1777a0303dceb" + }, + { + "rel": "item", + "href": "./BB33_10000_0501.json", + "type": "application/json", + "file:checksum": "12206aaf6440ac5348d015dffd56b266b3d872f1a56b26e43b7db2db080db62a11d6" + }, + { + "rel": "item", + "href": "./BB33_10000_0502.json", + "type": "application/json", + "file:checksum": "12208e4ef417c045affeae963922feaa05a1c0dbcdc8ff50b6d8c9b5e0c489e7e865" + }, + { + "rel": "item", + "href": "./BB33_10000_0503.json", + "type": "application/json", + "file:checksum": "12204550fa908f7844d88fe29b00cf5584598671ad324afff8382a6a14fa3c7e5ffc" + }, + { + "rel": "item", + "href": "./BB33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220df096498f99447fb6c0cf5c42cd86eb7a256f9a204913836adccabd6bd69fcda" + }, + { + "rel": "item", + "href": "./BB33_10000_0505.json", + "type": "application/json", + "file:checksum": "122085a653273db393614cb0428904e698ca845ff0166b2811a2d16d05f08e8af776" + }, + { + "rel": "item", + "href": "./BB34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220567d6c547b1d3865bd9fe5526936ebac440344c43e8883dabe7545fd64c6292a" + }, + { + "rel": "item", + "href": "./BB34_10000_0105.json", + "type": "application/json", + "file:checksum": "122041d71ed8e9d50b52c8112819bed94797e3d3140ecc4c7ce5cbc43fbb74d0ab0e" + }, + { + "rel": "item", + "href": "./BB34_10000_0204.json", + "type": "application/json", + "file:checksum": "122090f4d75aff7109fae993e814797a32d96ccfa10965e7dc9595a3645ffc712d44" + }, + { + "rel": "item", + "href": "./BB34_10000_0205.json", + "type": "application/json", + "file:checksum": "122021d63742d7feeb21504f7f8498c61fef5a333692a9ad238aeb48ea66766824d5" + }, + { + "rel": "item", + "href": "./BB34_10000_0301.json", + "type": "application/json", + "file:checksum": "12201b730f912fbe2fca5e4b9ceee7138edfe7de9208a5a0c71f282130d7cef92259" + }, + { + "rel": "item", + "href": "./BB34_10000_0305.json", + "type": "application/json", + "file:checksum": "122016ed8128042768a0c1ddd9355b6e016cae386df4876dda5020015942ffd3a5e0" + }, + { + "rel": "item", + "href": "./BB34_10000_0401.json", + "type": "application/json", + "file:checksum": "12208eb81e60b8679bfd41df414cb07cb05092072b3159a23ed6d461c5923298675d" + }, + { + "rel": "item", + "href": "./BB34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220ac34f1b1ebc2ae8c5c99efff30f6f956e78d80bd00fd4c013c6e323e3fc1c79a" + }, + { + "rel": "item", + "href": "./BB34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220111757e518625f6c291f166639f8f7f9a6bd4148b8318f3c09bc5adc1024231d" + }, + { + "rel": "item", + "href": "./BB34_10000_0405.json", + "type": "application/json", + "file:checksum": "12208d2a9b41eaf8944659f97d9200110ca98fa12e5d263ee36fe0ea39fc7741fcb0" + }, + { + "rel": "item", + "href": "./BB34_10000_0501.json", + "type": "application/json", + "file:checksum": "12200065a8e68046a70effa27ff38787bda776f94f7185558afc88a88cca2f1b97c8" + }, + { + "rel": "item", + "href": "./BB34_10000_0502.json", + "type": "application/json", + "file:checksum": "12209485bba93f19914b5652eaa2ff545d333923eac0c462ff0a6d38ae9c2dca80d0" + }, + { + "rel": "item", + "href": "./BB34_10000_0503.json", + "type": "application/json", + "file:checksum": "1220c98c1a7345eacf46a822fb4e6e3ff43ae5e9d38e05bea886ce1a29ca3ff5fd25" + }, + { + "rel": "item", + "href": "./BB34_10000_0504.json", + "type": "application/json", + "file:checksum": "122093aecb469cc28d2696faff64604d5880bc0e7efbc22677eb67b9b1243af17fb9" + }, + { + "rel": "item", + "href": "./BB34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220aeff2620c79259c243b2c9b4c0c73ab0fa60e61a31517804f16c042905509c5e" + }, + { + "rel": "item", + "href": "./BB35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220204af960d1851ac42d767caa218ee573a1cd652cfd53e802ef06b352989eaace" + }, + { + "rel": "item", + "href": "./BB35_10000_0102.json", + "type": "application/json", + "file:checksum": "1220428fa1df185e8c4b3bfc6baa460b5a646259e2c5e6d3207b3b3a9b4f3356a819" + }, + { + "rel": "item", + "href": "./BB35_10000_0103.json", + "type": "application/json", + "file:checksum": "1220c58d2e31a554f2ffe534d715adf55b9afeca40dee375cbd1f6f90787fe3b6855" + }, + { + "rel": "item", + "href": "./BB35_10000_0104.json", + "type": "application/json", + "file:checksum": "122064569e9c3da8ac025dfc05d512bd61b24b85fd3b5c81c3ca37e3bca54fe53c5c" + }, + { + "rel": "item", + "href": "./BB35_10000_0105.json", + "type": "application/json", + "file:checksum": "12208c9c530ff80e38416fc82e6fb394acbfdba9d7d05e673e3aa93b0ace07a9ec1e" + }, + { + "rel": "item", + "href": "./BB35_10000_0201.json", + "type": "application/json", + "file:checksum": "122046ca15b313a6bed172d125c111125354f226040c93cb8d6ebff91af9c1fb7627" + }, + { + "rel": "item", + "href": "./BB35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220289d4402b424c9b7d8be715dd90e06bcaa935e7c7d13b81d21fdb76eb19b6ed6" + }, + { + "rel": "item", + "href": "./BB35_10000_0203.json", + "type": "application/json", + "file:checksum": "1220d51d5be1f0daf93cc7f2ed35206ec9add9c0229aaa944398b00e4b457c8a0d97" + }, + { + "rel": "item", + "href": "./BB35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220788515118c1e69947b275459478f2e30b1b81b94ef2d20ff7856059eb367b848" + }, + { + "rel": "item", + "href": "./BB35_10000_0205.json", + "type": "application/json", + "file:checksum": "12205369344d961c26f1a83fa464b3ccce8970d839290c4d80bd8a0ad611431a083f" + }, + { + "rel": "item", + "href": "./BB35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220fd5483fc0a2249a2d8c69f586571f1db1ace2747ae723719661f88e1fcbcf649" + }, + { + "rel": "item", + "href": "./BB35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220a29ae364ee1bfa027ba51bebb5dcf624ee275f231e7da9eb0d4d6b2b55dc07da" + }, + { + "rel": "item", + "href": "./BB35_10000_0303.json", + "type": "application/json", + "file:checksum": "122006c897ec0301f689dbd9e5041e6644d2e98b1d835de5c4d5942caa8276f3dde7" + }, + { + "rel": "item", + "href": "./BB35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220b51b2fe7b2b0bd54de3c320ec996a7bed47d38784ea1f641516dd8b52ee61a86" + }, + { + "rel": "item", + "href": "./BB35_10000_0305.json", + "type": "application/json", + "file:checksum": "12200f1fe0b6197491f206cdb8b5904349212105d85aadb811847bfc970d65e63ec7" + }, + { + "rel": "item", + "href": "./BB35_10000_0401.json", + "type": "application/json", + "file:checksum": "12204d9cf3794ec01fca87e53dd31f13763680e77dfb76c8f022797c27b084723a3e" + }, + { + "rel": "item", + "href": "./BB35_10000_0402.json", + "type": "application/json", + "file:checksum": "122087c7829a19b326c46a644b945362f65bd119ccf6f02f753dcf49cd1b8c0c1699" + }, + { + "rel": "item", + "href": "./BB35_10000_0403.json", + "type": "application/json", + "file:checksum": "122070e583b9bcd608e8d34e0e5674da4a30f0559c63936f38c8a65697ce75560502" + }, + { + "rel": "item", + "href": "./BB35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220b35c409d0489aa0ba79b04159bdaffa0f4a9274b26c409e19501b3e24c930498" + }, + { + "rel": "item", + "href": "./BB35_10000_0405.json", + "type": "application/json", + "file:checksum": "12203fcfd1dc5845d479739d3d7b2d4ba8a2cd7dcc83f07756a93d8e5973e278e4af" + }, + { + "rel": "item", + "href": "./BB35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220cb2270fba34a55f61538031c4f98f99ef51243c429f25e36762eb2a0c9b33454" + }, + { + "rel": "item", + "href": "./BB35_10000_0502.json", + "type": "application/json", + "file:checksum": "122048c380df21f22a290b22416c0a4c7385546bbfeef4a6d469d1ab26e7cb03f280" + }, + { + "rel": "item", + "href": "./BB35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d0440a9a35128f9ef31c101e2d6694132366f92e55063d3db4aeaf612d93e3d8" + }, + { + "rel": "item", + "href": "./BB35_10000_0504.json", + "type": "application/json", + "file:checksum": "12207f53e7903dc9787d9a89c3dad2050380eb438d39a82051dbfee2d41e8c03f8de" + }, + { + "rel": "item", + "href": "./BB35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220255fd8c4c96e4f2ce51f3ca8b7c48d764364b2d0aa2929a1bb1e6167862833a0" + }, + { + "rel": "item", + "href": "./BB36_10000_0101.json", + "type": "application/json", + "file:checksum": "122006a82a0f376cdda66aa0f77100615fdcd2990bb5dfe5850caf1ad92d168f22da" + }, + { + "rel": "item", + "href": "./BB36_10000_0105.json", + "type": "application/json", + "file:checksum": "122068ca0047a61e81e48668e38f0ba67f9480c0f37f1c2ecd9f8a4f207ccd2f2dc9" + }, + { + "rel": "item", + "href": "./BB36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220e35b81b97d4cbda01a15241a0fdbb8f00da0c773f30ce51fa1dc218a6c006aa3" + }, + { + "rel": "item", + "href": "./BB36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220dd35a79aff6c90ed83e08b9a27e0e8d1c759b53cb4a8e53438f4fc379fcdc234" + }, + { + "rel": "item", + "href": "./BB36_10000_0203.json", + "type": "application/json", + "file:checksum": "1220779e63f07466147e0f22f31d74135b8a09f1fa0055b22e279658b6ea4f41be0a" + }, + { + "rel": "item", + "href": "./BB36_10000_0301.json", + "type": "application/json", + "file:checksum": "122091d7cc39200f67366d8f60052f6b4fd86cb780ba1585219e48bfafe6ad2cc065" + }, + { + "rel": "item", + "href": "./BB36_10000_0302.json", + "type": "application/json", + "file:checksum": "12208fbde404ce1e68a49a630c2dcdf24c292e186e51d671016deac79db3f1652736" + }, + { + "rel": "item", + "href": "./BB36_10000_0303.json", + "type": "application/json", + "file:checksum": "1220acaf132943b8f02ddfcc3ff209cef29300d2d4c5c9e7e0288592477d0c67106e" + }, + { + "rel": "item", + "href": "./BB36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220cf8fbb8bfe9d3a3dec782d83731adf9160d62503bdd73115031c5466556b0a01" + }, + { + "rel": "item", + "href": "./BB36_10000_0402.json", + "type": "application/json", + "file:checksum": "1220ad1f87aeabb05a98ead94db039845fbdfb385edb28bdb9c1799d8956d2db28fa" + }, + { + "rel": "item", + "href": "./BB36_10000_0501.json", + "type": "application/json", + "file:checksum": "1220a8448b41f25a49c117cfae2c3421b8b6bd874dfcc85b9a40f40d2c1ce7967ba2" + }, + { + "rel": "item", + "href": "./BB36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220422090894b717da15f7e73ea2217383a0c843a78bc930a9e4e1cf0413e6b505a" + }, + { + "rel": "item", + "href": "./BB37_10000_0101.json", + "type": "application/json", + "file:checksum": "12205c1be5ed0773654e8c71657b28d68f9d1a0f8cc7ad7a83ccee555a713488cc5b" + }, + { + "rel": "item", + "href": "./BC31_10000_0104.json", + "type": "application/json", + "file:checksum": "1220031123a2fa59c1764980a6197454f823a46f9a115989f9172fb936a6e25b224d" + }, + { + "rel": "item", + "href": "./BC31_10000_0105.json", + "type": "application/json", + "file:checksum": "122062ab8b4c7dfe171a5914396a2b001bca3c1198ba072e0e236be311bc4ce50bd8" + }, + { + "rel": "item", + "href": "./BC31_10000_0204.json", + "type": "application/json", + "file:checksum": "122014350e7287710de9b24cccb8f1acfcedefdc292442941f6435d8d740e38c559b" + }, + { + "rel": "item", + "href": "./BC31_10000_0205.json", + "type": "application/json", + "file:checksum": "12202165061008624f8122eb7842d51e52cb677f0f166c9aa8597033cb058faacde7" + }, + { + "rel": "item", + "href": "./BC31_10000_0304.json", + "type": "application/json", + "file:checksum": "122017417004388c67cebdedf60f294742fc2bd520b44574a33877fd7e595e4beec6" + }, + { + "rel": "item", + "href": "./BC31_10000_0305.json", + "type": "application/json", + "file:checksum": "12202d31a44256291cad7cecca37d3de20bed967408e0b3dbc2c3f0aa896ee8b5eb8" + }, + { + "rel": "item", + "href": "./BC31_10000_0405.json", + "type": "application/json", + "file:checksum": "122051fe21c3d6edd86cfe72355c187496dc845a1239ff5bec7cd780b0661476781c" + }, + { + "rel": "item", + "href": "./BC31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220817ee98c58638b7f8737876f585c3a1afdb4d9ef031207123e5ee4ad4a4a8c0c" + }, + { + "rel": "item", + "href": "./BC32_10000_0101.json", + "type": "application/json", + "file:checksum": "122028f3f95df8e9f384e6eef0d2ba1480a91b72f7f155c71ec8937ed06f73ce2742" + }, + { + "rel": "item", + "href": "./BC32_10000_0102.json", + "type": "application/json", + "file:checksum": "122079cd1667c1f6e3547075775b2c7b496c428a2a95c7de1d80e7092c35bb9129b5" + }, + { + "rel": "item", + "href": "./BC32_10000_0103.json", + "type": "application/json", + "file:checksum": "1220f8b4434e96407556d5a0d897a7b3643e6b419b56910bc8589a778e6fc00bfc55" + }, + { + "rel": "item", + "href": "./BC32_10000_0104.json", + "type": "application/json", + "file:checksum": "122082e906b14105ac46be34d7b2c3e91f73edcfb546f1a89d689a65cecb6fc0713d" + }, + { + "rel": "item", + "href": "./BC32_10000_0105.json", + "type": "application/json", + "file:checksum": "1220c7dc59565bcdc2186f51bdfdba9ae627682f0bb7e82409a3db5ebac64293b7b9" + }, + { + "rel": "item", + "href": "./BC32_10000_0201.json", + "type": "application/json", + "file:checksum": "122095d468b6d32015ca3bfe41735a45bcd1f4ed5435a73899ecb8619b66cedf1c67" + }, + { + "rel": "item", + "href": "./BC32_10000_0202.json", + "type": "application/json", + "file:checksum": "122032186a8be510fd90e2ec94cb25b5fa9d371a257cc98ac2ad4a3d71e17f0592f7" + }, + { + "rel": "item", + "href": "./BC32_10000_0203.json", + "type": "application/json", + "file:checksum": "12200ad676884abd0987d27f27d617ef768ef2bebe365092693dc0abd8e8cb0d0e0b" + }, + { + "rel": "item", + "href": "./BC32_10000_0204.json", + "type": "application/json", + "file:checksum": "1220a999c172225783c48019ad7586f01a32151e95ca2437cf28276c75efa60f58d5" + }, + { + "rel": "item", + "href": "./BC32_10000_0205.json", + "type": "application/json", + "file:checksum": "122056702ac8252df667e0e83874d2b05964ece46c386f3861715d47ca0bf2c768f7" + }, + { + "rel": "item", + "href": "./BC32_10000_0301.json", + "type": "application/json", + "file:checksum": "122023be0b0c4a003681f829e565402ec05880914f8a4780527aa626934e75c4ed36" + }, + { + "rel": "item", + "href": "./BC32_10000_0302.json", + "type": "application/json", + "file:checksum": "1220844bdda9b811dca854325cee88d67563275ab763291a800f2af6cad6ccd808da" + }, + { + "rel": "item", + "href": "./BC32_10000_0303.json", + "type": "application/json", + "file:checksum": "1220ad5fd07f6033ac949b9de23b9888a8e398fb564f34618fcf80b3cb31c542e066" + }, + { + "rel": "item", + "href": "./BC32_10000_0304.json", + "type": "application/json", + "file:checksum": "12208b55e83dbd6e51cef105ec93bb345a06dc5fe2c3d8b596fe5970ad0bf04d9156" + }, + { + "rel": "item", + "href": "./BC32_10000_0305.json", + "type": "application/json", + "file:checksum": "1220a2c7906f35e32326334db87b6a60193b0fffedb5aba8aae85b1fffa03f7063b7" + }, + { + "rel": "item", + "href": "./BC32_10000_0401.json", + "type": "application/json", + "file:checksum": "122008025ad915371179ccd2913ae52399b50c7630925e74feb57ab064a5a64d1b15" + }, + { + "rel": "item", + "href": "./BC32_10000_0402.json", + "type": "application/json", + "file:checksum": "12208bcc795543e2a91519f8294796efda042a6276fc95a01b3960b43371fad93df2" + }, + { + "rel": "item", + "href": "./BC32_10000_0403.json", + "type": "application/json", + "file:checksum": "1220d038017586bdf3e68d8f1abce9e061de3c48f670694d0acd1a7e88bc5067bb5b" + }, + { + "rel": "item", + "href": "./BC32_10000_0404.json", + "type": "application/json", + "file:checksum": "1220c2ad9105c2d73fcc00381ac58f33c10565458e9d22ba88c8a75be3320479b004" + }, + { + "rel": "item", + "href": "./BC32_10000_0405.json", + "type": "application/json", + "file:checksum": "1220685e28a7ec204bd37121d1a26e840fb4f45f06b4277e1c673134cd4da1e08c3c" + }, + { + "rel": "item", + "href": "./BC32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220911ffc25b40c2d95aac949b3212ffde7c339795ba6bd9fadff5d3157103bc9ae" + }, + { + "rel": "item", + "href": "./BC32_10000_0502.json", + "type": "application/json", + "file:checksum": "12208c87de837fd12efbfcbb6ccb38a6372d8803924d74685ccc8bd9b05135c83470" + }, + { + "rel": "item", + "href": "./BC32_10000_0503.json", + "type": "application/json", + "file:checksum": "122095a0fb3e341156881ab2a028e2206e2c6b569eaa07a3b775079d83abf76dd536" + }, + { + "rel": "item", + "href": "./BC32_10000_0504.json", + "type": "application/json", + "file:checksum": "122047288a6615da88e01f207443ea8f11be8ba92762320a97ae5c69f2feabedccac" + }, + { + "rel": "item", + "href": "./BC32_10000_0505.json", + "type": "application/json", + "file:checksum": "1220b377d0b0759fa4592600e9d9ca57356d140852ece79983c0649ed06dde054d66" + }, + { + "rel": "item", + "href": "./BC33_10000_0101.json", + "type": "application/json", + "file:checksum": "122048f1fd1a0f95a77994288473bbbe399ec10ed8f74c733abf23961f416cd83eb4" + }, + { + "rel": "item", + "href": "./BC33_10000_0102.json", + "type": "application/json", + "file:checksum": "12204e893211cea14b4f982c5098847e4acab8a1866ad664a6064b6c7453a5679ed3" + }, + { + "rel": "item", + "href": "./BC33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220dd51f2fea88e2a9d5bbc112195e6da9131bd1e2fddb4dbffb1f006d83072518a" + }, + { + "rel": "item", + "href": "./BC33_10000_0104.json", + "type": "application/json", + "file:checksum": "12200e5da384cbf65243205b9d9c6292a31bc26d72a6dbe0d8e32ba2209105b813ff" + }, + { + "rel": "item", + "href": "./BC33_10000_0105.json", + "type": "application/json", + "file:checksum": "12205ff4aec339694c6b4328ea282e62345c7aac8433463646b40a29c9b8c6b3ae1e" + }, + { + "rel": "item", + "href": "./BC33_10000_0201.json", + "type": "application/json", + "file:checksum": "12205dfa046fbead611a36c1c49db7792bb5cf2779c1c51b020c77c2018c6c455c39" + }, + { + "rel": "item", + "href": "./BC33_10000_0202.json", + "type": "application/json", + "file:checksum": "1220953443049040d20254f69fab9f1e0198817099fe9cb1839823de02a814507af9" + }, + { + "rel": "item", + "href": "./BC33_10000_0203.json", + "type": "application/json", + "file:checksum": "12203b178057014845d00f55751d4a5c59a3a2339468c53585f32a0b21f54a2568af" + }, + { + "rel": "item", + "href": "./BC33_10000_0204.json", + "type": "application/json", + "file:checksum": "12202a30b6f9c3d8783fac6a6f42529eb54c3e14b3185a87ed4e03712827e498a31f" + }, + { + "rel": "item", + "href": "./BC33_10000_0205.json", + "type": "application/json", + "file:checksum": "12203efb570588fa5352cf3d0c16dbd4336c2daeaf151b275dfabf4f0d4e89a62839" + }, + { + "rel": "item", + "href": "./BC33_10000_0301.json", + "type": "application/json", + "file:checksum": "1220a2e27f12bd338931fed66d65e39689bac30f59c2a88789e5cf873a0f83e2690e" + }, + { + "rel": "item", + "href": "./BC33_10000_0302.json", + "type": "application/json", + "file:checksum": "1220fdad2fe3d39ab0a928d8656a022da5568a9d2371527dd8ed28130be8956098e9" + }, + { + "rel": "item", + "href": "./BC33_10000_0303.json", + "type": "application/json", + "file:checksum": "122091ca12444439b8b9f001df55c2636c43d9b82c450ca5a50744f91e959261a04e" + }, + { + "rel": "item", + "href": "./BC33_10000_0304.json", + "type": "application/json", + "file:checksum": "122098a4b63eb036a407bf6a77a3efa00b66ab10f20f63c7389d236f9ae9b57bc3e4" + }, + { + "rel": "item", + "href": "./BC33_10000_0305.json", + "type": "application/json", + "file:checksum": "1220a15e7b0d2e2f6415d9e83bef20066f47b5921383207e530c65d050e532dd8053" + }, + { + "rel": "item", + "href": "./BC33_10000_0401.json", + "type": "application/json", + "file:checksum": "12202d1a9e09526165c8ba169068f7e823f8ff5052f4e4c705b070c2305a78b194fc" + }, + { + "rel": "item", + "href": "./BC33_10000_0402.json", + "type": "application/json", + "file:checksum": "122041e52af797d087e291b75d369deaceb25093fd9b28c951d4c07bb44216818ba5" + }, + { + "rel": "item", + "href": "./BC33_10000_0403.json", + "type": "application/json", + "file:checksum": "12200b6b7c1c66fc74cceb095a153d445474334e0e8d7cef0c7d67b5c04b7cbd5e9a" + }, + { + "rel": "item", + "href": "./BC33_10000_0404.json", + "type": "application/json", + "file:checksum": "1220b8f5fd2f1e24cabb0d88ffbf2612ab7128db807b8a22f6c90eec84887320caa5" + }, + { + "rel": "item", + "href": "./BC33_10000_0405.json", + "type": "application/json", + "file:checksum": "1220ef492e7c184acd89f00ee47e66ecea5e0191d032f8dbcb7e5c4f265c2d6e9f40" + }, + { + "rel": "item", + "href": "./BC33_10000_0501.json", + "type": "application/json", + "file:checksum": "1220e5155441460b0bcc3d82f4cd4bb0c7833f191df88e2c92f8f01b57ad71dbe587" + }, + { + "rel": "item", + "href": "./BC33_10000_0502.json", + "type": "application/json", + "file:checksum": "1220fabf60f350373913814894248ed6a5b4ac6445299748408e6c9369451dbe6cac" + }, + { + "rel": "item", + "href": "./BC33_10000_0503.json", + "type": "application/json", + "file:checksum": "12209206cb1450aa009b5b47021d1fc33200d3c226663006c3d258c07fa6e1391a28" + }, + { + "rel": "item", + "href": "./BC33_10000_0504.json", + "type": "application/json", + "file:checksum": "122066cee475ed492957cb955f6ff01806de812f6bdfefe17bac4f2e0870b94239bb" + }, + { + "rel": "item", + "href": "./BC33_10000_0505.json", + "type": "application/json", + "file:checksum": "1220783688803e7f46cb8bd0fc98674dca34175d453fb16817a315c5b786c4d78130" + }, + { + "rel": "item", + "href": "./BC34_10000_0101.json", + "type": "application/json", + "file:checksum": "122022d96feca9fcc4c7c5c14aa2be01eb57551545414b5ab0d0a79ada2ff1496062" + }, + { + "rel": "item", + "href": "./BC34_10000_0102.json", + "type": "application/json", + "file:checksum": "1220aa113a5e49f678a08935a50bcbd782a83b23d2da977ebdcf0e47ef35ffa8f0f9" + }, + { + "rel": "item", + "href": "./BC34_10000_0103.json", + "type": "application/json", + "file:checksum": "122020fcc36a39a72ae5012ff3f2d0612c9f3be7ae7da96d95e85766c9cd90f200e9" + }, + { + "rel": "item", + "href": "./BC34_10000_0104.json", + "type": "application/json", + "file:checksum": "122005f8c851a3f56d4bebcac93b3c08fc054883c7b216153dfe85afbf7e2f4aa42d" + }, + { + "rel": "item", + "href": "./BC34_10000_0105.json", + "type": "application/json", + "file:checksum": "12206fa9faa926d7117aa6c2f6bb97674a112516759b0dac2d67d29733f4b8738eb6" + }, + { + "rel": "item", + "href": "./BC34_10000_0201.json", + "type": "application/json", + "file:checksum": "12201721e67bfba0311693a6b53afd37d1e2791c4e78b15b3e42c405ba3d1f596a95" + }, + { + "rel": "item", + "href": "./BC34_10000_0202.json", + "type": "application/json", + "file:checksum": "122020a37cdfe021e0a431d847309abee44dd52abdc19b00ba17ba9a6118d28880d9" + }, + { + "rel": "item", + "href": "./BC34_10000_0203.json", + "type": "application/json", + "file:checksum": "12206c35022d64f10ef66891815f51d414756ff08d66db33977f56ac4647e9532849" + }, + { + "rel": "item", + "href": "./BC34_10000_0205.json", + "type": "application/json", + "file:checksum": "12208bf660d5a9961ade3f702232afec1138a3ed2568e187e5d04c144dadd630ca31" + }, + { + "rel": "item", + "href": "./BC34_10000_0301.json", + "type": "application/json", + "file:checksum": "1220603c51678c133348c84521d988d79cc636fb40355aebca94c10e73e9a3d3b86d" + }, + { + "rel": "item", + "href": "./BC34_10000_0302.json", + "type": "application/json", + "file:checksum": "12207339460458acc9800f852e52d39765bbed78eb390e8382b68d9c3baff3e68730" + }, + { + "rel": "item", + "href": "./BC34_10000_0303.json", + "type": "application/json", + "file:checksum": "12203ebbcec4a62435db6f605ae0af8052e872a9e35cb82487bd1466988622afd55f" + }, + { + "rel": "item", + "href": "./BC34_10000_0304.json", + "type": "application/json", + "file:checksum": "12205bc48625ff10a1bf84c5a99c695675a68e40a996893328fb3527bb2562545e77" + }, + { + "rel": "item", + "href": "./BC34_10000_0401.json", + "type": "application/json", + "file:checksum": "1220894b3c67a157f05097db4e717103752c640430588572f20fb3aff2d665669231" + }, + { + "rel": "item", + "href": "./BC34_10000_0402.json", + "type": "application/json", + "file:checksum": "122043f1a1a299405f12acbfcd4fc6d54d9d487f73eed523b9ae7f1f563e9c0db166" + }, + { + "rel": "item", + "href": "./BC34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220381d84286562d716b792a29e27dad789134cfb3e3bff0daaa9e466e7900255a0" + }, + { + "rel": "item", + "href": "./BC34_10000_0404.json", + "type": "application/json", + "file:checksum": "12205afbda903b2f7a234b903e611f81f0932a4474604f28c0180a8da491b951c3fe" + }, + { + "rel": "item", + "href": "./BC34_10000_0501.json", + "type": "application/json", + "file:checksum": "1220e3f3defa11c38f62aafd303fde9000fde18934566bdf9bb80a8e24ff8ce2b07b" + }, + { + "rel": "item", + "href": "./BC34_10000_0502.json", + "type": "application/json", + "file:checksum": "1220cf199677faa88c077af7d6a0e3d874dbfb382a958d9d810de09391cf9b06bb5d" + }, + { + "rel": "item", + "href": "./BC34_10000_0503.json", + "type": "application/json", + "file:checksum": "1220c022fd43ba5fb11cd02f8d07f1e78f4be4427e426da1886afc8b70f064ce7eca" + }, + { + "rel": "item", + "href": "./BC34_10000_0504.json", + "type": "application/json", + "file:checksum": "122074ddf74b599c01ba9b5b1adecdfc074549fd25a32cd010c86c1b7df556a2be80" + }, + { + "rel": "item", + "href": "./BC34_10000_0505.json", + "type": "application/json", + "file:checksum": "12201e58dcee01d43ed87bf2bac674e0a6852bd4ab5323120a2caf1571c404ad2968" + }, + { + "rel": "item", + "href": "./BC35_10000_0101.json", + "type": "application/json", + "file:checksum": "12201752ecfc9bc75afced82e8e35afbcb9341ad6af50d6ba0d5855c785a2a178113" + }, + { + "rel": "item", + "href": "./BC35_10000_0102.json", + "type": "application/json", + "file:checksum": "1220a77a2d331a904160b1154f59024e2f123bc11a2a8b9d689f6a71c8fc843075ca" + }, + { + "rel": "item", + "href": "./BC35_10000_0103.json", + "type": "application/json", + "file:checksum": "1220841fe647ccd85263d265efd93c91da4b42154edc6eb253d182ce7225b0ccb7f4" + }, + { + "rel": "item", + "href": "./BC35_10000_0104.json", + "type": "application/json", + "file:checksum": "122045aef06c9b1b9ccc512caca8bd8390a4807a73904bd68001aa322887f80023b1" + }, + { + "rel": "item", + "href": "./BC35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220cf435c03e509c235715052a88c276007cd645b9b51990fc7d84d1f7f7a0a6a92" + }, + { + "rel": "item", + "href": "./BC35_10000_0201.json", + "type": "application/json", + "file:checksum": "12207e3651c4606b69a16d636951eb24d17beb80eac60e0288aa31a5776fb879473e" + }, + { + "rel": "item", + "href": "./BC35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220332896d66c6106cf8ad826f64d36b5f13b3eb5d328ea9caa70458fbe9c7fbedf" + }, + { + "rel": "item", + "href": "./BC35_10000_0203.json", + "type": "application/json", + "file:checksum": "1220adc67a6c44e35d058f115528b3d03b7bda9daf64db424a89c121bb5740e14e28" + }, + { + "rel": "item", + "href": "./BC35_10000_0204.json", + "type": "application/json", + "file:checksum": "12204a0bce910f7ba0f6ceabba3c5c0bde24408e54ff35c61e16029f54258f55121a" + }, + { + "rel": "item", + "href": "./BC35_10000_0205.json", + "type": "application/json", + "file:checksum": "12204d16e0526a3dc9213ff74728c15a276886ca1053c8330ccade5a25a73c2db85b" + }, + { + "rel": "item", + "href": "./BC35_10000_0301.json", + "type": "application/json", + "file:checksum": "12209c038c9470c79c8a57c6e9ae4cd26eee433febace04e51d49d59db2d19d5dfc8" + }, + { + "rel": "item", + "href": "./BC35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220da5c8231fd8790cc8278e508a967b055c1c7849ef227d69ccc55b442d7326bda" + }, + { + "rel": "item", + "href": "./BC35_10000_0303.json", + "type": "application/json", + "file:checksum": "12208623885f319d4e34179dd744045ef7f580d00891a005604a0bd037b1dded6071" + }, + { + "rel": "item", + "href": "./BC35_10000_0304.json", + "type": "application/json", + "file:checksum": "122093afaacd6d4d270f1174c0f81cc9473495af410b38aaf960c50e46298c14c736" + }, + { + "rel": "item", + "href": "./BC35_10000_0305.json", + "type": "application/json", + "file:checksum": "1220bb3469a2ee70b903e909a89fd46c35b48adfba5fbad2cb7b157f11d7a29d327e" + }, + { + "rel": "item", + "href": "./BC35_10000_0401.json", + "type": "application/json", + "file:checksum": "1220777833ab38759841f63de309ba72bc4d1c294148b40c26613c04646073539ae9" + }, + { + "rel": "item", + "href": "./BC35_10000_0402.json", + "type": "application/json", + "file:checksum": "12208c132de6d4b4b3e62a9ee921bf4083c694721b1449e3777836dd71bee9700baa" + }, + { + "rel": "item", + "href": "./BC35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220af7a3dc7c14597afe00bc86f67052e33346789ab2c262e4f35190c71126ad93d" + }, + { + "rel": "item", + "href": "./BC35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220b25c48e2bdf74c02dc4e35a46ac73b407b1effb92cb51782b3e1516cc74db888" + }, + { + "rel": "item", + "href": "./BC35_10000_0405.json", + "type": "application/json", + "file:checksum": "1220a414713ddba9a509e814fb7aea5ff4b9e6c35481383b34635882e28c54b49c82" + }, + { + "rel": "item", + "href": "./BC35_10000_0501.json", + "type": "application/json", + "file:checksum": "12205bf9731721adc7cee79d8881aea211e1b6063c7c3a0b5e6f0e0e544640d61351" + }, + { + "rel": "item", + "href": "./BC35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220db7927caa3ab5de44af6f58fccf1d09351a720d4b795af8a943ad788cf5e34cb" + }, + { + "rel": "item", + "href": "./BC35_10000_0503.json", + "type": "application/json", + "file:checksum": "12206ed6d6a86620c22d32ceae3d83549b86b022b3548c2c7c9a2da6ffc2758d552c" + }, + { + "rel": "item", + "href": "./BC35_10000_0504.json", + "type": "application/json", + "file:checksum": "1220e1e2bfa9843052cb81686ec3bcc803982b6042cf66816e23566f840b7795b154" + }, + { + "rel": "item", + "href": "./BC35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220abb07c9cb212e77c8c5ad6097c1b0dce2fd8e2ad83b116cbdf7f71010492b1cc" + }, + { + "rel": "item", + "href": "./BC36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220b185dfd96b38c987bff9f0442a029d0d4da9a98d21402c9cb23a794d683caa65" + }, + { + "rel": "item", + "href": "./BC36_10000_0102.json", + "type": "application/json", + "file:checksum": "12203e554376672157dc2e244511d1416fb34ef18abeb8411ebc0d76a273a2f7f5cd" + }, + { + "rel": "item", + "href": "./BC36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220aed821882172fedaee12167184c0f230ce275a5c5a5d3e7c54e76e14ce4a870d" + }, + { + "rel": "item", + "href": "./BC36_10000_0202.json", + "type": "application/json", + "file:checksum": "12202ca39eeec91f78f0cd7881af0529dc22c77d9fa0666251f565e6d35246923ad1" + }, + { + "rel": "item", + "href": "./BC36_10000_0301.json", + "type": "application/json", + "file:checksum": "122030f72556314f596f79e9f893c14c19d1a2d67c6a32361d6de56b5ba3e6e25875" + }, + { + "rel": "item", + "href": "./BC36_10000_0302.json", + "type": "application/json", + "file:checksum": "12203d4e19ce09b50e7898d7314cb38d95f52c433f8f9892cd38d6ca0b14a66df1c6" + }, + { + "rel": "item", + "href": "./BC36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220fba601afc08bdaf8088e596a5e71a3ca4bf8b68fbf00053e01ec541f7061c3de" + }, + { + "rel": "item", + "href": "./BD31_10000_0405.json", + "type": "application/json", + "file:checksum": "1220ccfe9030771812b73cde1e0b9c71140d4183d42c4d3510aaa9903d3e67da4f8b" + }, + { + "rel": "item", + "href": "./BD31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e298810b48f17895ba6e746ec2201bf345af22e55079cefd05d558cabbb1135b" + }, + { + "rel": "item", + "href": "./BD32_10000_0101.json", + "type": "application/json", + "file:checksum": "1220a74cdd1e548236fb7ededbadca864e82d8106b464bca4b84498dce83bcf4ea80" + }, + { + "rel": "item", + "href": "./BD32_10000_0102.json", + "type": "application/json", + "file:checksum": "122046b069d9922ca2b41e154331f54a1ade78a26a9951108df4a7b39d372bfa7a0e" + }, + { + "rel": "item", + "href": "./BD32_10000_0103.json", + "type": "application/json", + "file:checksum": "1220e93370cd479c2c721c79bf7d3bb9be5461985f3649fb07f167a6b26059d9b7e1" + }, + { + "rel": "item", + "href": "./BD32_10000_0104.json", + "type": "application/json", + "file:checksum": "122082c69c7fab963f53a34c6835aa34e14ef93ae0557836644eb9b06b5e37449449" + }, + { + "rel": "item", + "href": "./BD32_10000_0105.json", + "type": "application/json", + "file:checksum": "12205921e61c1af11b8d0df3889468b9d9d376ad7966961ad66894755f1af666c61d" + }, + { + "rel": "item", + "href": "./BD32_10000_0201.json", + "type": "application/json", + "file:checksum": "1220cd2e2de3bb223cee5b6ecb62517b007802c9ccdf2658b6cbcbcc2b368de6fa9a" + }, + { + "rel": "item", + "href": "./BD32_10000_0202.json", + "type": "application/json", + "file:checksum": "12209237b055aad440b09a0dd3e43b9b10c7d6b0b2d3d6e8792e827d904afc3d8fdd" + }, + { + "rel": "item", + "href": "./BD32_10000_0203.json", + "type": "application/json", + "file:checksum": "122066fcd3504b6114ec366981c9a1e1a860a5330a6a491a8d635c7dc7322ad55e4f" + }, + { + "rel": "item", + "href": "./BD32_10000_0204.json", + "type": "application/json", + "file:checksum": "122077de6fdfa4a402475491f36fd00e865455949c9c95b1ff041f7792d1785d19f1" + }, + { + "rel": "item", + "href": "./BD32_10000_0205.json", + "type": "application/json", + "file:checksum": "1220537941e02fa36d5ee9ff2e4d92d3c0c12fd3ae4d8f61e1b8d494d10f41955f72" + }, + { + "rel": "item", + "href": "./BD32_10000_0301.json", + "type": "application/json", + "file:checksum": "12203de234ec985c14e7f0d081c0d5ea1bd5cfd8c28c6e42c95734c7491c8208c6c8" + }, + { + "rel": "item", + "href": "./BD32_10000_0302.json", + "type": "application/json", + "file:checksum": "1220035abfcd841f685d6b97b25c153fcef2472efd02ad6d79d0602384dfb333850a" + }, + { + "rel": "item", + "href": "./BD32_10000_0303.json", + "type": "application/json", + "file:checksum": "1220c818e54d032bc0f4c9c5b05d06d0987cd05837e815ffb2a90d5d99186023aeb0" + }, + { + "rel": "item", + "href": "./BD32_10000_0304.json", + "type": "application/json", + "file:checksum": "12204b0a39474486f37cbb3acfd4c5cb4f7532a96d501c97bceaa43e22135a70b74e" + }, + { + "rel": "item", + "href": "./BD32_10000_0305.json", + "type": "application/json", + "file:checksum": "12202f772809eb79f9a790057ff1e2d1f3823e6bbc0e0de167fa8237254b7cd822bf" + }, + { + "rel": "item", + "href": "./BD32_10000_0401.json", + "type": "application/json", + "file:checksum": "1220099ed85911afbdc9789e9647d5ce60fdbdf95ceb8db3c5222e6ebd4da6801cd2" + }, + { + "rel": "item", + "href": "./BD32_10000_0402.json", + "type": "application/json", + "file:checksum": "12207be11e6141cad9cafbd6c6d22e34ce3db6513162f1a1c2ed10007b933d606d4f" + }, + { + "rel": "item", + "href": "./BD32_10000_0403.json", + "type": "application/json", + "file:checksum": "12206cb2eb8a2dc6a7f69e59414fb5c99700a25d0c5a5e24e8ccf5a329fdf4c86904" + }, + { + "rel": "item", + "href": "./BD32_10000_0404.json", + "type": "application/json", + "file:checksum": "12205df8e8b4eef177a8cdd8ae356b15b84510ef5655a8b487b7dc19c539bc7f80d0" + }, + { + "rel": "item", + "href": "./BD32_10000_0405.json", + "type": "application/json", + "file:checksum": "1220a33acb2c5f68c54a4a7fba218103899b47f425d08debf2b362806cc95d868c43" + }, + { + "rel": "item", + "href": "./BD32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220acccee2e4f012a503d9ef54d18b38b3e3f2db9ed634149a2ad5de58a8bc1032c" + }, + { + "rel": "item", + "href": "./BD32_10000_0502.json", + "type": "application/json", + "file:checksum": "1220770e89521afaf4517ce9ef6cdedad94cc33ca28047f3c80c14fb5a7824da0db5" + }, + { + "rel": "item", + "href": "./BD32_10000_0503.json", + "type": "application/json", + "file:checksum": "122055551a55082ce321b04bbde601c6691c72db67e425fb98615f14280d80427f8f" + }, + { + "rel": "item", + "href": "./BD32_10000_0504.json", + "type": "application/json", + "file:checksum": "1220fbef1818ca1f9c9dd3acbbc34ff2ac3d73babc9f438d878752acf56248c169d1" + }, + { + "rel": "item", + "href": "./BD32_10000_0505.json", + "type": "application/json", + "file:checksum": "12206bee426166805315aae6b4466f6a69bff753a285964a2d014e1cb62210e180f7" + }, + { + "rel": "item", + "href": "./BD33_10000_0101.json", + "type": "application/json", + "file:checksum": "122069645ba009f75f9c4d2913b9ba47d85f18e6b1a9c9f655fda6afa2fd6c234c59" + }, + { + "rel": "item", + "href": "./BD33_10000_0102.json", + "type": "application/json", + "file:checksum": "1220d7fad89c2dea712d74a542dc245e73345f2732debb3bd9054b647e2c060722f8" + }, + { + "rel": "item", + "href": "./BD33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220f2ac6548b3a57a8ef4b093fd75507a7c6bdbd22c8c9726528c028189275587e3" + }, + { + "rel": "item", + "href": "./BD33_10000_0104.json", + "type": "application/json", + "file:checksum": "122052cde8d4990bf66b48062c6053c17f747d4c1da407f8edf7ee265b4493015aef" + }, + { + "rel": "item", + "href": "./BD33_10000_0105.json", + "type": "application/json", + "file:checksum": "1220e067ef9b691bd85a80b103d391dabebab518f3c4bff398e3c98b2bec85caed30" + }, + { + "rel": "item", + "href": "./BD33_10000_0201.json", + "type": "application/json", + "file:checksum": "1220933cceb441aed90bad7d5e2564de2c488ed7a724943954621c8b1b0144479ce1" + }, + { + "rel": "item", + "href": "./BD33_10000_0202.json", + "type": "application/json", + "file:checksum": "1220036222ee430b86ae7f8b38208ef1000c16ab906142ee1dd523e29e81a6454189" + }, + { + "rel": "item", + "href": "./BD33_10000_0203.json", + "type": "application/json", + "file:checksum": "122065e3ec721e8d0daa3e1b26597eddcc0953f1be219086f2ace1eef29b91786b25" + }, + { + "rel": "item", + "href": "./BD33_10000_0204.json", + "type": "application/json", + "file:checksum": "1220cc0183478fcb4d48f872cf42374f6fbaa989e996d081da8da7c55b9b716dc68d" + }, + { + "rel": "item", + "href": "./BD33_10000_0205.json", + "type": "application/json", + "file:checksum": "122037cdd9e911b3b9dc58c7223d4b27c483bd6df68122c7db509fcc9ed9bfb63177" + }, + { + "rel": "item", + "href": "./BD33_10000_0301.json", + "type": "application/json", + "file:checksum": "1220e429f4e5a06e4c21baa882d4edf1f02d80375f8d70cc75a5903887d32c560a26" + }, + { + "rel": "item", + "href": "./BD33_10000_0302.json", + "type": "application/json", + "file:checksum": "12207ed94dda08bacdd6d76c13f90157c143ce8442b8f55a5723261ce943d25fb5c9" + }, + { + "rel": "item", + "href": "./BD33_10000_0303.json", + "type": "application/json", + "file:checksum": "12202971ad61247ac4cb42007b28a783bc2f81d7aea3a1e260b7798c60ba5d1f6012" + }, + { + "rel": "item", + "href": "./BD33_10000_0304.json", + "type": "application/json", + "file:checksum": "1220de558776901d908dee6c0b6721cb1688e0926dc2e573c52fae674fedb3d534b0" + }, + { + "rel": "item", + "href": "./BD33_10000_0305.json", + "type": "application/json", + "file:checksum": "122025c49eccf77a1bb33ade02bea36a702744bf5df26e3b962eb065dff595f66eae" + }, + { + "rel": "item", + "href": "./BD33_10000_0401.json", + "type": "application/json", + "file:checksum": "1220207661f98a138923e789719749ea8e1ec5d18e28b3ca3f2f2f9a9f5158942ebd" + }, + { + "rel": "item", + "href": "./BD33_10000_0402.json", + "type": "application/json", + "file:checksum": "1220456285d47ba45206132d02ca2e5c525aad6ae2aa09f2afd1ffddfc52d5c572be" + }, + { + "rel": "item", + "href": "./BD33_10000_0403.json", + "type": "application/json", + "file:checksum": "122062d13eebd79d2b0b6f86ce792d594c1e2567a60bd8d9c13b3d6086e66f8f728f" + }, + { + "rel": "item", + "href": "./BD33_10000_0404.json", + "type": "application/json", + "file:checksum": "12203368543d0dd06d85eb0510941f1d8364325600a756461fd3e3543b06010d53be" + }, + { + "rel": "item", + "href": "./BD33_10000_0405.json", + "type": "application/json", + "file:checksum": "12203ad15d72b7202556fe96f5701915a9a412a76fb356b7dc3960ef267856f7066f" + }, + { + "rel": "item", + "href": "./BD33_10000_0501.json", + "type": "application/json", + "file:checksum": "1220cf03e1183065c6e5db765a935452ddc8f4a2fea11e0503d8830f6836506ad1ba" + }, + { + "rel": "item", + "href": "./BD33_10000_0502.json", + "type": "application/json", + "file:checksum": "1220279559cf40715b04eb783303d08dcb0f3e5ede9e01e94df372e3dac90a8fe4cc" + }, + { + "rel": "item", + "href": "./BD33_10000_0503.json", + "type": "application/json", + "file:checksum": "122054b65318f2e0d84d673842bc46cdddc6462fa37fe79e2f7076ff12877812ca70" + }, + { + "rel": "item", + "href": "./BD33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220ea9e7efea336a19bd486611f010aa1b446bff0ee45d2127e02fb8c0014d9258b" + }, + { + "rel": "item", + "href": "./BD33_10000_0505.json", + "type": "application/json", + "file:checksum": "12200815803ee58d8b986cf12c0016c5b0a4e60337e6af3335155670028cad887526" + }, + { + "rel": "item", + "href": "./BD34_10000_0101.json", + "type": "application/json", + "file:checksum": "1220d112ae9741e73c1b568fead87f1fbb5d7c66a3b8d7c64f1030fea175a93fcf2f" + }, + { + "rel": "item", + "href": "./BD34_10000_0102.json", + "type": "application/json", + "file:checksum": "12202bf108bd09bd337a07004094464e8e2330d7d035ecbcdc97e27b97204b25c1c4" + }, + { + "rel": "item", + "href": "./BD34_10000_0103.json", + "type": "application/json", + "file:checksum": "122095d20c114df9cfa328035eb2566aa220013efe28504589f6bee02b2891d0bd03" + }, + { + "rel": "item", + "href": "./BD34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220cea3bbb9193ca34dae5ee72eb07ee0aac076cb9337874b1a48d8c478a262b96c" + }, + { + "rel": "item", + "href": "./BD34_10000_0105.json", + "type": "application/json", + "file:checksum": "12204c4233ad43a83e877a72e509ecee45e865bdfcd0b26dae734b9244a4c2ed28ff" + }, + { + "rel": "item", + "href": "./BD34_10000_0201.json", + "type": "application/json", + "file:checksum": "122067cf8b8bc2a573f684688df55ec4674f8ede3b77a2f591789a162458f055c4ad" + }, + { + "rel": "item", + "href": "./BD34_10000_0202.json", + "type": "application/json", + "file:checksum": "1220d5e08efc79a8b3656cb47d9249bb89a8cc4ffd87a74f66a16f55668f39f56479" + }, + { + "rel": "item", + "href": "./BD34_10000_0203.json", + "type": "application/json", + "file:checksum": "12208fd6e6157dedca2a01767ae35e861ce91f6e926e22dc23ac963e8240a5d0f005" + }, + { + "rel": "item", + "href": "./BD34_10000_0204.json", + "type": "application/json", + "file:checksum": "12204de60168f145b5dc493567049264a191fefc646dfdb2f1e2cdc7b4b3b2696700" + }, + { + "rel": "item", + "href": "./BD34_10000_0205.json", + "type": "application/json", + "file:checksum": "122084d3bfedb645f025f9f90f4afe50288d25118d554b8d8572dc07b665ff2cc7f5" + }, + { + "rel": "item", + "href": "./BD34_10000_0301.json", + "type": "application/json", + "file:checksum": "12201c788658d65151e6363136ccd46eb6ca3ed43d7e47a60e9e5e00480428c6385f" + }, + { + "rel": "item", + "href": "./BD34_10000_0302.json", + "type": "application/json", + "file:checksum": "1220e3f1e29f6ffc9937b1c91d23e5b68802d5c3b0e01fa9d8958df6d52df973115b" + }, + { + "rel": "item", + "href": "./BD34_10000_0303.json", + "type": "application/json", + "file:checksum": "122083eb784b8170df195dc0679ab6a9259dab08f783c065fb695c33ed84de1595d3" + }, + { + "rel": "item", + "href": "./BD34_10000_0304.json", + "type": "application/json", + "file:checksum": "122077e7842a9f07d6c390433850709fd3463261d7a9b8f162eac360a68ced87d9eb" + }, + { + "rel": "item", + "href": "./BD34_10000_0305.json", + "type": "application/json", + "file:checksum": "12206695147c4d3fc2df76d25f6f5be3968f716df52cfa5e232c9c4ac3bbd822c8e6" + }, + { + "rel": "item", + "href": "./BD34_10000_0401.json", + "type": "application/json", + "file:checksum": "1220059fec4322efa4d730c90787292cf73c66933979239342e937ed62b9384b7ca6" + }, + { + "rel": "item", + "href": "./BD34_10000_0402.json", + "type": "application/json", + "file:checksum": "12208930204a6dffbbde9b1a8007fa9852fb3262a3c99d5b222da59b3bd3ba8cae4e" + }, + { + "rel": "item", + "href": "./BD34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220e0e32c1ce2c021cd14428c6ebeb7f64ef024a558fe84b53000717e6956a703a0" + }, + { + "rel": "item", + "href": "./BD34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220de76ac300150a38b28ad1295889267e02f991a8a9c96f47300b0d10cd3443591" + }, + { + "rel": "item", + "href": "./BD34_10000_0405.json", + "type": "application/json", + "file:checksum": "1220c669b7fe46d5f9b054aafbc5f61f3452c346944c1139e038e0e6b8dd9e4e9f80" + }, + { + "rel": "item", + "href": "./BD34_10000_0501.json", + "type": "application/json", + "file:checksum": "1220b19d881f83dd54404ca8aae884819a73141c0cd22958e980aa40af4ea62bcae9" + }, + { + "rel": "item", + "href": "./BD34_10000_0502.json", + "type": "application/json", + "file:checksum": "1220df87d3799b814c31bb3b97e8be2d6162ca8b07e7457c67c3d4bdf3549db62bb4" + }, + { + "rel": "item", + "href": "./BD34_10000_0503.json", + "type": "application/json", + "file:checksum": "1220cb135074d6e9e9130bb8007c286d0b44c23e4a54b92a54303b88c703124e841f" + }, + { + "rel": "item", + "href": "./BD34_10000_0504.json", + "type": "application/json", + "file:checksum": "122021ab07ff7f01c3e3840c2c7bfdb114a07ab2e01a804f333d45def67a8c7559f2" + }, + { + "rel": "item", + "href": "./BD34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220d1f18bdbd9e015e780fabf00ee38a29feafb63b9809e576d81ca08fe03578584" + }, + { + "rel": "item", + "href": "./BD35_10000_0101.json", + "type": "application/json", + "file:checksum": "122036f83da271667c4ae7b681aaade802dc3669a36faff76b55cdc409637f450111" + }, + { + "rel": "item", + "href": "./BD35_10000_0102.json", + "type": "application/json", + "file:checksum": "1220363ee430e985b2e9cffd9a0c4edf9a13b98bc88f1ab29c91e0d049704960e66c" + }, + { + "rel": "item", + "href": "./BD35_10000_0103.json", + "type": "application/json", + "file:checksum": "12200018289bd9a751cbad07c4a02c9902af3c4fb66acd4c30005a3e46c58fda62ce" + }, + { + "rel": "item", + "href": "./BD35_10000_0104.json", + "type": "application/json", + "file:checksum": "1220b251138ef33de6283d726dc8ad343738f63dc9daf9e5f714591fa8d71640cf94" + }, + { + "rel": "item", + "href": "./BD35_10000_0105.json", + "type": "application/json", + "file:checksum": "12205b41051e0681f167ea4828766bfb357a9607cfca4546585f52f10fb969fab121" + }, + { + "rel": "item", + "href": "./BD35_10000_0201.json", + "type": "application/json", + "file:checksum": "122025a90dbaa8ff0793b09c890342bd403ac626e78de1a254c7fa656e668be723e1" + }, + { + "rel": "item", + "href": "./BD35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220c3f1028a139e9466b5b2d3120acda93eebc1d7854360467201ba70cc0ccb6acd" + }, + { + "rel": "item", + "href": "./BD35_10000_0203.json", + "type": "application/json", + "file:checksum": "1220413f14a0564631477ccbf194fd6f825446f54ea03769b72fb38becdef2c3db74" + }, + { + "rel": "item", + "href": "./BD35_10000_0204.json", + "type": "application/json", + "file:checksum": "122087e0278eb2f23e4317eb947f632e9dea8d859784cd3ec02b7cf4b56f99f3a783" + }, + { + "rel": "item", + "href": "./BD35_10000_0205.json", + "type": "application/json", + "file:checksum": "1220f10c6dece0d54b29a9f7e5c540a1bfe8d3209e2f75c43db9337fa6215d536321" + }, + { + "rel": "item", + "href": "./BD35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220045674d1af96621d9ac1e0df56f110e09ed3ea6dcd97b76dc30044ec969f75b2" + }, + { + "rel": "item", + "href": "./BD35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220c1a49c2e9e0c86c93afe6e0144705ab8b6c4d72784344fe83a6c1cdb6fd0b547" + }, + { + "rel": "item", + "href": "./BD35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220e215d9ceff27ce902bc9ad9680be8fc48e4ae7b957b07a2da0164c0e19b229c1" + }, + { + "rel": "item", + "href": "./BD35_10000_0304.json", + "type": "application/json", + "file:checksum": "12207d8ff00a77f252a752970bfe6323be9e8d60f5afa928b1b607f69947aa82eab4" + }, + { + "rel": "item", + "href": "./BD35_10000_0305.json", + "type": "application/json", + "file:checksum": "1220ec42ec9ed0999e57fa53b9005b80d0990cf3836557d50ddbca49be501a68c11c" + }, + { + "rel": "item", + "href": "./BD35_10000_0401.json", + "type": "application/json", + "file:checksum": "12200547188ad894bbfd6696f79e2541893a489a0f6e775ac2827eaedd75a52f8edd" + }, + { + "rel": "item", + "href": "./BD35_10000_0402.json", + "type": "application/json", + "file:checksum": "1220db43c4de025423116a226a2221b5b860ab6617d158e235fad50105782bc2c438" + }, + { + "rel": "item", + "href": "./BD35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220c6855b28239c91a493d5dca5ed7dd7fb83d1de3c808a56262ed7878beda76124" + }, + { + "rel": "item", + "href": "./BD35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220aa0db31436e86c39f1adabe892e4c6917d5176a0ca9f20ee3118db7a61a70d0f" + }, + { + "rel": "item", + "href": "./BD35_10000_0405.json", + "type": "application/json", + "file:checksum": "1220c71554d58e7d352e52a87b8d82fc1826178c40d39cf56f87607f2ef3fb8d3cf9" + }, + { + "rel": "item", + "href": "./BD35_10000_0501.json", + "type": "application/json", + "file:checksum": "12201ce6d89bf3124a05e405d287cd775370ba75891322520e4e16669eb5f5b51240" + }, + { + "rel": "item", + "href": "./BD35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220fcfa21be12df6beec3b32e38344cf263c7a99d4322975f3400767b82f3ab75cb" + }, + { + "rel": "item", + "href": "./BD35_10000_0503.json", + "type": "application/json", + "file:checksum": "122032bf3c358bcb1237cf7981332115acc840d8cd0179178cc9a2bb59efaf725933" + }, + { + "rel": "item", + "href": "./BD35_10000_0504.json", + "type": "application/json", + "file:checksum": "12209f1ae93ceb71ed1b50e8692c52a1e547a7257e747fd6c2e08aaf49af0de72fcf" + }, + { + "rel": "item", + "href": "./BD35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220b928285c6c42505ec0d3ad7b051a7ad8f1f0c6eb862f0ba6a8d6a96974b08c0b" + }, + { + "rel": "item", + "href": "./BD36_10000_0201.json", + "type": "application/json", + "file:checksum": "12203310606ec1248c21d1ad187f3e22a20859b7aa637bf55beb2910796180245f83" + }, + { + "rel": "item", + "href": "./BD36_10000_0301.json", + "type": "application/json", + "file:checksum": "1220ad3c6677829cfb9d9bc25b2c938a2b6ebcc8b08cdb0321541457c1c4f75bdbe4" + }, + { + "rel": "item", + "href": "./BD36_10000_0302.json", + "type": "application/json", + "file:checksum": "1220e660a774e6a4b61d3f0dc212f8f6cf4b75ceca3a5bc027800a25d74bd4facd35" + }, + { + "rel": "item", + "href": "./BD36_10000_0401.json", + "type": "application/json", + "file:checksum": "122099f96718003acd04c087a63a01c6c1f92d662d54a4e1d9f061856f6d5d7a930e" + }, + { + "rel": "item", + "href": "./BD36_10000_0402.json", + "type": "application/json", + "file:checksum": "122050c151458ad8109e165d84bf6fae58bf5315a9e60b2abf2875c897be7cc10a28" + }, + { + "rel": "item", + "href": "./BD36_10000_0501.json", + "type": "application/json", + "file:checksum": "12201d65d564e14d9258a218b63aac6f4e1e00fd3c19236e1cec4cca2234f1116015" + }, + { + "rel": "item", + "href": "./BD36_10000_0502.json", + "type": "application/json", + "file:checksum": "12208a6ebe6e73f572337845ef31e83090f325430a50008989713b673dba899579a2" + }, + { + "rel": "item", + "href": "./BE31_10000_0105.json", + "type": "application/json", + "file:checksum": "1220b7679ad8b238b1fa7320959a7641241c284ec7ae94e80a503a0f7e1fc1255c9e" + }, + { + "rel": "item", + "href": "./BE31_10000_0304.json", + "type": "application/json", + "file:checksum": "12208a54b3b0db76b791ff960eea0c617ec49ad6f68a831a21566e314d3dd894ccdc" + }, + { + "rel": "item", + "href": "./BE31_10000_0305.json", + "type": "application/json", + "file:checksum": "1220ab6d66b2dcbce5d7c13f14ab4c8b95c57d455465a96dd96d7619da1a496e1026" + }, + { + "rel": "item", + "href": "./BE31_10000_0404.json", + "type": "application/json", + "file:checksum": "1220619ab9c1594049246b5eacdbe2f8b9796c07e8cbac10d87dd783085367eeb1e5" + }, + { + "rel": "item", + "href": "./BE31_10000_0405.json", + "type": "application/json", + "file:checksum": "12207067a128eea6372c324bcecf4ee5c16d86823e3206e3fcb7aec4ce00afd19bb5" + }, + { + "rel": "item", + "href": "./BE31_10000_0504.json", + "type": "application/json", + "file:checksum": "1220a9934ff99c271cae5e477c59aca403a3bd706718ce41c6b80c1a681dc18b51c9" + }, + { + "rel": "item", + "href": "./BE31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220c49ba4d7e418180979cfe7a8eb74c19ef7d94d0986205f5062e0c5fc475d18a9" + }, + { + "rel": "item", + "href": "./BE32_10000_0101.json", + "type": "application/json", + "file:checksum": "1220cdb15026a700fc888b2a51ae072d9b96df6ed18a5fd83cb37c8e32b3091b3516" + }, + { + "rel": "item", + "href": "./BE32_10000_0102.json", + "type": "application/json", + "file:checksum": "1220dadff8dd1a3457e70ca1eccdb6e1dc0ee159509ae2a623a0c5d91ec7720dc807" + }, + { + "rel": "item", + "href": "./BE32_10000_0103.json", + "type": "application/json", + "file:checksum": "12207eeec2003e5ffd4e5564cd1309727d3cc998ce4d2d0f7631732e87a736779aa9" + }, + { + "rel": "item", + "href": "./BE32_10000_0104.json", + "type": "application/json", + "file:checksum": "1220e09dfdacd5510a4cf8ed7ee1987215858dee25367bcb071683e5c4dc01b8eed8" + }, + { + "rel": "item", + "href": "./BE32_10000_0105.json", + "type": "application/json", + "file:checksum": "122054b6e233d86e6989720b482f2caf3a97b4bcfeb6dbaba156f1e29f55fd7a2141" + }, + { + "rel": "item", + "href": "./BE32_10000_0201.json", + "type": "application/json", + "file:checksum": "122094c17fe9666fb08b8e0497c60221292f34aa030bc798726fdbba91ed1a01b00c" + }, + { + "rel": "item", + "href": "./BE32_10000_0202.json", + "type": "application/json", + "file:checksum": "12201ee85025ec2f0386901c857b7a2f6930a241fee09a9206961440345ead4ff975" + }, + { + "rel": "item", + "href": "./BE32_10000_0203.json", + "type": "application/json", + "file:checksum": "1220fb202d3b9aea862daccb1c0d41d25a5e766597a5722e8bcc45e38f258e2b09c1" + }, + { + "rel": "item", + "href": "./BE32_10000_0204.json", + "type": "application/json", + "file:checksum": "12208861dfa15c41535ec2d99c25bf93c49d6d1b5ffa6c84371a91c7f8aae7e33647" + }, + { + "rel": "item", + "href": "./BE32_10000_0205.json", + "type": "application/json", + "file:checksum": "1220ed868a8683272a1e02ce8a6f893a257415be3d2d86f4ec4aef3c18b2dfc8ccb4" + }, + { + "rel": "item", + "href": "./BE32_10000_0301.json", + "type": "application/json", + "file:checksum": "1220c935c448f6f2f08ec6738811d6427e26ed96e3e352b69b7a05cf30a0a730dcc8" + }, + { + "rel": "item", + "href": "./BE32_10000_0302.json", + "type": "application/json", + "file:checksum": "122081cad397b4ac3b852329fc1dc7aa8cb2292b13611362c537e86e1e125e8e540e" + }, + { + "rel": "item", + "href": "./BE32_10000_0303.json", + "type": "application/json", + "file:checksum": "1220afc0989564d2fc9bd021eb9a34a590eb4eed908c058bd29683be2619c68d5f68" + }, + { + "rel": "item", + "href": "./BE32_10000_0304.json", + "type": "application/json", + "file:checksum": "1220ac76afbe3f6816be745b5125625efe39fde930927856128cba5fa71de603b803" + }, + { + "rel": "item", + "href": "./BE32_10000_0305.json", + "type": "application/json", + "file:checksum": "1220fbf9b971faeee90c9013a8ac9ee72ed10f3b2a9cbd23acb3a9a35481e57fa2ea" + }, + { + "rel": "item", + "href": "./BE32_10000_0401.json", + "type": "application/json", + "file:checksum": "1220f948b17c2106444b60ee791744fd8ea9717f9326d31bc09cba80a471d7b3d014" + }, + { + "rel": "item", + "href": "./BE32_10000_0402.json", + "type": "application/json", + "file:checksum": "12201d1f79da266d8fe777d42212a8c9d1177ad4b7f9511f9b1a92115b64aa164adb" + }, + { + "rel": "item", + "href": "./BE32_10000_0403.json", + "type": "application/json", + "file:checksum": "122060acef7ec0e74b53182149b5f2da99f9916500df741b547188d1e144aa2d9227" + }, + { + "rel": "item", + "href": "./BE32_10000_0404.json", + "type": "application/json", + "file:checksum": "1220cd5f12bc8ea64d6bec21eb73e34d82ac252616fc4be926ccc68b8d94f05c7783" + }, + { + "rel": "item", + "href": "./BE32_10000_0405.json", + "type": "application/json", + "file:checksum": "122042bcd48b2ad0d94a991918542940a2e52847c67485565bf72c5b4aa07ae30b54" + }, + { + "rel": "item", + "href": "./BE32_10000_0501.json", + "type": "application/json", + "file:checksum": "12207c61a61cdfc2f3d44dbb77d604b8158fe635cad3dbf58bee1150c89d10846cc3" + }, + { + "rel": "item", + "href": "./BE32_10000_0502.json", + "type": "application/json", + "file:checksum": "122048e519016fb296f05d89f1f81a60675fb76b8f35eaf37649818845593ebcdc84" + }, + { + "rel": "item", + "href": "./BE32_10000_0503.json", + "type": "application/json", + "file:checksum": "1220bcc0c48a0b573530346bdee6f18c76056f12aa5daacaf67ff59a33a18d6b5f94" + }, + { + "rel": "item", + "href": "./BE32_10000_0504.json", + "type": "application/json", + "file:checksum": "12200e060f237e88122a8cb19964980280fef3cc3a0c1c2f63517357c14d6cc6ff48" + }, + { + "rel": "item", + "href": "./BE32_10000_0505.json", + "type": "application/json", + "file:checksum": "12208dd9dddb9c0a0ed1051a85f04a8af6635e9343ccff7ccf6183f2160336002506" + }, + { + "rel": "item", + "href": "./BE33_10000_0101.json", + "type": "application/json", + "file:checksum": "122006b31e90374f6070466abd528b09adbab3c8a1563966cabba561de7a571fe529" + }, + { + "rel": "item", + "href": "./BE33_10000_0102.json", + "type": "application/json", + "file:checksum": "122013e8fb5d2ef76ec40bd77a8fb8899e773bdb42b1eaad2ad114d7e7daef0c5a5d" + }, + { + "rel": "item", + "href": "./BE33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220e3a6c6240681a99b3df6f80bcfe341c0a15e100192028945ad27073efc7ff2e1" + }, + { + "rel": "item", + "href": "./BE33_10000_0104.json", + "type": "application/json", + "file:checksum": "12204943b1b90d7a0e31e998be1c3e03a24ac71d31cfedb88082ca2ba12bd392935b" + }, + { + "rel": "item", + "href": "./BE33_10000_0105.json", + "type": "application/json", + "file:checksum": "1220a11e60e258bd2c5513c47088c2b4050d01ac509c2134fe24e124ccd0d318a356" + }, + { + "rel": "item", + "href": "./BE33_10000_0201.json", + "type": "application/json", + "file:checksum": "122073cc8e7ac0d67968b76945c2726dc5705a37750df72248d5c2b8f53b522972be" + }, + { + "rel": "item", + "href": "./BE33_10000_0202.json", + "type": "application/json", + "file:checksum": "12203177933160daf6fd15b9811b8eb2a7f0dbe656303407feb16470a6bd63a12f43" + }, + { + "rel": "item", + "href": "./BE33_10000_0203.json", + "type": "application/json", + "file:checksum": "12205a956bde8e46d08bda2f16b50345d3b8dbe206ba3cd32af2aa75a62482bcbd5d" + }, + { + "rel": "item", + "href": "./BE33_10000_0204.json", + "type": "application/json", + "file:checksum": "12200d3678ea6ea41408c8806bbd28ca0d13dd82ad92fd1cc1c81e8aa21b976cbfda" + }, + { + "rel": "item", + "href": "./BE33_10000_0205.json", + "type": "application/json", + "file:checksum": "1220c6ecb73c2645a6b1638e4211b9025ef288f7d3490956a47708f30f28247e715f" + }, + { + "rel": "item", + "href": "./BE33_10000_0301.json", + "type": "application/json", + "file:checksum": "1220686c338e3bbc848e8543fce74b1149b6fcba75ee31ba8fc4d1e41c6763c1419c" + }, + { + "rel": "item", + "href": "./BE33_10000_0302.json", + "type": "application/json", + "file:checksum": "12203e5516aff3cda8e66f7d69d21793d5d570d16fd053ae9aa39fa82877f39ce263" + }, + { + "rel": "item", + "href": "./BE33_10000_0303.json", + "type": "application/json", + "file:checksum": "122031ded86aa88e2c95198fbd6bda8f8a003f246c8c150b36d87933deb9be4ce6ec" + }, + { + "rel": "item", + "href": "./BE33_10000_0304.json", + "type": "application/json", + "file:checksum": "1220d4f1dd728244272ef07a6456751d47ac4be59fcc861affd91be07ae7daf722bc" + }, + { + "rel": "item", + "href": "./BE33_10000_0305.json", + "type": "application/json", + "file:checksum": "122006d4166565f8e15f1e076a38678eb07361f547a71d7b81bec13d7fd551cb8fd4" + }, + { + "rel": "item", + "href": "./BE33_10000_0401.json", + "type": "application/json", + "file:checksum": "1220478d7fc27cd9a3d8dd20af86b1472849d61df2e71608eebddd19ec74db44df49" + }, + { + "rel": "item", + "href": "./BE33_10000_0402.json", + "type": "application/json", + "file:checksum": "12201b5d76b8dc4d66fb855331ac3efee36ec99fb472fae8c8d83daa08c9f50929a0" + }, + { + "rel": "item", + "href": "./BE33_10000_0403.json", + "type": "application/json", + "file:checksum": "1220d4567e9abf845ce914999310ec26fb944e0372ea639d9e22a6877cce77b6aeec" + }, + { + "rel": "item", + "href": "./BE33_10000_0404.json", + "type": "application/json", + "file:checksum": "1220e899c85fad8842c3a5ceeee8bae4858523d25ff8245cdc8e87b9217390350b66" + }, + { + "rel": "item", + "href": "./BE33_10000_0405.json", + "type": "application/json", + "file:checksum": "1220b914d75f2aee437cb52cc609895fe94a015e7548b2172f9d4025772933051f2d" + }, + { + "rel": "item", + "href": "./BE33_10000_0501.json", + "type": "application/json", + "file:checksum": "12206491f53c736d3b8f22fdcf6e4c11cb9bcdd0249f7c024b341cbfc3026aaaf9d8" + }, + { + "rel": "item", + "href": "./BE33_10000_0502.json", + "type": "application/json", + "file:checksum": "122049c2ab07723e9e74f38ab032837de88996d4e52e52db47090a7f386f8cfd8981" + }, + { + "rel": "item", + "href": "./BE33_10000_0503.json", + "type": "application/json", + "file:checksum": "122003c92d945c1b5d223465b3347cc9923f59726e424301c17760c13a647a43c70c" + }, + { + "rel": "item", + "href": "./BE33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220de53067329994f4af13b20b78aba0e72ba3e1f1cceedebe48e26a1b6dce0e417" + }, + { + "rel": "item", + "href": "./BE33_10000_0505.json", + "type": "application/json", + "file:checksum": "1220434102844ed6bd38daa5b522053b0afbe5f557b0575d2a8b71c807cc3b6ad4b8" + }, + { + "rel": "item", + "href": "./BE34_10000_0101.json", + "type": "application/json", + "file:checksum": "1220a07a5d2f8cea362ddaa03010e0602bd6eab0fbbde44da19d12dd62334cf9abe0" + }, + { + "rel": "item", + "href": "./BE34_10000_0102.json", + "type": "application/json", + "file:checksum": "122059eb069505afa3e1cf22a5500e9aa6c5a85844260875da19bd57610fefebdc9a" + }, + { + "rel": "item", + "href": "./BE34_10000_0103.json", + "type": "application/json", + "file:checksum": "122075d459bc8f14d830042d117c898c326f3c30f1597aed469d592979847065da10" + }, + { + "rel": "item", + "href": "./BE34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220b086bc78b633c38300a8f8bd9b3688efaa1933fc9206fb4381ed0934b9829628" + }, + { + "rel": "item", + "href": "./BE34_10000_0105.json", + "type": "application/json", + "file:checksum": "122041521920a65f7c225e8be5073d01410db055ccff953f1d8da71c6169216000e1" + }, + { + "rel": "item", + "href": "./BE34_10000_0201.json", + "type": "application/json", + "file:checksum": "12209b5e0678af2a849254ce504c27a55760fa9896e444d1a25f4817ae7a5e4b0250" + }, + { + "rel": "item", + "href": "./BE34_10000_0202.json", + "type": "application/json", + "file:checksum": "12204436e02a319ded6c293a4c2c2374e9770ef713fda02da677e3bfcb08bb260946" + }, + { + "rel": "item", + "href": "./BE34_10000_0203.json", + "type": "application/json", + "file:checksum": "1220a78d4e0d16483998c20a09016223cb50f4e2b0dd317bf7d10f02a746ded83a55" + }, + { + "rel": "item", + "href": "./BE34_10000_0204.json", + "type": "application/json", + "file:checksum": "12205fffb9d40678d337e70142d00e7265d1c0f84cf8770f26657c3fa47ac76ae17e" + }, + { + "rel": "item", + "href": "./BE34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220b51e2ed9b44ceafbbe7f3dbfe84f00efcf164cdfb02a2c8d4d2a269d024aec15" + }, + { + "rel": "item", + "href": "./BE34_10000_0301.json", + "type": "application/json", + "file:checksum": "122002e046ec88c6cab8b086f6a06b504673bae5924c90275fce4b9266ceb7e19ba9" + }, + { + "rel": "item", + "href": "./BE34_10000_0302.json", + "type": "application/json", + "file:checksum": "122016d327984f5c49f48fc81f8dc6d6c8334761276c6d1349fc5ed4736369a6788f" + }, + { + "rel": "item", + "href": "./BE34_10000_0303.json", + "type": "application/json", + "file:checksum": "1220b74708395cbee37af4e1be407e54c9684d4a949eb163e8a0c36b3e807b382a2f" + }, + { + "rel": "item", + "href": "./BE34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220444640a236058d467301569e41555ab065d0b14d059481e9bfa223c34c9e3f66" + }, + { + "rel": "item", + "href": "./BE34_10000_0305.json", + "type": "application/json", + "file:checksum": "1220ab683c2ef8a18388be288bc3885681582479b79b65ac9816a404db99091897eb" + }, + { + "rel": "item", + "href": "./BE34_10000_0401.json", + "type": "application/json", + "file:checksum": "12209a91041ee305e1b99a68f32a1f8234134e9461da2e0c6d60a597b5c869ca727c" + }, + { + "rel": "item", + "href": "./BE34_10000_0402.json", + "type": "application/json", + "file:checksum": "1220a4fdbbaee791b40661a1b3f2c10482b1c28cfaa2a5eaa106711de058215ced50" + }, + { + "rel": "item", + "href": "./BE34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220374f0d17c875b64018bbdb6d819f5f3453ba875d0625edc3b59c0c172846505e" + }, + { + "rel": "item", + "href": "./BE34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220a5a2829eb65051b28e9187ff1c35c456bcf77ee61fd1240d2fd5edddce567a0f" + }, + { + "rel": "item", + "href": "./BE34_10000_0405.json", + "type": "application/json", + "file:checksum": "12202327addfdd90047f3dbb2e64745c233a1681ab8c753301409cde827f756f0102" + }, + { + "rel": "item", + "href": "./BE34_10000_0501.json", + "type": "application/json", + "file:checksum": "1220976d5abe97d4e68896a37a11e7bc32f1280d691647b3b027a641b6f65c808904" + }, + { + "rel": "item", + "href": "./BE34_10000_0502.json", + "type": "application/json", + "file:checksum": "122088ac348369307427fef10afd748b263946a17099587f7b8874545553aed54b97" + }, + { + "rel": "item", + "href": "./BE34_10000_0503.json", + "type": "application/json", + "file:checksum": "1220130699bd94582fcc6e479e24526f9f8e143901fcaca62a24e58783e36546fa25" + }, + { + "rel": "item", + "href": "./BE34_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c393366f6385c5814ccf799600bc87e080a99a055cc93a6b9113c208704ba51d" + }, + { + "rel": "item", + "href": "./BE34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e965f5b93d2f37bce0ae50b8576215b4f5aa558497da95446fecf2c6c3a8b30e" + }, + { + "rel": "item", + "href": "./BE35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220f049fc8b419736626752f136841a4b5c485c409d00c8f47fa426fa9951008eb7" + }, + { + "rel": "item", + "href": "./BE35_10000_0102.json", + "type": "application/json", + "file:checksum": "12203357e21e4d654c69cc7bab9373d08b434a9c30984d3268819ab704ce5352ec66" + }, + { + "rel": "item", + "href": "./BE35_10000_0103.json", + "type": "application/json", + "file:checksum": "1220a6c1a45f7ca65b79fa9092759d50322ba939a1aa3325fd9aaa2f4ff428f35730" + }, + { + "rel": "item", + "href": "./BE35_10000_0104.json", + "type": "application/json", + "file:checksum": "1220ceb9e2dd7aa66b902f728746afb007243bf08e95ccee471986886793e2dfddd1" + }, + { + "rel": "item", + "href": "./BE35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220e6d8f49f44ab2b058dd7bf7027ef10841782e338db3e24b0f73b42acc5badd9e" + }, + { + "rel": "item", + "href": "./BE35_10000_0201.json", + "type": "application/json", + "file:checksum": "12206594f672fdde249f12ff3665f02ff6a23f9bbc34e0b9dae529cb7f4fcbb83a5d" + }, + { + "rel": "item", + "href": "./BE35_10000_0202.json", + "type": "application/json", + "file:checksum": "12202b3471c33a4e93b7156c089daa9766c757bfbdb11a8f9a7527549f4530fdd7cb" + }, + { + "rel": "item", + "href": "./BE35_10000_0203.json", + "type": "application/json", + "file:checksum": "122010accfbac34c74feb26cf8e2452391da22531a31e509ed0f9993f7691239350b" + }, + { + "rel": "item", + "href": "./BE35_10000_0204.json", + "type": "application/json", + "file:checksum": "122060864caec207e3eafe65fe52f1f12863aaea771149e066c9481232403156db4c" + }, + { + "rel": "item", + "href": "./BE35_10000_0205.json", + "type": "application/json", + "file:checksum": "122086a8fa937ee96d1bec75d0d49d8c169aaca83edf67b9f18ef75c795df67b6637" + }, + { + "rel": "item", + "href": "./BE35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220d157e95a64b72195b2e69c5fc52cf12568c3afac2b738faa973c8c565abff604" + }, + { + "rel": "item", + "href": "./BE35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220630605cbb43574954096f98595a8c803f4b1a1f9e0fe2c91ce95f90ae6541c5b" + }, + { + "rel": "item", + "href": "./BE35_10000_0303.json", + "type": "application/json", + "file:checksum": "12204bc4c76ef35048d0207841c0ea91d1295b56aeb2ec903bd7aca3a48ccdf18da3" + }, + { + "rel": "item", + "href": "./BE35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220db035f826f7e5211a574c2fdb3eb00858989e60abb3733d4f4e837dbc8f34208" + }, + { + "rel": "item", + "href": "./BE35_10000_0305.json", + "type": "application/json", + "file:checksum": "122065a437fce6fd0b2341a2d1f7c5b7844e21a2e048b9de7a2fa34dd0ea545c4e03" + }, + { + "rel": "item", + "href": "./BE35_10000_0401.json", + "type": "application/json", + "file:checksum": "12203097f6b5e8e986219e7f572891bb07ae5c49fd3c2241e95ebb3b91e6f59a33d4" + }, + { + "rel": "item", + "href": "./BE35_10000_0402.json", + "type": "application/json", + "file:checksum": "122049d168f2e7f378d4a4c9deb3ad6f088c42c0a64a5c43454b36d314f2e5b6e4d4" + }, + { + "rel": "item", + "href": "./BE35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220808d432c23408b7eb4ed2a0c0128cb1d56d817251151a00225b019a64a8a837a" + }, + { + "rel": "item", + "href": "./BE35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220965067ff7cc51495382da131ef4ab39bbbad0d48df4c4ae387b10c1c5f079b9e" + }, + { + "rel": "item", + "href": "./BE35_10000_0405.json", + "type": "application/json", + "file:checksum": "12203f18e111d4aee9f4a01518c327bf7db51a1e3e6923f4d1c3c9514c514e696e72" + }, + { + "rel": "item", + "href": "./BE35_10000_0501.json", + "type": "application/json", + "file:checksum": "12204a7471100ad741a5456507200e860b1fb612547362fc914cdfaa1f7e0aa776a1" + }, + { + "rel": "item", + "href": "./BE35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220b14c58b64a51826a4a56b37ec0c126a3de6167509030508343e09d34bc409982" + }, + { + "rel": "item", + "href": "./BE35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d5e714d8e86175ecdc93c74caa95bc41a5edeaab315c5143b6214bc70748b883" + }, + { + "rel": "item", + "href": "./BE35_10000_0504.json", + "type": "application/json", + "file:checksum": "122042d9babe9c8435909245c7b2554027a58f71529b1da204be8d207462a7288b0f" + }, + { + "rel": "item", + "href": "./BE35_10000_0505.json", + "type": "application/json", + "file:checksum": "122001db41005d7ebaa02c54997db95b94c4bb16275427629bf124fcc66325c16ff1" + }, + { + "rel": "item", + "href": "./BE36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220c68a56a00205a51d9a11006d87e30028bbce74625a33c859b2617a9fe809ae5f" + }, + { + "rel": "item", + "href": "./BE36_10000_0102.json", + "type": "application/json", + "file:checksum": "122010d9436f491b69b5e5a1562c923c52887b888f2843cfb45171188b6c26e9f1bf" + }, + { + "rel": "item", + "href": "./BE36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220d523a342b006634a91a4306f7cc96e706791d644cf09e4eb5d40840db3d3b1d9" + }, + { + "rel": "item", + "href": "./BE36_10000_0202.json", + "type": "application/json", + "file:checksum": "122016befec6b57577bc96fcd7b54ff2e015217c491bf6cf22406771888a3f75ca05" + }, + { + "rel": "item", + "href": "./BE36_10000_0203.json", + "type": "application/json", + "file:checksum": "122003b1404dceb9f1dadd4f5de7f9bbce4774fb3d23627fccdc7ec21f43a3c69a99" + }, + { + "rel": "item", + "href": "./BE36_10000_0204.json", + "type": "application/json", + "file:checksum": "12209ebcbb856488c7f665b8a078af3e6db2ca8f18196d3d1388603a7eb2f1fbe44d" + }, + { + "rel": "item", + "href": "./BE36_10000_0301.json", + "type": "application/json", + "file:checksum": "12208d47347e574e36577cd76e8de85ee6c30b22c55e462c4cd20028c4d6b1889505" + }, + { + "rel": "item", + "href": "./BE36_10000_0302.json", + "type": "application/json", + "file:checksum": "122000c6fbff58634f22ae20dff5e233eba366143bf7d0ff1ce3d1e311c17bb92fc0" + }, + { + "rel": "item", + "href": "./BE36_10000_0303.json", + "type": "application/json", + "file:checksum": "1220439978b33929c6e16423183d220039fdb31d0b7129141ddc4aac18b5ebc6326a" + }, + { + "rel": "item", + "href": "./BE36_10000_0304.json", + "type": "application/json", + "file:checksum": "12202963ffc3941f654119b2eaa188fbc06a346b8477a00d4bd2504e2c1b77187887" + }, + { + "rel": "item", + "href": "./BE36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220e534069e0ff5a529eba71a8ee83d10e4b0b637b7aad7a18a5881419562405ebc" + }, + { + "rel": "item", + "href": "./BE36_10000_0402.json", + "type": "application/json", + "file:checksum": "122020adeb964daa725826e34582dfe03c7fe37cc8d398949dc2c43779184064a8d3" + }, + { + "rel": "item", + "href": "./BE36_10000_0403.json", + "type": "application/json", + "file:checksum": "122010cc8f7a50ed4d8d9d63cd917e5f3c0a1d8341ab9d1aeccf44a1a5f78a303d0e" + }, + { + "rel": "item", + "href": "./BE36_10000_0501.json", + "type": "application/json", + "file:checksum": "1220e7840646b481e924659fcfdf682ab73ed2b44426e3d3a3c4b8e349e3baaa4c59" + }, + { + "rel": "item", + "href": "./BE36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220292f2e7fde8eb85312ece8041a9af19e7031752527cb2dae011d61a5fee8fe43" + }, + { + "rel": "item", + "href": "./BE36_10000_0503.json", + "type": "application/json", + "file:checksum": "1220119742eaa2e2fe144a6d072c981d0a7cc3150dcb8cbc0b71f1b23b251a0f48cc" + }, + { + "rel": "item", + "href": "./BE36_10000_0504.json", + "type": "application/json", + "file:checksum": "12200cdee3a6366298a15b6f7a6ace8ebb6e8ab67227a425100b103abb61903a4004" + }, + { + "rel": "item", + "href": "./BE36_10000_0505.json", + "type": "application/json", + "file:checksum": "1220fce07c5a9b80df1bf4a68992be3a593540b31db9a1d83ddbd4c78b9f2c9e04ba" + }, + { + "rel": "item", + "href": "./BF31_10000_0104.json", + "type": "application/json", + "file:checksum": "1220174025cb6d84f9117615b7c662100329eeaecf607055b2a35fa981792e886fb8" + }, + { + "rel": "item", + "href": "./BF31_10000_0105.json", + "type": "application/json", + "file:checksum": "1220936e8b93e3d0d35aff7f3efaff391a783fb2d017baf638e4bb7d2c81aad83e02" + }, + { + "rel": "item", + "href": "./BF31_10000_0203.json", + "type": "application/json", + "file:checksum": "122038a5a69c5172ce1e530a03ef992edba4400fe4bb5b606837d2f2bdc23356843f" + }, + { + "rel": "item", + "href": "./BF31_10000_0204.json", + "type": "application/json", + "file:checksum": "12205e6b4d4c9a09eb7b65153d8d82895e93c1f9c8a73d3287ffdae4a2c6a9315830" + }, + { + "rel": "item", + "href": "./BF31_10000_0205.json", + "type": "application/json", + "file:checksum": "1220c6cc6a6411135e146bff472337d79bd333aa4cfe87623edc39b203b4422a88a9" + }, + { + "rel": "item", + "href": "./BF31_10000_0303.json", + "type": "application/json", + "file:checksum": "122047212ea629c381f30e4fe19d104a01a2006b4356697fa12edae3cbe8c00fa38a" + }, + { + "rel": "item", + "href": "./BF31_10000_0304.json", + "type": "application/json", + "file:checksum": "1220c5603eb9581ce59a947f8b43e8802f27491a2c18cce8bf1f49b6c8b4803cfa15" + }, + { + "rel": "item", + "href": "./BF31_10000_0305.json", + "type": "application/json", + "file:checksum": "12203891544867d2dfb1dfaf2a5109802d10ec571d45c4ba3e5bc6cf33735224b717" + }, + { + "rel": "item", + "href": "./BF31_10000_0403.json", + "type": "application/json", + "file:checksum": "122041a1c1b97c16291473f09fd168ba29524999557860062fc05791901bb862336f" + }, + { + "rel": "item", + "href": "./BF31_10000_0404.json", + "type": "application/json", + "file:checksum": "1220137d0a07a1fb3df570deb1a959aee59a2651e13b6367fdd1b7f31bde837c81a4" + }, + { + "rel": "item", + "href": "./BF31_10000_0405.json", + "type": "application/json", + "file:checksum": "122072797afe9c0658ee4be180901d1a62bcbb16b94f6901d07416f6d75d4703ea58" + }, + { + "rel": "item", + "href": "./BF31_10000_0503.json", + "type": "application/json", + "file:checksum": "12204f53c4141a27dc873050b79ae56c2b8d6038adae4746469581d32c1ae03e15df" + }, + { + "rel": "item", + "href": "./BF31_10000_0504.json", + "type": "application/json", + "file:checksum": "12201a79dcfc465cf50243e748b2ab050f858265a9a5cce15249729885318e3c251a" + }, + { + "rel": "item", + "href": "./BF31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220327e21f5bd06800fa4fc85e7a26589541ce65b45d7e400ac7d8aee18f4a01eca" + }, + { + "rel": "item", + "href": "./BF32_10000_0101.json", + "type": "application/json", + "file:checksum": "12208f80f29557613db2afc91f36578807774bb6c4fbb18a1db63887057bce07f5ec" + }, + { + "rel": "item", + "href": "./BF32_10000_0102.json", + "type": "application/json", + "file:checksum": "122076589493660b66c823da550afc8a0dc3edf18735c8510e6c2d19ca473963033b" + }, + { + "rel": "item", + "href": "./BF32_10000_0103.json", + "type": "application/json", + "file:checksum": "12202a4364f814ef68e2fa3d18cf3267b4f697e70783dbd236f11faa7693c2746c8f" + }, + { + "rel": "item", + "href": "./BF32_10000_0104.json", + "type": "application/json", + "file:checksum": "1220bec1678ab9a55da870f4ea6bdcd882e65cac7fd73e0d5082547ff97e42d9013a" + }, + { + "rel": "item", + "href": "./BF32_10000_0105.json", + "type": "application/json", + "file:checksum": "1220c91437aeacb0c3f0deefba47741583dafd3576a9d0a5b3828de01dfa1fc6dba0" + }, + { + "rel": "item", + "href": "./BF32_10000_0201.json", + "type": "application/json", + "file:checksum": "122045d57c150349df86b1cc9983b5418f52e11952d1cb6cac87f7acc696c43a0dc3" + }, + { + "rel": "item", + "href": "./BF32_10000_0202.json", + "type": "application/json", + "file:checksum": "12208b95280a57683dd23d349ca644363e98f507817bc802e476dd09d204af5165ee" + }, + { + "rel": "item", + "href": "./BF32_10000_0203.json", + "type": "application/json", + "file:checksum": "122002a3298530aed8f1908e592ad1ec4ade942556d73e3b92ba6da007a8f1c3fb01" + }, + { + "rel": "item", + "href": "./BF32_10000_0204.json", + "type": "application/json", + "file:checksum": "1220f1efabf1ba5680b1720101e4fd0386f878dab8cdeeec66ec0c038f56a8a7feda" + }, + { + "rel": "item", + "href": "./BF32_10000_0205.json", + "type": "application/json", + "file:checksum": "1220ab788cdd63091b9de08a352ae76a6ccc8fa564869564b49358f54bd74f02f668" + }, + { + "rel": "item", + "href": "./BF32_10000_0301.json", + "type": "application/json", + "file:checksum": "1220cb370da8bb25d9229431b5c96e8eb94f65dd8bef5cc6ebda53b64e191888eb51" + }, + { + "rel": "item", + "href": "./BF32_10000_0302.json", + "type": "application/json", + "file:checksum": "1220c4ec0fb1e291eaff650721c153b396fbc858c4aa123b962e622da57ea5ec88f3" + }, + { + "rel": "item", + "href": "./BF32_10000_0303.json", + "type": "application/json", + "file:checksum": "1220ec50d6b422a3765e0f861fc415d9ba04bb3b1c7e370560edc6b30ded394d4c63" + }, + { + "rel": "item", + "href": "./BF32_10000_0304.json", + "type": "application/json", + "file:checksum": "1220fa63bc8f625c039c5a3806cd12f00886b4526e7eadf4511ae650609af6f2b6d7" + }, + { + "rel": "item", + "href": "./BF32_10000_0305.json", + "type": "application/json", + "file:checksum": "122088eb252d51b47f57d9ea2d551e3c5c1d9c3096f9b1d5f4bfc770159550c17363" + }, + { + "rel": "item", + "href": "./BF32_10000_0401.json", + "type": "application/json", + "file:checksum": "12202071ef6778dcc1f9eeac9a12c1da5bbd65b3d40a8fcedb96ec66b06da7cbd623" + }, + { + "rel": "item", + "href": "./BF32_10000_0402.json", + "type": "application/json", + "file:checksum": "1220e024e71ac6773845c81af5b27d1acfdf89053e08d256726ea0f45c4b0f4c3b85" + }, + { + "rel": "item", + "href": "./BF32_10000_0403.json", + "type": "application/json", + "file:checksum": "12203fe58bd83678c6cdd1d452bb560bf0a8ad3d214c0c208588360bb4da70b9412f" + }, + { + "rel": "item", + "href": "./BF32_10000_0404.json", + "type": "application/json", + "file:checksum": "1220c90cbb46591659ab76d6a3ffb30f439c4d58e363ef47cca1b23d5f543414d0a2" + }, + { + "rel": "item", + "href": "./BF32_10000_0405.json", + "type": "application/json", + "file:checksum": "12208cb72fecbef7f42a0f3584180ffbb767f94a41971e06cccc48d2d870015cca50" + }, + { + "rel": "item", + "href": "./BF32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220aded380629cfb62a51a9c1482dffd38578ab8ca61c90749eeacb8ab6876b8a10" + }, + { + "rel": "item", + "href": "./BF32_10000_0502.json", + "type": "application/json", + "file:checksum": "12208d41f8cf3029f871fb7ec398ea27107204055fca4b6ce4f1c7fb2bc212c13130" + }, + { + "rel": "item", + "href": "./BF32_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d769018056e6d0dd5452704ac0b135dc62e0123a5ab76db8f439b55d475eea00" + }, + { + "rel": "item", + "href": "./BF32_10000_0504.json", + "type": "application/json", + "file:checksum": "1220bd99e40094f7ed346799cc8c32537fee8fdbcf932d7e1378744611319b74b4fc" + }, + { + "rel": "item", + "href": "./BF32_10000_0505.json", + "type": "application/json", + "file:checksum": "12202d1826dd7221cf8c9631b03e3e0f76dd8bda8578b74299fbb8bd1a2997e532e0" + }, + { + "rel": "item", + "href": "./BF33_10000_0101.json", + "type": "application/json", + "file:checksum": "12207ca1efbc43e131cd822f746ab22a9ace69668f4190e365375cdf010f4d554f94" + }, + { + "rel": "item", + "href": "./BF33_10000_0102.json", + "type": "application/json", + "file:checksum": "1220d7ef216357bdd9796db68b9ee3ea4cfce455e0f7f730391dc745fdcbcaefd03e" + }, + { + "rel": "item", + "href": "./BF33_10000_0103.json", + "type": "application/json", + "file:checksum": "122046f311b357b2ab2c7bfaa11de587b1c44990333e67a9103a062258602bb782ca" + }, + { + "rel": "item", + "href": "./BF33_10000_0104.json", + "type": "application/json", + "file:checksum": "122085a21c9531e12e13cf844ec7217afabac1977f211d4571d142d7a5f57a8b4c21" + }, + { + "rel": "item", + "href": "./BF33_10000_0105.json", + "type": "application/json", + "file:checksum": "12208fe125f8bd4b862010775a3be59b438362995a36d355b7bebcd7e02fe31e0e56" + }, + { + "rel": "item", + "href": "./BF33_10000_0201.json", + "type": "application/json", + "file:checksum": "122053077052dd01e3b043b3e69e07cdd6988bd784610e465e6beeafee72a62ff15d" + }, + { + "rel": "item", + "href": "./BF33_10000_0202.json", + "type": "application/json", + "file:checksum": "12208e872719b9a9daa9141bd694b08fcec801da5679b5675e950ed1e07c6a7ae84f" + }, + { + "rel": "item", + "href": "./BF33_10000_0203.json", + "type": "application/json", + "file:checksum": "1220cfe898090286e06405f5b4a3192f9905b678e2d67a03285cbf647b824ab592b7" + }, + { + "rel": "item", + "href": "./BF33_10000_0204.json", + "type": "application/json", + "file:checksum": "12200d91fe07d6061af2b8cc3c122e344abc64609e800992f45576ba17a4b2462d51" + }, + { + "rel": "item", + "href": "./BF33_10000_0205.json", + "type": "application/json", + "file:checksum": "1220c25c4f3d2ca73f76e2a321d32f2df8fa0bd91e585d61d56a99ff9da99928c6cd" + }, + { + "rel": "item", + "href": "./BF33_10000_0301.json", + "type": "application/json", + "file:checksum": "122052fdb36f5a0c6a54261f4327c726de46729e92dfbeea95b5e51d570ec70cbbf5" + }, + { + "rel": "item", + "href": "./BF33_10000_0302.json", + "type": "application/json", + "file:checksum": "1220155d1711e55b0d575630e0dfb98c0b6227dec9260ed8e1803e0c6d9fec3f373a" + }, + { + "rel": "item", + "href": "./BF33_10000_0303.json", + "type": "application/json", + "file:checksum": "12209844d78a4cf1d577559055e8cbf0673a02aee438580f6ca32a8be6c07c1e43aa" + }, + { + "rel": "item", + "href": "./BF33_10000_0304.json", + "type": "application/json", + "file:checksum": "1220d6a6e25589a1940466a925209f746843b2a3611638b5e97466668d307fab236e" + }, + { + "rel": "item", + "href": "./BF33_10000_0305.json", + "type": "application/json", + "file:checksum": "122034b1c33c7fb455e416cbfc9463992ad36fccb181e20a59c1f08315094c740169" + }, + { + "rel": "item", + "href": "./BF33_10000_0401.json", + "type": "application/json", + "file:checksum": "1220683888c47d2ec4db5eba986482ef6c4eaab26053d9a5c2446d4b71e868fef4e7" + }, + { + "rel": "item", + "href": "./BF33_10000_0402.json", + "type": "application/json", + "file:checksum": "12209957ca7662fe76d55f6b82e0a19667de9fcb45936045dda2a95c6dfec8182c74" + }, + { + "rel": "item", + "href": "./BF33_10000_0403.json", + "type": "application/json", + "file:checksum": "1220f42bd13fc07cafe2f21dd9c10e84589bef2628598fa9d23ad16c286aa65a18f6" + }, + { + "rel": "item", + "href": "./BF33_10000_0404.json", + "type": "application/json", + "file:checksum": "1220d84de540e67cad631e86582d3f0f985dca62f51df19496ddf070fcef3515c114" + }, + { + "rel": "item", + "href": "./BF33_10000_0405.json", + "type": "application/json", + "file:checksum": "122044b80a9812e06fa53bf6a2534c2650018c7a4d3a386e04bfd5a39d9b3de8f3b2" + }, + { + "rel": "item", + "href": "./BF33_10000_0501.json", + "type": "application/json", + "file:checksum": "12207bce40b102895f6e28970377cb43e821398648c768560f6c744385ea17665500" + }, + { + "rel": "item", + "href": "./BF33_10000_0502.json", + "type": "application/json", + "file:checksum": "12201cb3bde4f128dc09caf101d8cafd39b6c994f1756b7c132b970251c1b352b154" + }, + { + "rel": "item", + "href": "./BF33_10000_0503.json", + "type": "application/json", + "file:checksum": "12203f3eedd1ed7459c6a5a350fffc0916f104e5b9049b3670cb507d867324fad37e" + }, + { + "rel": "item", + "href": "./BF33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220f4e55e08d5e298dfaed90b072cf12e4294aec50b99baffa3dc925fd48ac637bd" + }, + { + "rel": "item", + "href": "./BF33_10000_0505.json", + "type": "application/json", + "file:checksum": "1220002c673e4e2bc34db0d0019ad4a63fb62f03373a2dc93c63f6e554617572a88a" + }, + { + "rel": "item", + "href": "./BF34_10000_0101.json", + "type": "application/json", + "file:checksum": "122098898315890831aadd7b15f882f72347ed3e4967494dbfe391982067cce2ac6f" + }, + { + "rel": "item", + "href": "./BF34_10000_0102.json", + "type": "application/json", + "file:checksum": "12204398dce6caea0a6bb48c9a227e8c04a1048c7c0d60892795f3c1d24dbf3955c1" + }, + { + "rel": "item", + "href": "./BF34_10000_0103.json", + "type": "application/json", + "file:checksum": "1220d77ffe3902f5000b60f4e31db15d12da0c4823c085eeda36133b64fcc35435b4" + }, + { + "rel": "item", + "href": "./BF34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220849dc57e811fcac95406e97d40555cbabf1483fa482bc1daeaae4248dce8dec8" + }, + { + "rel": "item", + "href": "./BF34_10000_0105.json", + "type": "application/json", + "file:checksum": "12208af64807a0ce6ff865ef9148d1c6a4ecbc86bb1f91998eb9c9c02ce349cf1aaf" + }, + { + "rel": "item", + "href": "./BF34_10000_0201.json", + "type": "application/json", + "file:checksum": "1220056fa55818a8e2f5b85a644d77779229b490694925c61dbd2d5d502e29cb5696" + }, + { + "rel": "item", + "href": "./BF34_10000_0202.json", + "type": "application/json", + "file:checksum": "12204e43aea2e6ecf4e2c2e25602b2254b90a5744b70186ee8055021b199675992d2" + }, + { + "rel": "item", + "href": "./BF34_10000_0203.json", + "type": "application/json", + "file:checksum": "122014adcfbec914ed1e0246bc4baa8515d1150fd99b9820199739acfd09174b37c0" + }, + { + "rel": "item", + "href": "./BF34_10000_0204.json", + "type": "application/json", + "file:checksum": "1220977345d1a5e68e365b3786991600a4779e98ef3d64ac554dde5cf361f73f1442" + }, + { + "rel": "item", + "href": "./BF34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220e45622451fdc9242c25fc09e75e6a089f2053235140ee04dcd3a4c531bf312aa" + }, + { + "rel": "item", + "href": "./BF34_10000_0301.json", + "type": "application/json", + "file:checksum": "12209edc4f50687e17bcd129546cb58e8f2ce1e335a92fcd00ebe7daaa309c645cf1" + }, + { + "rel": "item", + "href": "./BF34_10000_0302.json", + "type": "application/json", + "file:checksum": "1220fe4544fea6fb2f4baeaf34afedaa75bf18c8de502963224e91e411377a618a81" + }, + { + "rel": "item", + "href": "./BF34_10000_0303.json", + "type": "application/json", + "file:checksum": "1220da92e8d3ccf20d9165158718b5a8580a4747ef4d8a1f060470422ffbe72b0ef8" + }, + { + "rel": "item", + "href": "./BF34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220f3c44fdd0bd84093b435c5fd72af8b3bd934974bafda7d4d8b18e44ca49cdbbf" + }, + { + "rel": "item", + "href": "./BF34_10000_0305.json", + "type": "application/json", + "file:checksum": "1220ed8854026d599d7dabfe9698791650b41f7562d498373ce289dad36f5a68b65a" + }, + { + "rel": "item", + "href": "./BF34_10000_0401.json", + "type": "application/json", + "file:checksum": "1220e807a1378296ed6fa86e091a71e5134fa6027a82eafbefe0d7b22ca6f440e2d4" + }, + { + "rel": "item", + "href": "./BF34_10000_0402.json", + "type": "application/json", + "file:checksum": "12206d596edbcd5a2e7f3bd3975d42887dacfd7cdeb32045c7e2c55de5e7dacac1c8" + }, + { + "rel": "item", + "href": "./BF34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220b7555f69e16e7ed697885926b8239d9d5f9cb792af9fdb61a5f96471190bea9e" + }, + { + "rel": "item", + "href": "./BF34_10000_0404.json", + "type": "application/json", + "file:checksum": "122080b21a626168ceb69fd01a0e392269325094a756f4e88a3f8ce36114a2c525cd" + }, + { + "rel": "item", + "href": "./BF34_10000_0405.json", + "type": "application/json", + "file:checksum": "122046990af87fa20442e61d0d07e7c587d371db3f88150ea90607526c7e5563bcfc" + }, + { + "rel": "item", + "href": "./BF34_10000_0501.json", + "type": "application/json", + "file:checksum": "12205070a6e9c9ab806e14b1f0e4ff3060e3a78ab1268a46e1cfaac0da862ea40c61" + }, + { + "rel": "item", + "href": "./BF34_10000_0502.json", + "type": "application/json", + "file:checksum": "1220134aabcf5fb68988d55f7c32048ff8a62d347167bebab883ae84771a291206cf" + }, + { + "rel": "item", + "href": "./BF34_10000_0504.json", + "type": "application/json", + "file:checksum": "122076cbae9f094104753eead0f265963bc457ce6c4df41104157e524d4215504eba" + }, + { + "rel": "item", + "href": "./BF34_10000_0505.json", + "type": "application/json", + "file:checksum": "12208e4d51a8a891d33e999b4846c8c9bb34fef696a8582855c98ecc33a2dac74a31" + }, + { + "rel": "item", + "href": "./BF35_10000_0101.json", + "type": "application/json", + "file:checksum": "12206fb1315b2eccadf2b190411020f44ca8fb54acc9cf03dbd5ce0064e57bbca8bc" + }, + { + "rel": "item", + "href": "./BF35_10000_0102.json", + "type": "application/json", + "file:checksum": "122030868bf1fe1c02477708fd6a6ff249bf93f4295cf796dc54fa2acc20b113c013" + }, + { + "rel": "item", + "href": "./BF35_10000_0103.json", + "type": "application/json", + "file:checksum": "122049bd3479ec7e8e79949770d1699179061edcaf36c37a43208f032867159756d8" + }, + { + "rel": "item", + "href": "./BF35_10000_0104.json", + "type": "application/json", + "file:checksum": "12202c41fb19c544c2b128494cf2f0efa807bcc3b82547b8f120fd2b8623a8cbcbe3" + }, + { + "rel": "item", + "href": "./BF35_10000_0105.json", + "type": "application/json", + "file:checksum": "12209fa2541837492586ee303c109ec0c2d461aa0c0c8f9f41c4b789daa0bb84661b" + }, + { + "rel": "item", + "href": "./BF35_10000_0201.json", + "type": "application/json", + "file:checksum": "122097081d88a2e2658f505c35f118e7fb37e242a9d23c2b667e7202f9ccddb0d5ca" + }, + { + "rel": "item", + "href": "./BF35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220256b18eac2fa77dbe435356239a439ed3cae76d47836c929378d411c3c5a7e08" + }, + { + "rel": "item", + "href": "./BF35_10000_0203.json", + "type": "application/json", + "file:checksum": "1220c99ffda7dfa72be6cec559fd4a25888d587ddcf6af58f5b563c4d2a340ef0968" + }, + { + "rel": "item", + "href": "./BF35_10000_0204.json", + "type": "application/json", + "file:checksum": "122028d875c964c826510b4808509b06ec68d89052c7c75cea807aa816c674be8888" + }, + { + "rel": "item", + "href": "./BF35_10000_0205.json", + "type": "application/json", + "file:checksum": "122021cc6e6e834a5cc4216ac43e10f4c573a0e4008ccccdec4a656c62a0eaa9f71c" + }, + { + "rel": "item", + "href": "./BF35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220a247d8e911614af8c895c6ce66b08f2910a7f57ead7e2ab50dc177f7a7cbc307" + }, + { + "rel": "item", + "href": "./BF35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220fcb10e525264ae82bcf0d8a3d3b6e5fa63c7afe525fc8d6106b663cbf6207982" + }, + { + "rel": "item", + "href": "./BF35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220f90b0ef517240de57c8aea363cf45954ebf17efc6c441b97f348bdb92969a25e" + }, + { + "rel": "item", + "href": "./BF35_10000_0304.json", + "type": "application/json", + "file:checksum": "122014dac1a760dc6ad8471fb4adc1d7e6cfb52d7bfd41ecc932015172cee62d5617" + }, + { + "rel": "item", + "href": "./BF35_10000_0305.json", + "type": "application/json", + "file:checksum": "1220ba473762b779abc717ec039a48fd4cd7da026df9e956454fedd065e2bafd0bdb" + }, + { + "rel": "item", + "href": "./BF35_10000_0401.json", + "type": "application/json", + "file:checksum": "1220a5fbc8cf1f829a358df4f6fb0eac40a3a30acedab2a3fd23d387588aeadda0c2" + }, + { + "rel": "item", + "href": "./BF35_10000_0402.json", + "type": "application/json", + "file:checksum": "1220f4682caf32ced5c48c1e441271d4146952a89aec0ef0982725da8aa978dc7351" + }, + { + "rel": "item", + "href": "./BF35_10000_0403.json", + "type": "application/json", + "file:checksum": "12208797fd3af743f9682aabf17d700b00c88eed253bf845da9c7820ee67677cbe7a" + }, + { + "rel": "item", + "href": "./BF35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220abbef249d21f404142ff03374e2119acbb6c11b8559e5b5b66af431a45ad6fe3" + }, + { + "rel": "item", + "href": "./BF35_10000_0405.json", + "type": "application/json", + "file:checksum": "12203c85a111ce6d90f3a7439a11f3a16071b1f9ef495aceebd2233e0d38fe8b624a" + }, + { + "rel": "item", + "href": "./BF35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220d02f0b5bb19f8a186f4effdb9e17125fb1461da94a0c0a5cae8d729e709fd957" + }, + { + "rel": "item", + "href": "./BF35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220afbd5b0131f77dc42c25626f23fc8cf3db60281de03e12e83ae166e4b46a4a68" + }, + { + "rel": "item", + "href": "./BF35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220aafd23c2337ec543ab175de7a27302997e703b810829fb66197fd61c4cc37edd" + }, + { + "rel": "item", + "href": "./BF35_10000_0504.json", + "type": "application/json", + "file:checksum": "122088e8a62932f55eff92e2782021bd9e14ba8d4b9b1cc43e1c5d1214b853a4bba1" + }, + { + "rel": "item", + "href": "./BF35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220a2fb0053c1c6a4848cef9c67106bbf6017c60f3db78ef7ff9ce2313169c0e1d4" + }, + { + "rel": "item", + "href": "./BF36_10000_0101.json", + "type": "application/json", + "file:checksum": "12206954b99b87825ebe7259e094f320d50c3328d894dcfe46449d840cc3d12ad732" + }, + { + "rel": "item", + "href": "./BF36_10000_0102.json", + "type": "application/json", + "file:checksum": "12206f83168de92116688bc95c3edaf60508e68eb8fc6c3a5374f8a6d6b931b3f5b1" + }, + { + "rel": "item", + "href": "./BF36_10000_0103.json", + "type": "application/json", + "file:checksum": "12203d1bbec721d28987308e9cb6c7cbb209ce3e4080981c98c64b34163f2029cef5" + }, + { + "rel": "item", + "href": "./BF36_10000_0104.json", + "type": "application/json", + "file:checksum": "12200f3475f8c62bebf4089182031efb29079158e45ef1410cbcfafa489e785867ca" + }, + { + "rel": "item", + "href": "./BF36_10000_0105.json", + "type": "application/json", + "file:checksum": "1220f551ef80482a5f30e9da800149aa79155201525ac5840b86fbe17f6e863baa39" + }, + { + "rel": "item", + "href": "./BF36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220999b492450e5cf3b51446743f6ea52096067046f66fe72395a57cc9525ad41dc" + }, + { + "rel": "item", + "href": "./BF36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220a5e05c074c3cc718e94f6e85bb085a6545b429c54363c18117ced78f3c5e76ad" + }, + { + "rel": "item", + "href": "./BF36_10000_0203.json", + "type": "application/json", + "file:checksum": "12205d6fad7fd89c91cc5cab296c0d4e093d33670901a332466624ec026727266f26" + }, + { + "rel": "item", + "href": "./BF36_10000_0204.json", + "type": "application/json", + "file:checksum": "12204462909e1bc40c291b1fa1133b69870f763f380df03fd3d8dc74651c5d38041e" + }, + { + "rel": "item", + "href": "./BF36_10000_0205.json", + "type": "application/json", + "file:checksum": "1220f7e48fa4d2b52fab0226dbe89b49c1a57b4dc1ea7b8172f812bb7d2d902d06bd" + }, + { + "rel": "item", + "href": "./BF36_10000_0301.json", + "type": "application/json", + "file:checksum": "122061b6d14882aa6b6643ff9f0315697c77a47c53dddf24248c4960eb9752c678d3" + }, + { + "rel": "item", + "href": "./BF36_10000_0302.json", + "type": "application/json", + "file:checksum": "1220964fdfb518a0d50d2bbdb76e0afe51147e512e54161760af301197b8cd8bf7cb" + }, + { + "rel": "item", + "href": "./BF36_10000_0303.json", + "type": "application/json", + "file:checksum": "12202c5e6b0fedcafb5d9da5d2af6751e118082e077ce33c47ca92fd2047248c743a" + }, + { + "rel": "item", + "href": "./BF36_10000_0304.json", + "type": "application/json", + "file:checksum": "122047d79dee287f1b98444e28e93552bd30d5ceb62dcfa14bd821881181ba9deb0c" + }, + { + "rel": "item", + "href": "./BF36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220250ae25c51f232e58e52a4c51d5715426957047671d090da29b376b69bbdca32" + }, + { + "rel": "item", + "href": "./BF36_10000_0402.json", + "type": "application/json", + "file:checksum": "12208f7a0359817cd40a4dab31436cefbd5b7a7209439f167a9fec1412b7e5265472" + }, + { + "rel": "item", + "href": "./BF36_10000_0403.json", + "type": "application/json", + "file:checksum": "1220726ca59f2f65b1e0ca542a709c2fcbca8caa2c32df2af3bb98c9fb7c86fed60f" + }, + { + "rel": "item", + "href": "./BF36_10000_0404.json", + "type": "application/json", + "file:checksum": "122043fe635957ac02d4964e03fa043939ef38b0c6709713510481086ec8dcb3997e" + }, + { + "rel": "item", + "href": "./BF36_10000_0405.json", + "type": "application/json", + "file:checksum": "12207448eb75861ce1010586f87e21e604a7c522ec70b9f98c4c819ec97c8238384d" + }, + { + "rel": "item", + "href": "./BF36_10000_0501.json", + "type": "application/json", + "file:checksum": "12202bbf5a1c9b243e55483473d88ca9337a409317b61c9f59c39e75d8c19d47664e" + }, + { + "rel": "item", + "href": "./BF36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220e23a82946b814b989456c9f68740e33dbf416c24ef13e5a17e2f13565f9f1a89" + }, + { + "rel": "item", + "href": "./BF36_10000_0503.json", + "type": "application/json", + "file:checksum": "12202a2b195f37c862443a2d3308f839298771171cda0d373caf944f827092be0864" + }, + { + "rel": "item", + "href": "./BF36_10000_0504.json", + "type": "application/json", + "file:checksum": "1220555cf71958728d64a22f05dc1287ef545560b96ba14b88c61efcc92267cec809" + }, + { + "rel": "item", + "href": "./BF36_10000_0505.json", + "type": "application/json", + "file:checksum": "1220789b0bf2d7684f436e1b2c07414ff445dd67b7b4123d894a3163913d5cd3cefa" + }, + { + "rel": "item", + "href": "./BF37_10000_0501.json", + "type": "application/json", + "file:checksum": "1220b65a0a7b1622f59a27d243adbe8734518153d5499bb2050de9290ebfd641da55" + }, + { + "rel": "item", + "href": "./BF37_10000_0502.json", + "type": "application/json", + "file:checksum": "12209f3ebe5495b09ce9b55307bcf5c2c88c132a493c991e7c3203b7d760c6f7f157" + }, + { + "rel": "item", + "href": "./BF37_10000_0503.json", + "type": "application/json", + "file:checksum": "1220e43c92414b37b78f8506afaeef3b66cccc383bd7298772c979669554c14fc25f" + }, + { + "rel": "item", + "href": "./BF37_10000_0504.json", + "type": "application/json", + "file:checksum": "1220118c6c7f55ece1838d2d7e6eb138b8267473c43b2bc0bd5f907a5c9987746a47" + }, + { + "rel": "item", + "href": "./BF37_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e44ade629c0fc76cda1208fd6174d623a2acc12ba9aa2c2d90a3fb9eb791ffc3" + }, + { + "rel": "item", + "href": "./BF38_10000_0501.json", + "type": "application/json", + "file:checksum": "122093c9e44cfe301092affca1ba1535fb8aedc39882edb13961355698dbd178767f" + }, + { + "rel": "item", + "href": "./BF38_10000_0502.json", + "type": "application/json", + "file:checksum": "1220624ba8f4a1068da9d4ec4e3952e1dcf0b126d989fea72011251665c26075096e" + }, + { + "rel": "item", + "href": "./BG31_10000_0102.json", + "type": "application/json", + "file:checksum": "122083c2349b79b24f26220c96e36aeefbbe68870cd1f306149c01300aac0e59ee0b" + }, + { + "rel": "item", + "href": "./BG31_10000_0103.json", + "type": "application/json", + "file:checksum": "1220fc1a1626e72f828dc7c72f8f264075d2e3852816146e6d56c45658989b7dee47" + }, + { + "rel": "item", + "href": "./BG31_10000_0104.json", + "type": "application/json", + "file:checksum": "12205144cadd9d3e17d6325fda01c19f985d7a0716b40abee663a5cb7b4b57f689b3" + }, + { + "rel": "item", + "href": "./BG31_10000_0105.json", + "type": "application/json", + "file:checksum": "1220144254898833649686cd540bf10c7aad0ed9f568ebdbd0a9486a9e5d1b653375" + }, + { + "rel": "item", + "href": "./BG31_10000_0202.json", + "type": "application/json", + "file:checksum": "122042429902f00b4a7663888b7ecc774823543612f3a7b8621e1ba95a4e7de35edc" + }, + { + "rel": "item", + "href": "./BG31_10000_0203.json", + "type": "application/json", + "file:checksum": "122047ba989cc925fde3f413ba0c52073d4a40ff408544e408ad6aa0cd267d0209be" + }, + { + "rel": "item", + "href": "./BG31_10000_0204.json", + "type": "application/json", + "file:checksum": "1220b308d6c9ca0521c8a210b79cea8372790528cbff93cbd6335be45cfcd1b599d9" + }, + { + "rel": "item", + "href": "./BG31_10000_0205.json", + "type": "application/json", + "file:checksum": "1220844e8f2a016e17f0f07985afeac87a80c54189bfb732549cf5fb1c3b8676dbdd" + }, + { + "rel": "item", + "href": "./BG31_10000_0302.json", + "type": "application/json", + "file:checksum": "122042d80bd0c4a48c6dd208a8c6db32e21ad184833497fb00df7283bd3b74bd9f9c" + }, + { + "rel": "item", + "href": "./BG31_10000_0303.json", + "type": "application/json", + "file:checksum": "1220e909b2a78b77cdbbb741ccd33e92d17003d9c426c46107eb1512af42cda91449" + }, + { + "rel": "item", + "href": "./BG31_10000_0304.json", + "type": "application/json", + "file:checksum": "12206b4ba6dba04fe368be7462e770276962b8de1b2b635e03c9846d9ff58e875ca2" + }, + { + "rel": "item", + "href": "./BG31_10000_0305.json", + "type": "application/json", + "file:checksum": "12209ef0715307126d021354b4023b0a494e6639be3aad22712d129fa3c9cb557215" + }, + { + "rel": "item", + "href": "./BG32_10000_0101.json", + "type": "application/json", + "file:checksum": "122064b706afcc4850424ec8f057296c8be426c717e5a25d08468b0ecbf94f77614f" + }, + { + "rel": "item", + "href": "./BG32_10000_0102.json", + "type": "application/json", + "file:checksum": "1220bcccde32e1ad73c2192511f3eee199fc9d0d7d0529802c38c07b2d2c8ea63552" + }, + { + "rel": "item", + "href": "./BG32_10000_0103.json", + "type": "application/json", + "file:checksum": "12203f54a44121ed723840196ad8b6c90fa4c192c4c51b9a6389b4772797e53ca62a" + }, + { + "rel": "item", + "href": "./BG32_10000_0104.json", + "type": "application/json", + "file:checksum": "122000c2a3d3db7b6551838ba71474753a5aa5e7cf5b36e45663d1fbf7da1e28ca58" + }, + { + "rel": "item", + "href": "./BG32_10000_0105.json", + "type": "application/json", + "file:checksum": "12205adeda234db00682c8d945dd790053846e51c25e1f0fb345afe03aed8e51cc09" + }, + { + "rel": "item", + "href": "./BG32_10000_0201.json", + "type": "application/json", + "file:checksum": "1220b9be022aecf5df3a833d783e2eb135494984c6449977ae952c41f6e2fcaa1c8e" + }, + { + "rel": "item", + "href": "./BG32_10000_0202.json", + "type": "application/json", + "file:checksum": "1220cf8af8329b3a0a0e4ff122fe489fbc986b93bfaf8d726571e07471cfdc2758cc" + }, + { + "rel": "item", + "href": "./BG32_10000_0203.json", + "type": "application/json", + "file:checksum": "1220c10cc449bf9a9b5e5de991bc0481a35221b5e53e1cd6e5aef9005b256f9995da" + }, + { + "rel": "item", + "href": "./BG32_10000_0204.json", + "type": "application/json", + "file:checksum": "1220882e854a33a3b9d2561696471aa64805417e2ca8a9e583e1adfe8d1de22050df" + }, + { + "rel": "item", + "href": "./BG32_10000_0205.json", + "type": "application/json", + "file:checksum": "12208a8f78f9ee98f79675f4bf68d4c4d6d32e3515b0454b2491bc5307a7891ad5b3" + }, + { + "rel": "item", + "href": "./BG32_10000_0301.json", + "type": "application/json", + "file:checksum": "12204c4177d8d56541ec667ecf9a54090e06653722a01d67f58c5a02059884d6b578" + }, + { + "rel": "item", + "href": "./BG32_10000_0302.json", + "type": "application/json", + "file:checksum": "1220541b5e845cc04d292910d0bb2cbd79c25a7250caadcc29314684b8ada115f27c" + }, + { + "rel": "item", + "href": "./BG32_10000_0303.json", + "type": "application/json", + "file:checksum": "12204960a5fd65358c02f9680b1ba81575c06dadf1fd9790ba27a42f93b9af0c4768" + }, + { + "rel": "item", + "href": "./BG32_10000_0304.json", + "type": "application/json", + "file:checksum": "12201ced7e7053e598268247fd56ad97b2dd0ed390fe5d74764fa4c164bdef3ecbc0" + }, + { + "rel": "item", + "href": "./BG32_10000_0401.json", + "type": "application/json", + "file:checksum": "1220a8f431c54700d8cc57d5c91a066faf698f1ff874a9339008b5752f2400b75189" + }, + { + "rel": "item", + "href": "./BG32_10000_0402.json", + "type": "application/json", + "file:checksum": "1220fceb1b109a8b394e02d9247cf13f110b2a3e8baa274e6861913221cde3a4a79a" + }, + { + "rel": "item", + "href": "./BG33_10000_0101.json", + "type": "application/json", + "file:checksum": "1220f468e9f1e00bf0b403936776e1b29ed7ee5e9b27e66f2b6d56cc0063f9383d77" + }, + { + "rel": "item", + "href": "./BG33_10000_0102.json", + "type": "application/json", + "file:checksum": "1220d2271d635b628e3fa5669262246f7f14d6b144a336344764381ac640d05d1eac" + }, + { + "rel": "item", + "href": "./BG33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220dd5cfedd9ddea08a34a9fb3aae073edb74aab1ca5e68485f436d5d3c0c5febf5" + }, + { + "rel": "item", + "href": "./BG33_10000_0104.json", + "type": "application/json", + "file:checksum": "122021996e38e0df3b0a6e50885c21c82d78428156d93ec2bdadbcef9d9eb032a6b4" + }, + { + "rel": "item", + "href": "./BG33_10000_0105.json", + "type": "application/json", + "file:checksum": "1220d54132d7ba925ba0426e5caf55e0cf99aee90b213147eea4ee106512cde80ed7" + }, + { + "rel": "item", + "href": "./BG33_10000_0201.json", + "type": "application/json", + "file:checksum": "122021e6012ab4aec591f122bd9f21145b3ba0e78d6ebe932b8dac5af9de0ac118ef" + }, + { + "rel": "item", + "href": "./BG33_10000_0202.json", + "type": "application/json", + "file:checksum": "122028b2f5f379b8ae699eaede78a03beee114b42cbf66d73fb048b02457c5bb86f2" + }, + { + "rel": "item", + "href": "./BG33_10000_0203.json", + "type": "application/json", + "file:checksum": "122009b2d2c423844008546aa86c6ee3cf920ca5370c283007a5bc392952bb0c2645" + }, + { + "rel": "item", + "href": "./BG33_10000_0204.json", + "type": "application/json", + "file:checksum": "12205bfeb792d6122bb74b7756bfe4eaac99ea937a5d812d0c3930c993bbb8994862" + }, + { + "rel": "item", + "href": "./BG34_10000_0101.json", + "type": "application/json", + "file:checksum": "12201c8bf16bb0d872d59b360be4d8a78d45e54e4da780520f9029dd1c98811f3919" + }, + { + "rel": "item", + "href": "./BG34_10000_0105.json", + "type": "application/json", + "file:checksum": "1220c5ae3656f8c86d6414188dcfa84fbdb68b03b24bb86f1af780e47e10e2669f58" + }, + { + "rel": "item", + "href": "./BG34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220aac3952dee018cb49fd6367487c7622d8b59a605bd7fd3a14191308b423b795d" + }, + { + "rel": "item", + "href": "./BG34_10000_0304.json", + "type": "application/json", + "file:checksum": "122026684d000f3a0330bb679c5dfde1292c98879cc4274f03950cd4923e0451642b" + }, + { + "rel": "item", + "href": "./BG34_10000_0305.json", + "type": "application/json", + "file:checksum": "122029317657474fb15ea8d5c6ca63dd0ad8e804f51681c534f9f24c2d8d59cf915a" + }, + { + "rel": "item", + "href": "./BG34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220ebca5979bbd9dac09ad13c64e38d4a898104254e53a29df839b88b56d990612c" + }, + { + "rel": "item", + "href": "./BG34_10000_0405.json", + "type": "application/json", + "file:checksum": "1220eb08734d0c30f8f994e89e87da27538158cd7711d75fbd3ce201c3f0a79476ff" + }, + { + "rel": "item", + "href": "./BG34_10000_0504.json", + "type": "application/json", + "file:checksum": "12209440eaff16b7a3ea3a626b5b479341145e411c46509c2843c1b5d338aa6efc6f" + }, + { + "rel": "item", + "href": "./BG34_10000_0505.json", + "type": "application/json", + "file:checksum": "12205e70a485558bc021191b96cc550f75c813b95636c32db7c03f2a522c7b7ff37e" + }, + { + "rel": "item", + "href": "./BG35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220b6755f1fd9d72f6efce0b2b52d7505681c22537458431ec3505ae1d6a35ab68c" + }, + { + "rel": "item", + "href": "./BG35_10000_0102.json", + "type": "application/json", + "file:checksum": "122095734300b9f82177e3b374acc0200ac17b9a8b3e079fa99c8aed7e1f9d12f8f1" + }, + { + "rel": "item", + "href": "./BG35_10000_0103.json", + "type": "application/json", + "file:checksum": "122014aee6ffecbb08664046c34fad6bc9fb0d793669bdd19a26b76d95456085193d" + }, + { + "rel": "item", + "href": "./BG35_10000_0104.json", + "type": "application/json", + "file:checksum": "12209a0341decb5eaae4d5e9ada12dd5c573efe36d3968125a0f0bcedb9e2ecd9c5b" + }, + { + "rel": "item", + "href": "./BG35_10000_0105.json", + "type": "application/json", + "file:checksum": "12204200a5b41b46857501011c068c2135e09c6476fe2f9e4c28aad33367c5651c7c" + }, + { + "rel": "item", + "href": "./BG35_10000_0201.json", + "type": "application/json", + "file:checksum": "1220a1284c27c0001ac17af84699d6f75b5d0cbd23d36e6f6db1ccd8805a2f27adbd" + }, + { + "rel": "item", + "href": "./BG35_10000_0202.json", + "type": "application/json", + "file:checksum": "122000108aa953c0e7a972a1e5008f0b8680fd047ced50def5eee922d8874b512aed" + }, + { + "rel": "item", + "href": "./BG35_10000_0203.json", + "type": "application/json", + "file:checksum": "12209af9b7078269199fc1e02bb43e8167e2e3e60b679a251f175033817ceab0e58f" + }, + { + "rel": "item", + "href": "./BG35_10000_0204.json", + "type": "application/json", + "file:checksum": "12201325fc6cc33b3fac111302fa88e8e63561ded2453ff95f06583edc1277f30e59" + }, + { + "rel": "item", + "href": "./BG35_10000_0205.json", + "type": "application/json", + "file:checksum": "12200e503d3b8a968f56bf1d79ae32771ea786496ff7908ae76a9dd20110de8d734b" + }, + { + "rel": "item", + "href": "./BG35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220e8ae9cf8ef7e92602a8d929663f77469bf73c67c0c627a8ae8368edca14069be" + }, + { + "rel": "item", + "href": "./BG35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220d1e20f7c8adee4c08d6c2c0990ab16fc54565f9fbb25dd4ed9639d59b0356f2b" + }, + { + "rel": "item", + "href": "./BG35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220f10e04143c60fb2ed8d69aa42ce5c6af4af1467ec1ae99a32bd3395a29997b40" + }, + { + "rel": "item", + "href": "./BG35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220a45e0193a30c1720803ef92b10c8d1c59fa66c13a953a4263e14bd5fff79cc32" + }, + { + "rel": "item", + "href": "./BG35_10000_0305.json", + "type": "application/json", + "file:checksum": "12205c72abba06573da7ea3cbb2534158a29e18fb4570ad7c9ae45b45e3dc53d2d29" + }, + { + "rel": "item", + "href": "./BG35_10000_0401.json", + "type": "application/json", + "file:checksum": "12204af244c2ef2b445a7a20b3599d3e8960214cb6419681fa981afe30ec6b2cc867" + }, + { + "rel": "item", + "href": "./BG35_10000_0402.json", + "type": "application/json", + "file:checksum": "122060ca12840dbe7d7fdfb88aa79521df8c820b5a389c7f3ac8b284630351df4907" + }, + { + "rel": "item", + "href": "./BG35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220c85076e39f8e76782f049ba9e0d825d2b65be669acbd176cabaf30f93b807218" + }, + { + "rel": "item", + "href": "./BG35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220cc0088ebfa5e81719f7a002666ea2ed04308687824b873c5c04880ba96803cdb" + }, + { + "rel": "item", + "href": "./BG35_10000_0501.json", + "type": "application/json", + "file:checksum": "122015ef8b69f2156bfb620411865e7a9b72d6114621be452a807c4ce7d5f68b0b5f" + }, + { + "rel": "item", + "href": "./BG35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220413b8d26f9d56841e027d2713e219518e3774bab44cb9d768a1480e69d4f1446" + }, + { + "rel": "item", + "href": "./BG35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220ad4ad15e67ae0543a8149539d4645ea8c06784ae9c95499e4b5a23d6bc476108" + }, + { + "rel": "item", + "href": "./BG35_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c99f6ca9f9138753d77796479ee2fad86f883215930bf613c38a536753bbfd6a" + }, + { + "rel": "item", + "href": "./BG36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220d273c67dfc70b99d47f207a548c2d660b8f0da45ef17b81ede660ad384db6c0b" + }, + { + "rel": "item", + "href": "./BG36_10000_0102.json", + "type": "application/json", + "file:checksum": "1220148b43cbd3a1244b600e39bfe5df020534f009f82f615d5a12a2283d38932048" + }, + { + "rel": "item", + "href": "./BG36_10000_0103.json", + "type": "application/json", + "file:checksum": "12201f217fdc43beea2560a1cfe34d0e09c8f8bacc526611e55f6dadbdcb94f19732" + }, + { + "rel": "item", + "href": "./BG36_10000_0104.json", + "type": "application/json", + "file:checksum": "12200699cb35534bd3835b52acc47f0d191b8f78e19683bbdfd040bb097beab2f869" + }, + { + "rel": "item", + "href": "./BG36_10000_0105.json", + "type": "application/json", + "file:checksum": "1220f2e2586138b28f453bda1b3454128b0230162ed9d50a16949ab6fd96dc5934f8" + }, + { + "rel": "item", + "href": "./BG36_10000_0201.json", + "type": "application/json", + "file:checksum": "122058c758a689a9d4830613bc0ac607f22f0642bb97e21ba2d80950583c45af7c6d" + }, + { + "rel": "item", + "href": "./BG36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220957540e51f8194e39efeb33a54c3d300c78c1f92a5d2ef57532febc9d56af73b" + }, + { + "rel": "item", + "href": "./BG36_10000_0203.json", + "type": "application/json", + "file:checksum": "12203ce951ff694bc47f6d7392eb6d16a0183bc2f5b27e0e63ecc50177ff563312b1" + }, + { + "rel": "item", + "href": "./BG36_10000_0204.json", + "type": "application/json", + "file:checksum": "1220a01332eb2a0ca8ac219c44badc52caa37835fde57421f47dfd6f1252becb72b9" + }, + { + "rel": "item", + "href": "./BG36_10000_0205.json", + "type": "application/json", + "file:checksum": "1220d93fe0f6abeeb9dbab62003bf76178e07edfa7b8d5b27fe6a27d464bbd1c8bf6" + }, + { + "rel": "item", + "href": "./BG36_10000_0301.json", + "type": "application/json", + "file:checksum": "1220bd10a250e3958ea3cc67e82749957069e8864a0717e7546a9511927fc73365bb" + }, + { + "rel": "item", + "href": "./BG36_10000_0302.json", + "type": "application/json", + "file:checksum": "1220b1985a4b62b6536feb87d33fa2b854311f04fa3c1fb65ada016f6de9f18533f5" + }, + { + "rel": "item", + "href": "./BG36_10000_0303.json", + "type": "application/json", + "file:checksum": "12207717d9b46e7b8016aa5db9ba76119c53e8edff9bdc6ff235841feba7b4287be6" + }, + { + "rel": "item", + "href": "./BG36_10000_0304.json", + "type": "application/json", + "file:checksum": "1220fd12cdf690f30ec28023126e4377bc91934e4ebf173f2be35316addc3f9a9d3b" + }, + { + "rel": "item", + "href": "./BG36_10000_0305.json", + "type": "application/json", + "file:checksum": "1220abab75546a1f7018f25aceba7964a36d4ccf7b6bf6e9063da26ba5976cedd8d4" + }, + { + "rel": "item", + "href": "./BG36_10000_0402.json", + "type": "application/json", + "file:checksum": "1220cafcb097f1c37b6b700bbf48b6a0745ec028a444f2764b1e77699b66ed307305" + }, + { + "rel": "item", + "href": "./BG36_10000_0403.json", + "type": "application/json", + "file:checksum": "1220da8253b663c1d8e678412920be9c939ab03e5855fe9acd74d76ca052c71ad5bf" + }, + { + "rel": "item", + "href": "./BG36_10000_0404.json", + "type": "application/json", + "file:checksum": "1220a167a6f0fc144e814c3ae7f90b0f834220e4b1db2be269be26c710dce37670f8" + }, + { + "rel": "item", + "href": "./BG36_10000_0405.json", + "type": "application/json", + "file:checksum": "122048bc1302ac7e089ec5099a54efce987aaafc55ca961739ab6936aa2f50ab2fc5" + }, + { + "rel": "item", + "href": "./BG36_10000_0501.json", + "type": "application/json", + "file:checksum": "12204c8d08fd8adcebcebb4d56d3f2a3c9b7e6ef5ab18cbf954f289cb77f138e87fa" + }, + { + "rel": "item", + "href": "./BG36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220ec8aa53843d387b34d994d448c3ff1c36f9fe8706337c5f827e8804072abb17b" + }, + { + "rel": "item", + "href": "./BG36_10000_0503.json", + "type": "application/json", + "file:checksum": "1220cb3cdd290dfb0de2aa593fa8063616330fd8fd29c6d46e8f50174ca1008de0af" + }, + { + "rel": "item", + "href": "./BG36_10000_0504.json", + "type": "application/json", + "file:checksum": "1220134414bba60d2c3d3d8503fd82f240cd530b1f3c7c458c47f958c190c5c54bb9" + }, + { + "rel": "item", + "href": "./BG36_10000_0505.json", + "type": "application/json", + "file:checksum": "1220cde7b9d2673e412df0e54d850a091a7658e026767c6a7d7acbab26202964c890" + }, + { + "rel": "item", + "href": "./BG37_10000_0101.json", + "type": "application/json", + "file:checksum": "122026a1eb5f01b9e7f55219390e5b793f67a47a93d5b6b0eb97d63db53f82c7efe8" + }, + { + "rel": "item", + "href": "./BG37_10000_0102.json", + "type": "application/json", + "file:checksum": "122098e8866533553dcd116d016f45070786ec642532d64e6ac480fb3fc2a3ad9e55" + }, + { + "rel": "item", + "href": "./BG37_10000_0103.json", + "type": "application/json", + "file:checksum": "122009aa9ee9096719a3b63c4e46b288a720f09c08e1df45cc79abd95320497b00d7" + }, + { + "rel": "item", + "href": "./BG37_10000_0104.json", + "type": "application/json", + "file:checksum": "1220407194b9bce48aabeb147f0c1d779d4de8f0edd12e5f01362304abd1370fc9fc" + }, + { + "rel": "item", + "href": "./BG37_10000_0105.json", + "type": "application/json", + "file:checksum": "122028310cce9e5c0b3a685f5dcddcb0d776dcd8a9c98c71aeaccafa7dbd194107bc" + }, + { + "rel": "item", + "href": "./BG37_10000_0201.json", + "type": "application/json", + "file:checksum": "1220dac693aac1f01cc03d26272b7c5a20c35f4ce17340e5723a5ab0f12b65ea1536" + }, + { + "rel": "item", + "href": "./BG37_10000_0202.json", + "type": "application/json", + "file:checksum": "1220cc49e9d485c362143750ad5cb98925ec0c25d977a9a8e0ef8a2ba272321375dd" + }, + { + "rel": "item", + "href": "./BG37_10000_0203.json", + "type": "application/json", + "file:checksum": "1220a86a3f1af4df2b0a635f15a06d0180fd29712f751753db7fe69723d51c23b69e" + }, + { + "rel": "item", + "href": "./BG37_10000_0204.json", + "type": "application/json", + "file:checksum": "1220cd8e82c55fed0366af5212ca949c10ef8ad6cc50a7923f0e0e7991c5c0b45884" + }, + { + "rel": "item", + "href": "./BG37_10000_0205.json", + "type": "application/json", + "file:checksum": "1220a203bfed23ac2cb32a3126c326cfe5f1026bf25c392641e5cd347d0ef80f296d" + }, + { + "rel": "item", + "href": "./BG37_10000_0301.json", + "type": "application/json", + "file:checksum": "12207c73980225cb6b16409bbf9c076c3c855dcff2f05ac3d8fe9affb1f661fe1ee8" + }, + { + "rel": "item", + "href": "./BG37_10000_0302.json", + "type": "application/json", + "file:checksum": "12202f67d599e04a85524f70fa06613dad93f15e7241d005d3183748bc80560e9755" + }, + { + "rel": "item", + "href": "./BG37_10000_0303.json", + "type": "application/json", + "file:checksum": "1220e44cfcb8494ad89e339e812ab8d4406eba30e2aa585605de6def96033487f3c7" + }, + { + "rel": "item", + "href": "./BG37_10000_0304.json", + "type": "application/json", + "file:checksum": "12200265d40ac58636033371bbf5332881f4b1040c1695fded82253713d1b9f86ce3" + }, + { + "rel": "item", + "href": "./BG37_10000_0305.json", + "type": "application/json", + "file:checksum": "12201961d090c2bf8c1947e7093a23fc78c9ece910d91b3616b682d2344f24c6b71e" + }, + { + "rel": "item", + "href": "./BG37_10000_0401.json", + "type": "application/json", + "file:checksum": "1220c7c2a6a3bed653a868d0d9d9843c28e16d2444c89077553221f4e37ce662f269" + }, + { + "rel": "item", + "href": "./BG37_10000_0402.json", + "type": "application/json", + "file:checksum": "1220b3deecdfdb4431a5049f47b71fed84ac6e48f7756cd11f3fb162fa2d278af7c5" + }, + { + "rel": "item", + "href": "./BG37_10000_0403.json", + "type": "application/json", + "file:checksum": "12204c8701c444e741f3b5521e5fead9c529fd274e11a793c9b64c5012d64c129644" + }, + { + "rel": "item", + "href": "./BG37_10000_0404.json", + "type": "application/json", + "file:checksum": "122064fc931e953f02a9141f999d7684f9fb5feb11e8389220d01c4d23bd3495f0f2" + }, + { + "rel": "item", + "href": "./BG37_10000_0405.json", + "type": "application/json", + "file:checksum": "12204bbd2c4145a906de5976c9d8982684fd7356f1d3cbafb1f4b1ef8a054b3c6fec" + }, + { + "rel": "item", + "href": "./BG37_10000_0501.json", + "type": "application/json", + "file:checksum": "122021fc5afacdcfc6def1abfa4bef041ed612724e0cf5c6d89f0ee21534ca37aa84" + }, + { + "rel": "item", + "href": "./BG37_10000_0502.json", + "type": "application/json", + "file:checksum": "122051ad5a15e2bcefb98fddd6a7ea2cfb423bf46a2e51aa46a8c1dd46d63162a384" + }, + { + "rel": "item", + "href": "./BG37_10000_0503.json", + "type": "application/json", + "file:checksum": "122069cf6367319ee6d9947c401b63d73078e115f12579b76db6064de092e0b8fed1" + }, + { + "rel": "item", + "href": "./BG37_10000_0504.json", + "type": "application/json", + "file:checksum": "122097988fdc819fb3da0f2d1aa884f5f1ad11fedfc40b9af9f4d51632d0580fea1f" + }, + { + "rel": "item", + "href": "./BG37_10000_0505.json", + "type": "application/json", + "file:checksum": "122050c92b19f975a8d11c6b0909f662cd521a46125eebc65a38c281c55224174dff" + }, + { + "rel": "item", + "href": "./BG38_10000_0101.json", + "type": "application/json", + "file:checksum": "1220c1555464f5cc4190403007ad974bf54650f88b094488ac946c9bf24a91ca05c1" + }, + { + "rel": "item", + "href": "./BG38_10000_0102.json", + "type": "application/json", + "file:checksum": "12207ca4c491b474f3c06739dcad7281d90d27d5ef2e3def558fbedf56d65f91cbe5" + }, + { + "rel": "item", + "href": "./BG38_10000_0103.json", + "type": "application/json", + "file:checksum": "1220fd19c33776b8c67335c185cf09c638f20c28c468891a17e665de7ed49fddebc0" + }, + { + "rel": "item", + "href": "./BG38_10000_0201.json", + "type": "application/json", + "file:checksum": "1220faaea3d2d360037cd028d377952667c9bc1d044df793dc85eb131aa5bf90f2e1" + }, + { + "rel": "item", + "href": "./BG38_10000_0202.json", + "type": "application/json", + "file:checksum": "1220399ca8985b60ed4d142f0b3494bab881b1734f68de730fabb942d74cebb7bee1" + }, + { + "rel": "item", + "href": "./BG38_10000_0203.json", + "type": "application/json", + "file:checksum": "122087dd5aa72c095d65155e6b03daefadf1fc9df6cc6e9444105744a656be66beb5" + }, + { + "rel": "item", + "href": "./BG38_10000_0204.json", + "type": "application/json", + "file:checksum": "1220cbfeed995be361bb35624db324e524f80339f25926350dcda360a9e64e3ce976" + }, + { + "rel": "item", + "href": "./BG38_10000_0301.json", + "type": "application/json", + "file:checksum": "12205ccb2840863af3fc51415d4be7f4fe172fcd8a51812e0e006885a77787edad56" + }, + { + "rel": "item", + "href": "./BG38_10000_0302.json", + "type": "application/json", + "file:checksum": "1220fee86160bdbc3dd9647fbd02a60fb6a84a44793e627c0ea2097bfe04801da1f8" + }, + { + "rel": "item", + "href": "./BG38_10000_0303.json", + "type": "application/json", + "file:checksum": "122043bca538daf6c65742ab51e1db30e8d3d032c79d99dbcb2da8cb256b45c096b8" + }, + { + "rel": "item", + "href": "./BG38_10000_0304.json", + "type": "application/json", + "file:checksum": "122068fcde40eae4349d3a2ddcd38b0de77dd82dfb609c38900dd65cd95b6e5c1a62" + }, + { + "rel": "item", + "href": "./BG38_10000_0401.json", + "type": "application/json", + "file:checksum": "12206790e0a434d4938a7b9030d93f05c62fdcdf7d27faccfc2d84c60cd379683c04" + }, + { + "rel": "item", + "href": "./BG38_10000_0402.json", + "type": "application/json", + "file:checksum": "12204c2ec990910b13f4e4c7ed350baee670897b68f5b45c07b54e6efcdc22029e70" + }, + { + "rel": "item", + "href": "./BG38_10000_0403.json", + "type": "application/json", + "file:checksum": "1220efdc2b0075e1b10114351e06c2b2920dbe02e5e046c616d93fd3fe75401e582f" + }, + { + "rel": "item", + "href": "./BG38_10000_0404.json", + "type": "application/json", + "file:checksum": "12207674aed207a3aa6524126eec9933c5a673b87e6d517d26f416e8318f9b0df7df" + }, + { + "rel": "item", + "href": "./BG38_10000_0501.json", + "type": "application/json", + "file:checksum": "1220c56633fbd4afbacf14fe7218f4f0269b80b69351bfb5f4b4afb322c4e5aa475f" + }, + { + "rel": "item", + "href": "./BG38_10000_0502.json", + "type": "application/json", + "file:checksum": "1220ddfd86fe862711daf49ad5c80e288d64afe759b4ce5791ca46c99f8d5d4bbd90" + }, + { + "rel": "item", + "href": "./BG38_10000_0503.json", + "type": "application/json", + "file:checksum": "1220a84edca307b358273fdaa0f13d788322ae19925926081f5169cecab54d35506e" + }, + { + "rel": "item", + "href": "./BG38_10000_0504.json", + "type": "application/json", + "file:checksum": "122045a33e83f40eaccfc8651de37a5e8cae224d4c58b8c27be983cefe9afb374c7c" + }, + { + "rel": "item", + "href": "./BG38_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e0eb01c2eae4c6ce81959451c6927477d3d0e59b9f7671dc55f1dc70423060e4" + }, + { + "rel": "item", + "href": "./BH34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220e93b499ddd5150d455393bf87f7025737c310acb98464de2d146933a1362db21" + }, + { + "rel": "item", + "href": "./BH34_10000_0105.json", + "type": "application/json", + "file:checksum": "122080bf5f2dcf6a9a9216b47212963946d25647506a0c19fd6ed7d294bf7fc0de34" + }, + { + "rel": "item", + "href": "./BH34_10000_0204.json", + "type": "application/json", + "file:checksum": "1220934dfd74ededdfedd47806151476250f840781911430ded6d09e4e7740f6b998" + }, + { + "rel": "item", + "href": "./BH34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220fcd76b5d43dd0b8fd675d1249c5a9cb6178f0ef7d6764c6863b896b94c389fde" + }, + { + "rel": "item", + "href": "./BH34_10000_0305.json", + "type": "application/json", + "file:checksum": "12205c50fe7703c91403e9a2198dd0e8e17fa162e608468d38acbc11f0edb32b19dd" + }, + { + "rel": "item", + "href": "./BH34_10000_0405.json", + "type": "application/json", + "file:checksum": "12207906de0a4cffa639714e6c6804a3bdf0d9bfe428b709b5716cd08e1af534976f" + }, + { + "rel": "item", + "href": "./BH34_10000_0505.json", + "type": "application/json", + "file:checksum": "12207c7717c0842fc5d33779aa05e7a3a7b4e32a4a55262713207de4e5a0177bf258" + }, + { + "rel": "item", + "href": "./BH35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220e8551f36197e8072d44185c62198b91d1d248c9b5997821ccc6166773642f694" + }, + { + "rel": "item", + "href": "./BH35_10000_0102.json", + "type": "application/json", + "file:checksum": "1220eea010550e70eceeab502406127f1f4dd211fe826a26d87f129ad1a3ff3a0b83" + }, + { + "rel": "item", + "href": "./BH35_10000_0103.json", + "type": "application/json", + "file:checksum": "12204f2414da505fddb8e2719e8aa5c97c3e858f98a59e0dc43b603e2694729964d8" + }, + { + "rel": "item", + "href": "./BH35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220d68d548fb51dab844d5daaf577e7f975f189ae2cf1d2aacba937aa2bc623af48" + }, + { + "rel": "item", + "href": "./BH35_10000_0201.json", + "type": "application/json", + "file:checksum": "12201b21722ae554dd2197ee300ad84c5db3147f91518e1ee1f2f6556ee92d13c0c9" + }, + { + "rel": "item", + "href": "./BH35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220b4317b1f1cfa32c108dc6bfa60085a8998d3949d04d061168dfae3a99d68b45f" + }, + { + "rel": "item", + "href": "./BH35_10000_0203.json", + "type": "application/json", + "file:checksum": "1220103a19471596425cf038d043fc845589745f3bc56cbefd2244669b7350503048" + }, + { + "rel": "item", + "href": "./BH35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220e033193ace3afaee449711d961383d6da5acbbe64f7f82eb587728f79b4bfb06" + }, + { + "rel": "item", + "href": "./BH35_10000_0205.json", + "type": "application/json", + "file:checksum": "1220e0f8e0ff5de73838aefaf6e42d6287aa2b422288e2563b294c95a003688d6c93" + }, + { + "rel": "item", + "href": "./BH35_10000_0301.json", + "type": "application/json", + "file:checksum": "12204a0235555079a082555ce92a1d068c3e2a35d9fc572e7e7215a03a2954696169" + }, + { + "rel": "item", + "href": "./BH35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220451a69e2ffd7932a41b92a472129bc875e9fab19910bf6a5b5141c6ebe3d9766" + }, + { + "rel": "item", + "href": "./BH35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220e2ed329b56e16a48ff3f081976cf72181f092773ca1c87255f8eca8b613fd058" + }, + { + "rel": "item", + "href": "./BH35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220d43d0a8ac72536b26cc339bc4fbed893e74b7536ee5d6c35989ecc19b5882e0c" + }, + { + "rel": "item", + "href": "./BH35_10000_0305.json", + "type": "application/json", + "file:checksum": "122072b9acb612866aaf8597f0ba0a87dc76c0f0b3ac9be19c65b6e5d330abaa623c" + }, + { + "rel": "item", + "href": "./BH35_10000_0401.json", + "type": "application/json", + "file:checksum": "1220826485ad8383ee08476d94ba63d631996513841eacfde6547f884e20d85495ae" + }, + { + "rel": "item", + "href": "./BH35_10000_0402.json", + "type": "application/json", + "file:checksum": "1220adc2ef77cffc62088b1df55587284dc43a176f5b6abba10241129b841e4854a4" + }, + { + "rel": "item", + "href": "./BH35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220c5768e15bb4e7e655126c32f0b7f567865371654e9d35c221931645138033787" + }, + { + "rel": "item", + "href": "./BH35_10000_0404.json", + "type": "application/json", + "file:checksum": "122089da449058ee875529698a744acd8701b20d2efa0498682bd7014e562957445a" + }, + { + "rel": "item", + "href": "./BH35_10000_0405.json", + "type": "application/json", + "file:checksum": "12206081a5b5824168b016d5b125c9e2bfc706b0665aaf8d8bc0d56752a43d1f7a7d" + }, + { + "rel": "item", + "href": "./BH35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220001eacd2b7629c18695a9e0c62ea8072407cc1569394d0d5509fc83c18a83a1b" + }, + { + "rel": "item", + "href": "./BH35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220f6ef26834add326aa524790ee37aea479527211a0696f95877231b58b0b9d5ca" + }, + { + "rel": "item", + "href": "./BH35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220b91a47888e99b0a8bff5695c5a6b36aff6a40773cba74d6062cd479a0e58ec83" + }, + { + "rel": "item", + "href": "./BH35_10000_0504.json", + "type": "application/json", + "file:checksum": "122068d09db61d7cafe28c0fed688858c11af0d25646dd09b108f8a0120bdc310cd0" + }, + { + "rel": "item", + "href": "./BH35_10000_0505.json", + "type": "application/json", + "file:checksum": "122095076f2b25498b4b8d4ed344fd9887a242d9eb89d5f7c48716aab7d06ea011bb" + }, + { + "rel": "item", + "href": "./BH36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220b9db188083137d06db47d8220fb8064d896dcc2a0514a41aae7763bbbea9fec4" + }, + { + "rel": "item", + "href": "./BH36_10000_0102.json", + "type": "application/json", + "file:checksum": "12203b310783a42db27947a12f88692d0f0be640567fb2222fb441c4ea5217b8ad58" + }, + { + "rel": "item", + "href": "./BH36_10000_0103.json", + "type": "application/json", + "file:checksum": "122080a966c7b29b2edae7176adcda168e9f8dcfb8ec4b70135c05822e7cb71b6169" + }, + { + "rel": "item", + "href": "./BH36_10000_0104.json", + "type": "application/json", + "file:checksum": "1220a38342b30933f760b3043e410984571ed121e80fd03c1e74280640a40393cc11" + }, + { + "rel": "item", + "href": "./BH36_10000_0105.json", + "type": "application/json", + "file:checksum": "1220dc84683d75b7aa95e7572cd9a5943b1eb6a09652b743cf66477a847260c20f8e" + }, + { + "rel": "item", + "href": "./BH36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220140fc1148e1b0f02ef7399be2137fc2284ec39f2f7388bb7c06f189b32afc79b" + }, + { + "rel": "item", + "href": "./BH36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220f353850d21c0e7d03a01018fc7e4cd15c032c6174aa72ccaa9e6dfb59e252182" + }, + { + "rel": "item", + "href": "./BH36_10000_0203.json", + "type": "application/json", + "file:checksum": "12201628ccc48150d6f1e4204493450af277f2e2c69544bd5530f4ca7f095d4c8e59" + }, + { + "rel": "item", + "href": "./BH36_10000_0204.json", + "type": "application/json", + "file:checksum": "1220d6d865f1d97040a27b53720902a4c32c8d17d756cb0c8f836058b72b0fa317ee" + }, + { + "rel": "item", + "href": "./BH36_10000_0205.json", + "type": "application/json", + "file:checksum": "12204c0aa726226e1310de9b247a66ba48e733811561044a8ac55c3280a5185549df" + }, + { + "rel": "item", + "href": "./BH36_10000_0301.json", + "type": "application/json", + "file:checksum": "12209f20d0a044e5d99e30f564023c46196d5e3d71d4474ef40e559bf5dec44b9f7c" + }, + { + "rel": "item", + "href": "./BH36_10000_0302.json", + "type": "application/json", + "file:checksum": "1220c3795366c1054d2e207d9daa50ed6381c85b49a14185347e65c4385752fd13e4" + }, + { + "rel": "item", + "href": "./BH36_10000_0303.json", + "type": "application/json", + "file:checksum": "12205e0956e378acb1aee1b0fa52328a3fc29feec54939286f79b57863610b5d4bb1" + }, + { + "rel": "item", + "href": "./BH36_10000_0304.json", + "type": "application/json", + "file:checksum": "1220598920986621c6bbf194eeeec82686710a3399498eadfea587f0dbc8810594ad" + }, + { + "rel": "item", + "href": "./BH36_10000_0305.json", + "type": "application/json", + "file:checksum": "1220b835cb95b1119627620acc783a8990dab5e9dffb32ef46b7e3a606fc5e8ee073" + }, + { + "rel": "item", + "href": "./BH36_10000_0401.json", + "type": "application/json", + "file:checksum": "12205a89188a6d8ce381982d2bad3132b73ed7e76d72a933c1bdfeb1fa2dd14b86cc" + }, + { + "rel": "item", + "href": "./BH36_10000_0402.json", + "type": "application/json", + "file:checksum": "1220b50b461ef7b8a90a56b9f0c3e8c4262bbe319b1dee2dffc323ecd0fbae2f3b82" + }, + { + "rel": "item", + "href": "./BH36_10000_0403.json", + "type": "application/json", + "file:checksum": "1220b886c569b5519fabceba87aa1a33c6eaad6f710bbe4d1b7ffcead75bc4bca13d" + }, + { + "rel": "item", + "href": "./BH36_10000_0404.json", + "type": "application/json", + "file:checksum": "122035363017a3c48266633561c8d24f85f59ef963f10a5f299c5c09f3bb6cc74001" + }, + { + "rel": "item", + "href": "./BH36_10000_0405.json", + "type": "application/json", + "file:checksum": "122053bb6ef1b2ecaada65d381ac77cd45f06140592f20024c4e591061ad7a567e07" + }, + { + "rel": "item", + "href": "./BH36_10000_0501.json", + "type": "application/json", + "file:checksum": "12205ebab1d17a794ec13d637c5cabadfff0ef7d0cdefe4be5b24672dc354b00c1e8" + }, + { + "rel": "item", + "href": "./BH36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220a5ec5356e38df8151017b6b7269f59a24c6a7233c0f9d0a9bcfdfc10d200f4ed" + }, + { + "rel": "item", + "href": "./BH36_10000_0503.json", + "type": "application/json", + "file:checksum": "1220a006c46d86c288482fce9ec02593e624aef77f00c000530d2293f9a4afca4715" + }, + { + "rel": "item", + "href": "./BH36_10000_0504.json", + "type": "application/json", + "file:checksum": "1220e2ff41365b3093350f406cef2a07565c52d226074a47b41bdcd0cca014c70ff8" + }, + { + "rel": "item", + "href": "./BH36_10000_0505.json", + "type": "application/json", + "file:checksum": "1220c2b7e36898a30df2aeede942ab83fbc7c8eeb3f7ec3a2efd4312b98d498e6daf" + }, + { + "rel": "item", + "href": "./BH37_10000_0101.json", + "type": "application/json", + "file:checksum": "1220bcc912186e3c9242174f86929cc44089cfb6d1d023742f050dea88a9396f52b3" + }, + { + "rel": "item", + "href": "./BH37_10000_0102.json", + "type": "application/json", + "file:checksum": "1220a9e8cab9dd64784b9c4deec64e55b0c3497c6e1c35a55a9ac0db3bc087ccd2a4" + }, + { + "rel": "item", + "href": "./BH37_10000_0103.json", + "type": "application/json", + "file:checksum": "12205339aeda92032655551935db9dd9805a693da199a8ba182347025c0ca532c506" + }, + { + "rel": "item", + "href": "./BH37_10000_0104.json", + "type": "application/json", + "file:checksum": "1220430aa9107d7d051c62ebb6c0fabfc015a407b3a5db9201e7350374e8644b5ea6" + }, + { + "rel": "item", + "href": "./BH37_10000_0105.json", + "type": "application/json", + "file:checksum": "122055b776e45a4dbc99cdafbca5ddced43108262e48864e2d741bf1f41f32a049ea" + }, + { + "rel": "item", + "href": "./BH37_10000_0201.json", + "type": "application/json", + "file:checksum": "1220ab1550839e007498eabb0d1ef64752000981d806d7af3ca2d19a35a6cb9bb8af" + }, + { + "rel": "item", + "href": "./BH37_10000_0202.json", + "type": "application/json", + "file:checksum": "12202c73ca3ecd2607ccaea4742e4c5ac2797b51c674f79d538f3a9e328172e136d3" + }, + { + "rel": "item", + "href": "./BH37_10000_0203.json", + "type": "application/json", + "file:checksum": "12200121665e493067f7326e5be1144b4c971f7357c3216455d0b82eebbd65cc7df9" + }, + { + "rel": "item", + "href": "./BH37_10000_0204.json", + "type": "application/json", + "file:checksum": "1220ef56f3415b8edc028ad1106b8d38c556942828248a5be998d825b5780caddf6c" + }, + { + "rel": "item", + "href": "./BH37_10000_0205.json", + "type": "application/json", + "file:checksum": "12207392f1f9480063b43ad4ddac33d489edf8ad33b4c81c8d9e82c301cbcb7646ac" + }, + { + "rel": "item", + "href": "./BH37_10000_0301.json", + "type": "application/json", + "file:checksum": "12201ca4fbbd1fadc9c80a1459a6084056abb0a572d6d3e1f0c7dacae698f40ad514" + }, + { + "rel": "item", + "href": "./BH37_10000_0302.json", + "type": "application/json", + "file:checksum": "122092c51855dffa3b3a9c66ec1a4b8b0628a0be46b69b767dbd31455a10c0811bc5" + }, + { + "rel": "item", + "href": "./BH37_10000_0303.json", + "type": "application/json", + "file:checksum": "1220c4bcc68dccf736dd9328a48553d010e556c9bfd8d0e19eb41f9a0adb26c62a7c" + }, + { + "rel": "item", + "href": "./BH37_10000_0304.json", + "type": "application/json", + "file:checksum": "12208ea78bf27e47719b0d7d348d7a89092cf212ee693a2cd7c017e8574ca42b9252" + }, + { + "rel": "item", + "href": "./BH37_10000_0305.json", + "type": "application/json", + "file:checksum": "1220be53b4e6299e6a8c3262b79ac1803fc4a9a38dccfdad103bd79bc8733e5d6029" + }, + { + "rel": "item", + "href": "./BH37_10000_0401.json", + "type": "application/json", + "file:checksum": "1220ba17db2789ce282a6765008a3ae2f70cbab534799139495dfcc261e554dfcd75" + }, + { + "rel": "item", + "href": "./BH37_10000_0402.json", + "type": "application/json", + "file:checksum": "122050018b92cf71e632e707f3551174a7d61caabc3d8e68015122cf8381a74fb4cc" + }, + { + "rel": "item", + "href": "./BH37_10000_0403.json", + "type": "application/json", + "file:checksum": "1220dcc2da5c6826d8420c21462be74102e52d2433be08cc7553a506f830ab8f4272" + }, + { + "rel": "item", + "href": "./BH37_10000_0404.json", + "type": "application/json", + "file:checksum": "12208077c93cf5fa532bd34f24fd388073160d6e3672c56a49be8131ad31ce8c02fc" + }, + { + "rel": "item", + "href": "./BH37_10000_0405.json", + "type": "application/json", + "file:checksum": "1220751f4a4e4b878f35c49abab88b60095ff31cdb698ffc43d0bbd813ba31007286" + }, + { + "rel": "item", + "href": "./BH37_10000_0501.json", + "type": "application/json", + "file:checksum": "12200d5f0e0931da833079384e89a17903c07392ce3a99af0c82c6b7d1b491749f13" + }, + { + "rel": "item", + "href": "./BH37_10000_0502.json", + "type": "application/json", + "file:checksum": "1220fa621009ecde08ae08b114f81ecbc4f2e9eacce0c4415d2132f24fe32db1e7d7" + }, + { + "rel": "item", + "href": "./BH37_10000_0503.json", + "type": "application/json", + "file:checksum": "12209f866200250ad336b04c497bd13039998907d0581924b83dd7d6dfa06df16887" + }, + { + "rel": "item", + "href": "./BH37_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c22be791ede969cf480d6448c2e5c550398576bc17704f3d62aeb2768d9f5f6a" + }, + { + "rel": "item", + "href": "./BH37_10000_0505.json", + "type": "application/json", + "file:checksum": "122017985a2ad93125a897c26596b59d75f198339b4fe6b687d33ead9a0c0f1ddb4d" + }, + { + "rel": "item", + "href": "./BH38_10000_0101.json", + "type": "application/json", + "file:checksum": "1220828425d80d7078ed5f108b5a9722a2aebe2f57b1145590d0fe6da732c7040eca" + }, + { + "rel": "item", + "href": "./BH38_10000_0102.json", + "type": "application/json", + "file:checksum": "1220613e8a4a1148223be7248003324bff4612e2863d78fb31b41c0caed0a6ce8cb1" + }, + { + "rel": "item", + "href": "./BH38_10000_0103.json", + "type": "application/json", + "file:checksum": "1220b84b3fb90e02e66f023e1aad1048badfb4cd2bf1dcd11fd8dfe40dc7099eb143" + }, + { + "rel": "item", + "href": "./BH38_10000_0104.json", + "type": "application/json", + "file:checksum": "1220d9a3a037f472214d2e3587f734c394b5cc5030b9dd0ec87f8e94181cfc3e6d4d" + }, + { + "rel": "item", + "href": "./BH38_10000_0105.json", + "type": "application/json", + "file:checksum": "12208bb4eb7d04a0ea7afbe18fd77569922045ec60d55e7d6db1ee94243ef9943325" + }, + { + "rel": "item", + "href": "./BH38_10000_0201.json", + "type": "application/json", + "file:checksum": "122026c46b5bec84342adecc2b29003a6148c5b6ecdaca6ccf842110b9553cccf1af" + }, + { + "rel": "item", + "href": "./BH38_10000_0202.json", + "type": "application/json", + "file:checksum": "12205464a31346474ef4f3abbaadf1fbf98c541c7222aeebaffa292d883899509b12" + }, + { + "rel": "item", + "href": "./BH38_10000_0203.json", + "type": "application/json", + "file:checksum": "122054d8f5eed3f846558281a534c0edaf58c22777e7a3d60a9b713c7c06ccd6e072" + }, + { + "rel": "item", + "href": "./BH38_10000_0204.json", + "type": "application/json", + "file:checksum": "1220740cf50c90710d38b4b6777b11e8f88842ebbdcbc4438160ccf5603b82728609" + }, + { + "rel": "item", + "href": "./BH38_10000_0301.json", + "type": "application/json", + "file:checksum": "1220397e4a45ecb501cae9af0b4a05bec97f75caa029583cccbee3f01fe5d9e3a5d3" + }, + { + "rel": "item", + "href": "./BH38_10000_0302.json", + "type": "application/json", + "file:checksum": "1220551f97072cad91e4e0e2128043a8d08dd6e8bd07fcac3e7821f3e48c5d435d0f" + }, + { + "rel": "item", + "href": "./BH38_10000_0303.json", + "type": "application/json", + "file:checksum": "1220f8204a8753f083a381daaca63916f8669fd71643fd6ad8206932212daf3093f8" + }, + { + "rel": "item", + "href": "./BJ34_10000_0104.json", + "type": "application/json", + "file:checksum": "12205c7177a5b37b767f9eed14351a585d5e5d408febbbeaa32406262ad07a0001aa" + }, + { + "rel": "item", + "href": "./BJ34_10000_0105.json", + "type": "application/json", + "file:checksum": "1220cb9d9c5475d7be77b461f69f5ea6a403fbcef7f8c4f7e4c09f3a8e36682162a0" + }, + { + "rel": "item", + "href": "./BJ34_10000_0204.json", + "type": "application/json", + "file:checksum": "122083a33d1377a792dafc704ca3a08590f5ff13a176a78956ece7016657d9a94477" + }, + { + "rel": "item", + "href": "./BJ34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220955c14ec8cd9329709a8a995c3e6f745e81c4122e655e5d851bfcecbe863a92f" + }, + { + "rel": "item", + "href": "./BJ35_10000_0101.json", + "type": "application/json", + "file:checksum": "122094e25113ee7f592ef43b466db687b7d0db6283487a50202464a0e0e1b3164773" + }, + { + "rel": "item", + "href": "./BJ35_10000_0102.json", + "type": "application/json", + "file:checksum": "1220b85c7892a512d88407102ec4e3e4e64f61e278b1466b79584810b746a470ab73" + }, + { + "rel": "item", + "href": "./BJ35_10000_0103.json", + "type": "application/json", + "file:checksum": "12200d77eaefb31360b76ecdcc0b81ebc00cff31e63860ea779c52e617c5977b2c41" + }, + { + "rel": "item", + "href": "./BJ35_10000_0104.json", + "type": "application/json", + "file:checksum": "1220977b0ab581f565da9603558c1a9ee709feb57a4b3ba07c52e1475edb41db236d" + }, + { + "rel": "item", + "href": "./BJ35_10000_0105.json", + "type": "application/json", + "file:checksum": "122038419dc7e1c2a6e647877e8079f3a5d6127ca570148a7b4f278e2ccb003558a1" + }, + { + "rel": "item", + "href": "./BJ35_10000_0201.json", + "type": "application/json", + "file:checksum": "1220071612fceaa25a2affbbf4b616cc84ed05f1d71e3cea20eaf813bf8d44a3acfe" + }, + { + "rel": "item", + "href": "./BJ35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220f3424138d03758b360ef9c9fb066b65cb36d64ec8eec5d651f71c8af78225133" + }, + { + "rel": "item", + "href": "./BJ35_10000_0203.json", + "type": "application/json", + "file:checksum": "12205415776179dacbf9642338446f33fbfc33829f6846048d8e8e7ca78d93c7c0de" + }, + { + "rel": "item", + "href": "./BJ35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220fdb9fb9407f3bc9467f62c79c669712b066b4e085d468af06d5a7c61657d805e" + }, + { + "rel": "item", + "href": "./BJ35_10000_0205.json", + "type": "application/json", + "file:checksum": "12200083368ead999d67d3b71463d440dab477a2e8d000fdb09ea41f4a8bf70475f7" + }, + { + "rel": "item", + "href": "./BJ36_10000_0101.json", + "type": "application/json", + "file:checksum": "12208c9b0b2bdd29ae851ae361d7a802a37456943d0143276d47611628dfea426c02" + } ], "providers": [ { "name": "Ocean Infinity", "roles": ["producer"] }, @@ -550,8 +5260,10 @@ "linz:geospatial_category": "dem", "linz:region": "waikato", "linz:security_classification": "unclassified", + "created": "2024-07-04T02:38:50Z", + "updated": "2024-07-04T02:38:50Z", "extent": { - "spatial": { "bbox": [[174.5702773, -38.863948, 176.3373624, -36.4037416]] }, + "spatial": { "bbox": [[174.5702773, -39.329461, 176.7362937, -36.4037416]] }, "temporal": { "interval": [["2021-01-04T11:00:00Z", "2021-03-25T11:00:00Z"]] } }, "assets": { @@ -560,8 +5272,8 @@ "title": "Capture area", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "12206baa770e3da179c6ed3d7f831473a958a35d7ce4c6ff225bd40e36b6ec75eae6", - "file:size": 51815 + "file:checksum": "1220fe02d6de97d1b29b7148d9156ac980ee47a5eac56d1110992e93bffa1dc279ff", + "file:size": 67405 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From b73bfaa1f912018753dcda6a61716ae99d8104f1 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Thu, 4 Jul 2024 15:30:35 +1200 Subject: [PATCH 295/309] feat: import Waikato LiDAR 1m DSM (2021) (#302) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-37.8679680,175.6193091,z8?style=04-es-waikato-dsm-mm5jn&tileMatrix=NZTM2000Quad&debug&config=6sUk4Za2WKysFTtUuDLY8VZKUUvfvkXoNXGCqB3PC6uJeN1fErRprUUAzMwF51rGZi9zZmUEVyNUZFLbVDKcQNueLpsTUrUscpuY9XmBFxjvKWiejZHm6BPNW5hbm8PpEKprXL35hUyWMTWFGf8HvrCgbhom58e1sfDaB7PRZzD5NQXraaZPBo) **ODR destination path:** `s3://nz-elevation/waikato/waikato_2021/dsm_1m/2193/` --- ...QRHJSHZQ4Y13GN626FHJ36Z-1720063609787.yaml | 7 + .../waikato_2021/dsm_1m/2193/collection.json | 5774 +++++++++++++++-- 2 files changed, 5250 insertions(+), 531 deletions(-) create mode 100644 publish-odr-parameters/01HQRHJSHZQ4Y13GN626FHJ36Z-1720063609787.yaml diff --git a/publish-odr-parameters/01HQRHJSHZQ4Y13GN626FHJ36Z-1720063609787.yaml b/publish-odr-parameters/01HQRHJSHZQ4Y13GN626FHJ36Z-1720063609787.yaml new file mode 100644 index 00000000..e4432187 --- /dev/null +++ b/publish-odr-parameters/01HQRHJSHZQ4Y13GN626FHJ36Z-1720063609787.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-07/04-es-waikato-dsm-mm5jn/flat/", + "target": "s3://nz-elevation/waikato/waikato_2021/dsm_1m/2193/", + "ticket": "", + "copy_option": "--force", + "region": "waikato" +} \ No newline at end of file diff --git a/stac/waikato/waikato_2021/dsm_1m/2193/collection.json b/stac/waikato/waikato_2021/dsm_1m/2193/collection.json index 45595d80..96bf9d0b 100644 --- a/stac/waikato/waikato_2021/dsm_1m/2193/collection.json +++ b/stac/waikato/waikato_2021/dsm_1m/2193/collection.json @@ -12,534 +12,5244 @@ "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ34_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ35_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ35_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ35_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./AZ35_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BA34_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BA35_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BA36_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BB31_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BB32_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BB32_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BB32_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BB32_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BB32_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BB33_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BB34_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BB35_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BB36_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BB37_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BC31_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BC32_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BC33_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BC34_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BC35_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BC36_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BC36_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BC36_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BC36_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BC36_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BC36_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BD31_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BD31_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BD32_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BD33_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BD34_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BD35_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BD36_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BD36_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BD36_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BD36_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BD36_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BE31_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BE31_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BE31_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BE31_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BE31_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BE31_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BE31_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BE32_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BE33_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BF31_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BF32_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BF33_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BF36_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BF36_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BF36_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BF36_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BF36_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BF37_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BF37_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BF37_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BG31_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BG32_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BG33_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BG33_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BG33_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BG33_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BG33_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BG33_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BG36_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BG37_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BG37_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BG37_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BG37_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BG37_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BG37_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BG37_10000_0301.json", "type": "application/json" } + { + "rel": "item", + "href": "./AZ34_10000_0302.json", + "type": "application/json", + "file:checksum": "1220b9a4092dd8d9e1507e76c34a9493af32d679332287e05e4d127381d66a74104a" + }, + { + "rel": "item", + "href": "./AZ34_10000_0303.json", + "type": "application/json", + "file:checksum": "1220f6b58cfd52b8f525ffe34883efe87bceb5c168d10127f81582ce0f3b493f46f7" + }, + { + "rel": "item", + "href": "./AZ34_10000_0401.json", + "type": "application/json", + "file:checksum": "12209d7470523eed9ae8e4a5074b88dad82cd6a835cc8d013855ae1e8a3e054f82f3" + }, + { + "rel": "item", + "href": "./AZ34_10000_0402.json", + "type": "application/json", + "file:checksum": "1220e8c1a159c6217f065261a21276e0f5a07f99e488185ece6555d2c992b51bcfad" + }, + { + "rel": "item", + "href": "./AZ34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220f9ee49a84c97e089e39c51dee3b1db4125ade93cd13723cc1eb1ebaff0667875" + }, + { + "rel": "item", + "href": "./AZ34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220e8cf51c28d9bfc2d56337827056bc7bb27a085089658b04edfd292990ee699f8" + }, + { + "rel": "item", + "href": "./AZ34_10000_0405.json", + "type": "application/json", + "file:checksum": "1220b15142de51920007bca82e5eff9f44d44e0bc87fa9f91b7ffc61ca0863e7a7f8" + }, + { + "rel": "item", + "href": "./AZ34_10000_0502.json", + "type": "application/json", + "file:checksum": "122011374ac92d9b41a65f13a03300f9e916f322313207c48b122968f8ce94259d3d" + }, + { + "rel": "item", + "href": "./AZ34_10000_0503.json", + "type": "application/json", + "file:checksum": "1220a5aed24e3133da0852dd26c354219c1f1fcc224d19da01569741875a5e3a2cc4" + }, + { + "rel": "item", + "href": "./AZ34_10000_0504.json", + "type": "application/json", + "file:checksum": "122063a09de4dcf8c6f066dea73ac9c6a563dc42f0844a1b05c0a5ee8cce8cd76a42" + }, + { + "rel": "item", + "href": "./AZ34_10000_0505.json", + "type": "application/json", + "file:checksum": "122033ee21d5eead700246113f1375bfd24043cb8522086e553163e103f86ec08f8d" + }, + { + "rel": "item", + "href": "./AZ35_10000_0305.json", + "type": "application/json", + "file:checksum": "12201fed7e62118fba124e3a72dc7809667ebf16ce880b129cef275d202044d5e1f7" + }, + { + "rel": "item", + "href": "./AZ35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220e1c601f4c8f896c28d9a85fe9edb1d5b92f843efaadb6e0d6b387d54809fc2bb" + }, + { + "rel": "item", + "href": "./AZ35_10000_0504.json", + "type": "application/json", + "file:checksum": "1220a0c13332740bbbde5a3d22bd347637a5df71dbc08f4b20bd9ae7cbf7734ff0f9" + }, + { + "rel": "item", + "href": "./AZ35_10000_0505.json", + "type": "application/json", + "file:checksum": "122062669384da13414fdaa397a1b74b5e0128410a1630c531556343bf5dbcea7d10" + }, + { + "rel": "item", + "href": "./BA34_10000_0102.json", + "type": "application/json", + "file:checksum": "122015a34b9055aecc395ff0e38cda114a8367f28cf223d043073f560fd6171c425f" + }, + { + "rel": "item", + "href": "./BA34_10000_0103.json", + "type": "application/json", + "file:checksum": "1220c2d23239eb19b3297cfd6fbe8421ff6657eb133256ac751bfa0d9e2ae78e64c5" + }, + { + "rel": "item", + "href": "./BA34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220ad89ee2196169c1f06038b681ab2a5b840da249aefeaec11055f21fd21b7718a" + }, + { + "rel": "item", + "href": "./BA34_10000_0105.json", + "type": "application/json", + "file:checksum": "1220dffa391f16c724821259453faa554611f8cd8cef30892569fdeafb8989ab3a5e" + }, + { + "rel": "item", + "href": "./BA34_10000_0202.json", + "type": "application/json", + "file:checksum": "1220e242e5eaad94d765ad4b49986dfcd2b00f9d4c8a536287d79f4722f782fcdeaf" + }, + { + "rel": "item", + "href": "./BA34_10000_0203.json", + "type": "application/json", + "file:checksum": "1220d7712a88710f27637da5c607fa4b65f47b09732480faff989d889e54bf5432a6" + }, + { + "rel": "item", + "href": "./BA34_10000_0204.json", + "type": "application/json", + "file:checksum": "1220860e2786dce18599a68d2eabaf103c4be52f25443fc3fad3f574dcc2d4f4c6a8" + }, + { + "rel": "item", + "href": "./BA34_10000_0205.json", + "type": "application/json", + "file:checksum": "12206dd253f087f436364c8c7279745094b9d6fe66ebfc75fdff0a1246bf7fde786d" + }, + { + "rel": "item", + "href": "./BA34_10000_0302.json", + "type": "application/json", + "file:checksum": "1220cf9c837dcf65403056c0240852c3433a16dabc54970b5c94cc76fe83adf09257" + }, + { + "rel": "item", + "href": "./BA34_10000_0303.json", + "type": "application/json", + "file:checksum": "12209baa5341378cf3c75d41f1c392a9173ac0932f1a11257a7453b3b555d9a5b02c" + }, + { + "rel": "item", + "href": "./BA34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220a5f7dec068e4b954eca6f542177910c9b3120516e7c17997d76e0929f4a3da84" + }, + { + "rel": "item", + "href": "./BA34_10000_0305.json", + "type": "application/json", + "file:checksum": "12200423a20db3c2828403ce4a33f09a8c4225f6f2a4d6109ac877b48dfecf025b7b" + }, + { + "rel": "item", + "href": "./BA34_10000_0403.json", + "type": "application/json", + "file:checksum": "12200d3e9705162056b95b9bc69140717ebc1ba79a0b69f3ad9ca507a0870d217b1d" + }, + { + "rel": "item", + "href": "./BA34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220a6bb5dd4a30c27a60b02a52e295463d423ec73eeb6bb402a6f3a7e93f2776b9c" + }, + { + "rel": "item", + "href": "./BA34_10000_0405.json", + "type": "application/json", + "file:checksum": "1220445677eb64a57529544359ca947424df3da5cf106ba4862d7f6b4b6587f85963" + }, + { + "rel": "item", + "href": "./BA34_10000_0503.json", + "type": "application/json", + "file:checksum": "1220f95556cc0869e59f26a0cb39fbeb83110f59bcb9b354c412692be7c9327f6f90" + }, + { + "rel": "item", + "href": "./BA34_10000_0504.json", + "type": "application/json", + "file:checksum": "1220f1ed09d212e416e5e265ec94c599b1902e90ab7f1cdd7f0bd98f86725ce68b91" + }, + { + "rel": "item", + "href": "./BA34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220082efd650bbf84235efc86c04c7ebe8ad9d2aa0e5a4ba2ffb08a5ed1216abaff" + }, + { + "rel": "item", + "href": "./BA35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220351b23a9983b0a1a4d4c21d6e862119a7c983a50c4051775e9aaece42e4c3359" + }, + { + "rel": "item", + "href": "./BA35_10000_0104.json", + "type": "application/json", + "file:checksum": "12206ba2ebdd61102784e9c81d3bc3cf40689d140cbace736e56580b2a5fe6a0c187" + }, + { + "rel": "item", + "href": "./BA35_10000_0105.json", + "type": "application/json", + "file:checksum": "122079cb0177485cf32a522de694bc3f24882523cf5285ebcb5cb41d7e726890a133" + }, + { + "rel": "item", + "href": "./BA35_10000_0201.json", + "type": "application/json", + "file:checksum": "122073e5a7616b5f5f3a1dced9c745ee920b3ec0ba8ab4f39127251257a151b6ebe2" + }, + { + "rel": "item", + "href": "./BA35_10000_0202.json", + "type": "application/json", + "file:checksum": "12203a7e90ad37dadc2137f42257ab62edea52f5b18941b601bf49534870eab34f8e" + }, + { + "rel": "item", + "href": "./BA35_10000_0203.json", + "type": "application/json", + "file:checksum": "12208ef8eb0dad6b34e49cf6ab2f55dfffd05099c1dc42e7bcb48ff4826460feb41f" + }, + { + "rel": "item", + "href": "./BA35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220a00852147d8d06b340fda5b2991ffb8d5e464de3c5aa16481884a45d1497d3ca" + }, + { + "rel": "item", + "href": "./BA35_10000_0205.json", + "type": "application/json", + "file:checksum": "122060daed8c9d07e36f1236c75ce1ea4cc0d1dc5200ab4801cf2502486022c8d1bd" + }, + { + "rel": "item", + "href": "./BA35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220bc8cf76dc7f3d487aab4ddc196142ad17fd0851f01484184037cff2ff70369aa" + }, + { + "rel": "item", + "href": "./BA35_10000_0302.json", + "type": "application/json", + "file:checksum": "12205638b7c73d2afcc3cc4d82bd943d6bba93526cbf19e27fa520910ce7f9456d06" + }, + { + "rel": "item", + "href": "./BA35_10000_0303.json", + "type": "application/json", + "file:checksum": "12209dc38b2994f47739cb4d14134bdc9dc5db5e9e117ba6260e54019924cc2339fa" + }, + { + "rel": "item", + "href": "./BA35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220ac2650f5f52418cfd20fda9cc46129464b918ff38805989ffac20c2869b0b72c" + }, + { + "rel": "item", + "href": "./BA35_10000_0305.json", + "type": "application/json", + "file:checksum": "122054ef8cac9b271e9276f200dc6c0d77bf653eac1dc9921242e0f86a0a445c138a" + }, + { + "rel": "item", + "href": "./BA35_10000_0401.json", + "type": "application/json", + "file:checksum": "1220339e59e16be388663f217156a72aac88217b529e2350fefc5d0d435673440ac0" + }, + { + "rel": "item", + "href": "./BA35_10000_0402.json", + "type": "application/json", + "file:checksum": "1220d7806faaeef878f5ba2e0ac5b139bc167149882ca8c06bb22bb3148309926ce0" + }, + { + "rel": "item", + "href": "./BA35_10000_0403.json", + "type": "application/json", + "file:checksum": "122018d07bc754aebd4692c9e750cbf4da502a7884dee04be939fe20cf0691ba80ca" + }, + { + "rel": "item", + "href": "./BA35_10000_0404.json", + "type": "application/json", + "file:checksum": "12203116b33c005ee836289efba22481d9c2bd9a3fbd5cb20aaccfa11f2841ef46e9" + }, + { + "rel": "item", + "href": "./BA35_10000_0405.json", + "type": "application/json", + "file:checksum": "1220c5ee3e39d8d384e6caa08fdb810d91ecf418f6f1908fce802c17dd34b8226ecc" + }, + { + "rel": "item", + "href": "./BA35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220668825094fc5fa4e32b7e416cec257ed0444491f05300953bf429bd0ca93d86e" + }, + { + "rel": "item", + "href": "./BA35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220cf948f75e00f76a2ed7c9c0b7dce55ab3010e50f2e1abcaa54328fb1d40e1859" + }, + { + "rel": "item", + "href": "./BA35_10000_0503.json", + "type": "application/json", + "file:checksum": "12204318234ad39f47aa17b4f0f5f580d714d4d4d104a0dd7484a4d69d1dfe1554dc" + }, + { + "rel": "item", + "href": "./BA35_10000_0504.json", + "type": "application/json", + "file:checksum": "12200386c2047e80cc01fa0384696213aa8e3f1b363064cd56d082fc18868979ba31" + }, + { + "rel": "item", + "href": "./BA35_10000_0505.json", + "type": "application/json", + "file:checksum": "12201f487996dc1261abd1c42d4a61f847ccc4fc6e9b16f0a13b040fef01ad6f2bf8" + }, + { + "rel": "item", + "href": "./BA36_10000_0101.json", + "type": "application/json", + "file:checksum": "12204d195433f32b12097cd4e686d546ed9954490d1e3a2a697df0a7ae663c5729be" + }, + { + "rel": "item", + "href": "./BA36_10000_0102.json", + "type": "application/json", + "file:checksum": "122021d794098fa83d5ad906828e2800dfd2f9b5346ec2c907f141581645c3fc4453" + }, + { + "rel": "item", + "href": "./BA36_10000_0103.json", + "type": "application/json", + "file:checksum": "1220cc6827ac3d6afc5a7b0f00ae6cd0e733bdf147697c05dee3cd6b0be60f8c7124" + }, + { + "rel": "item", + "href": "./BA36_10000_0201.json", + "type": "application/json", + "file:checksum": "122005380f2251e3bfd7785deb30756ed114c9a4cf193fda1f9e1e41b4bf25ce3d66" + }, + { + "rel": "item", + "href": "./BA36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220a575a841be0fc3d203f930ea95d0b86506b55b5feaf734fc19b7dcd70573c09f" + }, + { + "rel": "item", + "href": "./BA36_10000_0301.json", + "type": "application/json", + "file:checksum": "12202e387c979fbb4ce6e619a89584906fbc9ac503fca9faaeefdc174e0ada55deca" + }, + { + "rel": "item", + "href": "./BA36_10000_0302.json", + "type": "application/json", + "file:checksum": "122007ed3ba79c3cb3fb350a43037b05b68b85e319d028e325914a3fd0a5da7d63f6" + }, + { + "rel": "item", + "href": "./BA36_10000_0401.json", + "type": "application/json", + "file:checksum": "12205fd6040ede8a8bff5f1ff0c48be44a7118c1c71bc1c42a5479ce3b27c993de07" + }, + { + "rel": "item", + "href": "./BA36_10000_0501.json", + "type": "application/json", + "file:checksum": "1220da8219c7825bbd24bdd316c77705f4e754f214363ab5c8656dfd64672acea30d" + }, + { + "rel": "item", + "href": "./BA36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220b7cafb4ed54e3794a04f36eea00217ce01f3b489802df24cc63a7a4ad1c7b987" + }, + { + "rel": "item", + "href": "./BB31_10000_0505.json", + "type": "application/json", + "file:checksum": "122038cb7c7466ef081df790ebb0f1de2ce0426d2c693f6e4496ade7482a6f91bd75" + }, + { + "rel": "item", + "href": "./BB32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220cd1b473327c242d8fbd31a59a9d576d876c255a3c52ddcf4c6166a72d9f7fa81" + }, + { + "rel": "item", + "href": "./BB32_10000_0502.json", + "type": "application/json", + "file:checksum": "1220460082914dd41e34da421556734e8986b323d16ec4866ebec8b3e7b6bfcaf7fe" + }, + { + "rel": "item", + "href": "./BB32_10000_0503.json", + "type": "application/json", + "file:checksum": "12204f5d9666b2fba3739d185d7d7f6b4412cef5eaf19c3007b8dfea23501d8331a3" + }, + { + "rel": "item", + "href": "./BB32_10000_0504.json", + "type": "application/json", + "file:checksum": "1220b21ee1cffb2b9b0cbf5cce92af1c240746d0953e02552d43c1aafedad1c51a74" + }, + { + "rel": "item", + "href": "./BB32_10000_0505.json", + "type": "application/json", + "file:checksum": "12204281798b384b286982b5b1a2e36bf5058b5d0a06d4d6e557b700883f232da647" + }, + { + "rel": "item", + "href": "./BB33_10000_0304.json", + "type": "application/json", + "file:checksum": "1220b7c2b68790e09fadbf9c274c21d2f37929330cb729de428311608f0a96ce51e0" + }, + { + "rel": "item", + "href": "./BB33_10000_0305.json", + "type": "application/json", + "file:checksum": "12205334558e4a8f23f8a26588c549b56b0ab13010fa14a0fd48df1940573b88c5db" + }, + { + "rel": "item", + "href": "./BB33_10000_0401.json", + "type": "application/json", + "file:checksum": "1220a9b3eee28534c3b1ffe92cc4c7ee9594e97f8ea5768c43bc5221e66c8caf08f3" + }, + { + "rel": "item", + "href": "./BB33_10000_0402.json", + "type": "application/json", + "file:checksum": "1220ad6d8840ad07b0c4de8ed5900076bb98d93f24f8f74aebabe5d68855f6efdb2d" + }, + { + "rel": "item", + "href": "./BB33_10000_0403.json", + "type": "application/json", + "file:checksum": "1220426cf017845b052f00c27c65e4749945b4c25c25564f9b337ad88a8cd950f246" + }, + { + "rel": "item", + "href": "./BB33_10000_0404.json", + "type": "application/json", + "file:checksum": "12201d7283c79750b02a50c8b6d8c215cc8222e67ba4f689d9855e204a76573795cc" + }, + { + "rel": "item", + "href": "./BB33_10000_0405.json", + "type": "application/json", + "file:checksum": "122068a7692f2e86eddfcea2d0161a63ef992d153abc3ae52bc889f98059adbe756d" + }, + { + "rel": "item", + "href": "./BB33_10000_0501.json", + "type": "application/json", + "file:checksum": "1220ae487d94517ac2378e41d53476ef279dffc217951f6e3d8f4c363bb42c621699" + }, + { + "rel": "item", + "href": "./BB33_10000_0502.json", + "type": "application/json", + "file:checksum": "1220782d36c4e46dc4c629d791433f37509236754581a9fa4b0beccf1b134ea0d3e3" + }, + { + "rel": "item", + "href": "./BB33_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d1664310fe60cb84118dfce7487fd2ce27f9d016c5903c7c6961d5075c858f4f" + }, + { + "rel": "item", + "href": "./BB33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220e20e705f6394a4e28cc69ea0292392f9471ad3d2cd9e62eb7323b2c7d0e30d97" + }, + { + "rel": "item", + "href": "./BB33_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e8b3a71b450991bf3c379239cfb86817d30c6f861f71dbfae270f1eaf67ee03f" + }, + { + "rel": "item", + "href": "./BB34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220ae89038faf22d965d1c34cd775d34f646423e47fe39442a52df6788838619ca5" + }, + { + "rel": "item", + "href": "./BB34_10000_0105.json", + "type": "application/json", + "file:checksum": "12204a26ad3fab415dd1dcecb46807ab8d8cc3800176d0a5bac2bf57b0780318994d" + }, + { + "rel": "item", + "href": "./BB34_10000_0204.json", + "type": "application/json", + "file:checksum": "1220d4326661a564f8cf3e6c2cb9e21bb0df04ff3b514095100f330a762f67bdd6f0" + }, + { + "rel": "item", + "href": "./BB34_10000_0205.json", + "type": "application/json", + "file:checksum": "12201178db1f03b258e4fa935ec7fa4311835db9c64a34f7e81d96622592e0caf51e" + }, + { + "rel": "item", + "href": "./BB34_10000_0301.json", + "type": "application/json", + "file:checksum": "122078ff8c026a9dab30ecfb609398a888c67fb35388ffd772d952c7ad761bd6da64" + }, + { + "rel": "item", + "href": "./BB34_10000_0305.json", + "type": "application/json", + "file:checksum": "1220600ee2b957f9e9c080cf1aab18378e657df22cb07e30e9eba802d2726b862c06" + }, + { + "rel": "item", + "href": "./BB34_10000_0401.json", + "type": "application/json", + "file:checksum": "122029215f8e7ff9ca7ba7babffb10937517d9a43db3059788a33abb60776d1014dc" + }, + { + "rel": "item", + "href": "./BB34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220a0a1c777587a5dc00800fecc8338ff07e8e92681d345c8b03f9ef1a2f9651a7f" + }, + { + "rel": "item", + "href": "./BB34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220008fc1d4ad836931a1b1b05f010e7d7dc9d31fcbcbe9b7c1e7006617dbc8c598" + }, + { + "rel": "item", + "href": "./BB34_10000_0405.json", + "type": "application/json", + "file:checksum": "1220005444d0c98a9f23d63b1ac568f4df2494033665663f46bfa84c6b71a9919f7c" + }, + { + "rel": "item", + "href": "./BB34_10000_0501.json", + "type": "application/json", + "file:checksum": "12207f452de5722c1a6138ac8cd353dfeb649dcbcb1130c3fe4ed5b12e4ca414e34f" + }, + { + "rel": "item", + "href": "./BB34_10000_0502.json", + "type": "application/json", + "file:checksum": "1220c13c20ce93889415c84572fed47192a3f003aafe9e093ef4626c4e8e6b5911e6" + }, + { + "rel": "item", + "href": "./BB34_10000_0503.json", + "type": "application/json", + "file:checksum": "122054b601e14fce196d6fb393238ed2872a8866c566192d87819161eb7a7ea71aee" + }, + { + "rel": "item", + "href": "./BB34_10000_0504.json", + "type": "application/json", + "file:checksum": "12200413f3d5008000c69cb2d19ee9065773d920e283e18f1ae34b1741045ad4e7de" + }, + { + "rel": "item", + "href": "./BB34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e31ec49ae5444e408b387f3d11acba538b94841d18b52333db72e0c6cda748d2" + }, + { + "rel": "item", + "href": "./BB35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220719a4bd471edcbb96e2eb46d76bd096bff7a282b5750199d463232f23211a623" + }, + { + "rel": "item", + "href": "./BB35_10000_0102.json", + "type": "application/json", + "file:checksum": "122090fad7cd2a7926d1a4876460b4f4977771290408a2edd81cf908c79872bae3a1" + }, + { + "rel": "item", + "href": "./BB35_10000_0103.json", + "type": "application/json", + "file:checksum": "1220cf1af68996e55d0cdf053a4f27dcf4636aa5e50f1e7f40fbc8f8ff089501bc43" + }, + { + "rel": "item", + "href": "./BB35_10000_0104.json", + "type": "application/json", + "file:checksum": "122013b4e9ed03ea7207992aa3a2364d0874b55be094f41e2d386526baad7308e63b" + }, + { + "rel": "item", + "href": "./BB35_10000_0105.json", + "type": "application/json", + "file:checksum": "122030549178c2abdba1fb321a8f33b04ea177bd4a857c1d3920165d455f8d69c1c4" + }, + { + "rel": "item", + "href": "./BB35_10000_0201.json", + "type": "application/json", + "file:checksum": "12206016c3742972c34292b3c6a33afb7b59c83eaa1e30ba863cda7daae369240823" + }, + { + "rel": "item", + "href": "./BB35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220e0ceab2542b9cf5aa11afd2250490d887e2293177edb7054ad257863eee7e4a4" + }, + { + "rel": "item", + "href": "./BB35_10000_0203.json", + "type": "application/json", + "file:checksum": "12205ca9304ff9cafcbd1335d267bbea406532d4796bbe4d0a0b982c1562999e8087" + }, + { + "rel": "item", + "href": "./BB35_10000_0204.json", + "type": "application/json", + "file:checksum": "12207be8ba063122a5a1e2f7bee798ae674f50353cef40f5c7bfca979ee6703719bf" + }, + { + "rel": "item", + "href": "./BB35_10000_0205.json", + "type": "application/json", + "file:checksum": "12202cc4a77c5d43989114ccb72b0749c1c095199b21bf651bc28aacd4934773c11b" + }, + { + "rel": "item", + "href": "./BB35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220d08456ef710483697ef58c44620852a5bd9150f603b9065d1c413e07402ae527" + }, + { + "rel": "item", + "href": "./BB35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220c3f683dbc0faf9a1720690b17afd12eee5447563c6fb1a70604a7904a64a4315" + }, + { + "rel": "item", + "href": "./BB35_10000_0303.json", + "type": "application/json", + "file:checksum": "12204d872ba00115f387427d79ac42f8013a2f21afb66ee008431bf820ae2fa6352e" + }, + { + "rel": "item", + "href": "./BB35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220eb0281f9d4da9b7f7c4f76d4eed545c09d6f79033d607c0e319abf30e70eeb43" + }, + { + "rel": "item", + "href": "./BB35_10000_0305.json", + "type": "application/json", + "file:checksum": "1220731b40a8fdb7fc8b72811a99d76f75eb1adba54dcafa429424ff1e26260dca62" + }, + { + "rel": "item", + "href": "./BB35_10000_0401.json", + "type": "application/json", + "file:checksum": "122062a0cd520ea6b5b7fad83d5f32605e9b17026d6cf60ef4499006f06309556621" + }, + { + "rel": "item", + "href": "./BB35_10000_0402.json", + "type": "application/json", + "file:checksum": "1220ae1316425e84bb2ab44836119d2273210e0b36542270a17359c9c99054615277" + }, + { + "rel": "item", + "href": "./BB35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220ac860701c7defb9bd0e231b2901edb77403b069302b5d9d5ef6443317048052b" + }, + { + "rel": "item", + "href": "./BB35_10000_0404.json", + "type": "application/json", + "file:checksum": "122085fff6f1bb2b8dbef04fe29328ebaac1595123b854e781751d1998d63cce2f9c" + }, + { + "rel": "item", + "href": "./BB35_10000_0405.json", + "type": "application/json", + "file:checksum": "12206f8d9f7e34c7bac64c8a601e64719e5fc4b16b27367c69700d6eb091048b9ed2" + }, + { + "rel": "item", + "href": "./BB35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220fe9451e679ebfc84574189067778cc59533868e5206d7bf3958aba983f224fc6" + }, + { + "rel": "item", + "href": "./BB35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220d133adc1d00282b7b7c3258655604701cde939e6304af5d9db125e5bb727bf2f" + }, + { + "rel": "item", + "href": "./BB35_10000_0503.json", + "type": "application/json", + "file:checksum": "12207af43f0efaa590240f6ffab7d1fc872c8f2188aa548822c44a53677a07d48c47" + }, + { + "rel": "item", + "href": "./BB35_10000_0504.json", + "type": "application/json", + "file:checksum": "1220f9dec26f13c8a64f585c9b040cfe961dcded321f097ff3f4a452582b4a072c91" + }, + { + "rel": "item", + "href": "./BB35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220292cc5fc28ce38533564bb216139817e667e5f3dd8b214c57973e290a279c038" + }, + { + "rel": "item", + "href": "./BB36_10000_0101.json", + "type": "application/json", + "file:checksum": "12209e65cbc398a2269c0ca8c024d840ff3a0eea38795880c424fe4727970174cd38" + }, + { + "rel": "item", + "href": "./BB36_10000_0105.json", + "type": "application/json", + "file:checksum": "1220c862e3c05c6799198964d00bc06f6e9164b16cd26eb6c27c8c9c8d931f1ae308" + }, + { + "rel": "item", + "href": "./BB36_10000_0201.json", + "type": "application/json", + "file:checksum": "12209d5213116040a7ad2ad66e617c5f2fb66729a8a8924398140118955a4f2aeaf9" + }, + { + "rel": "item", + "href": "./BB36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220d0371a5e5ea78cecfe666fcb912f9c2bad5f25e43ae81954c66f81bb78f26b13" + }, + { + "rel": "item", + "href": "./BB36_10000_0203.json", + "type": "application/json", + "file:checksum": "1220021b54a87a2231c2e62d4a7a91f8ed70301ead4a52928e8cdeafdcd77efe13cd" + }, + { + "rel": "item", + "href": "./BB36_10000_0301.json", + "type": "application/json", + "file:checksum": "122051143aaff8be9d3d67d067094e8fd714f917840ab903dc2aafb177ff760cc8b1" + }, + { + "rel": "item", + "href": "./BB36_10000_0302.json", + "type": "application/json", + "file:checksum": "1220d93a487b53ae8d5bab4e3db2869011c86ef2cb6059d6d25c7dba88e802077326" + }, + { + "rel": "item", + "href": "./BB36_10000_0303.json", + "type": "application/json", + "file:checksum": "12209c16a7e6839fc6f1a28999a9fbc696341f0098e1ad6e457c1dc7014a9cb7c449" + }, + { + "rel": "item", + "href": "./BB36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220795d748131325d53728efb0d729afc4ca741f5c1a7207326f4470872c0a250c8" + }, + { + "rel": "item", + "href": "./BB36_10000_0402.json", + "type": "application/json", + "file:checksum": "1220894dc2e4a9045d7c3a98dfde7df9c859828d9ad1237f6b58f6f6a4016ab1e0d1" + }, + { + "rel": "item", + "href": "./BB36_10000_0501.json", + "type": "application/json", + "file:checksum": "12207d2e5f521d924d7792dc7992813cfbb4509d19cf7a80edd1a83357e18f3499e9" + }, + { + "rel": "item", + "href": "./BB36_10000_0502.json", + "type": "application/json", + "file:checksum": "122016dfd72de807a88ef304f44fd79d5af91dedcdfa8a40287698566168d731be82" + }, + { + "rel": "item", + "href": "./BB37_10000_0101.json", + "type": "application/json", + "file:checksum": "122041edb474ea0cd6946f397be3f1b4a77010b66f217badebfc907fb7fd1c620d40" + }, + { + "rel": "item", + "href": "./BC31_10000_0104.json", + "type": "application/json", + "file:checksum": "1220b8774598e80fc6395e0e4dbf68baeea99fda3bcf8c866517e12265f513cf36c9" + }, + { + "rel": "item", + "href": "./BC31_10000_0105.json", + "type": "application/json", + "file:checksum": "122061cbd7a5d6c85cb59a126cc4ef3c2dc8e7c804cbd1fbb0e4a3285a96aecca061" + }, + { + "rel": "item", + "href": "./BC31_10000_0204.json", + "type": "application/json", + "file:checksum": "12207df4a3b61017b3ce731143c503e90e5604007f8c767ff1e84867cb68b6bc8a09" + }, + { + "rel": "item", + "href": "./BC31_10000_0205.json", + "type": "application/json", + "file:checksum": "122004d85497898e13653737161b473a3cbf4af5c9eeddf7d75d086eef85847354b9" + }, + { + "rel": "item", + "href": "./BC31_10000_0304.json", + "type": "application/json", + "file:checksum": "122085889abb877be24124856fb2235567087e30717845f6746a8d398e3c7ee357ff" + }, + { + "rel": "item", + "href": "./BC31_10000_0305.json", + "type": "application/json", + "file:checksum": "122092574410896ae5f92900eabcb9e53900ccdea4d7611827519378915904bd6139" + }, + { + "rel": "item", + "href": "./BC31_10000_0405.json", + "type": "application/json", + "file:checksum": "122001d8767c43c75e4f503b353c7f0d14f084de4e2261023ecae00b5787536e2b79" + }, + { + "rel": "item", + "href": "./BC31_10000_0505.json", + "type": "application/json", + "file:checksum": "122070216e9aa6d8b667a14139ad673f319644a5b89c1d7e8afa960ee0d8bac5fe62" + }, + { + "rel": "item", + "href": "./BC32_10000_0101.json", + "type": "application/json", + "file:checksum": "1220b57bea95fdef4d42f545ab1ddb41b0d9dda8a76c5c9807f4e1738aaeea9ccb3b" + }, + { + "rel": "item", + "href": "./BC32_10000_0102.json", + "type": "application/json", + "file:checksum": "12205e3989ca5d0ebec285447516ba91a76fa43848d4eb0f8e902ac4ce0e22070121" + }, + { + "rel": "item", + "href": "./BC32_10000_0103.json", + "type": "application/json", + "file:checksum": "1220db5dff384650bd4ffe5b17471e02b58940c8041dd5ab8ea7962a56405d9ded70" + }, + { + "rel": "item", + "href": "./BC32_10000_0104.json", + "type": "application/json", + "file:checksum": "1220eb5a66968f4f023fd4544777be9b203d2c6873f7bc38c823cb331e772f476b7f" + }, + { + "rel": "item", + "href": "./BC32_10000_0105.json", + "type": "application/json", + "file:checksum": "12202764195e701d4f92d39d80b0fdb6f056a8c8f795bf645bc54d167f5a326ad1ef" + }, + { + "rel": "item", + "href": "./BC32_10000_0201.json", + "type": "application/json", + "file:checksum": "1220cccbc2c7735ef312d94a9ba51cbe18ed8323be27241fd524b1d396c52f345295" + }, + { + "rel": "item", + "href": "./BC32_10000_0202.json", + "type": "application/json", + "file:checksum": "12205fbb4ccbe90e5c00276cc9922345705e132df9442f6f8e3d9c19fa3aec7e59c7" + }, + { + "rel": "item", + "href": "./BC32_10000_0203.json", + "type": "application/json", + "file:checksum": "1220ae3ba4ec8d127b19ec5914d816405565f218f948acfcd8e65c7a07d0e0e0814a" + }, + { + "rel": "item", + "href": "./BC32_10000_0204.json", + "type": "application/json", + "file:checksum": "12209b6fb6ddb92e299f0e0ead6846bb1e845c1f34ac5c3bafd31945c78155d24918" + }, + { + "rel": "item", + "href": "./BC32_10000_0205.json", + "type": "application/json", + "file:checksum": "122063cc1cf18bf1af1a587fdb7c93cddf1a53e4b4a1e3b872cfe529ff723d3567cf" + }, + { + "rel": "item", + "href": "./BC32_10000_0301.json", + "type": "application/json", + "file:checksum": "122059689e52137ef6c17936cbe8f4659659db955fd7789993107e8cc59f9c5197ea" + }, + { + "rel": "item", + "href": "./BC32_10000_0302.json", + "type": "application/json", + "file:checksum": "122009f7a81f5e44a07815c5bc02413267e4b1ae09b467c00c13cd991aaac8deb29c" + }, + { + "rel": "item", + "href": "./BC32_10000_0303.json", + "type": "application/json", + "file:checksum": "12200b4f67f7e3dc399a116038ecdb8c8382c1cb24591df6535c106fe7fc03dccb05" + }, + { + "rel": "item", + "href": "./BC32_10000_0304.json", + "type": "application/json", + "file:checksum": "12207271387a111e1216b972c1ccad4a01d8bb6f7f191f196088e434a2645ad421cd" + }, + { + "rel": "item", + "href": "./BC32_10000_0305.json", + "type": "application/json", + "file:checksum": "12206f7f22fbd1025f62e93a2392b72e099962d89be9d9309483f4f354245d36da79" + }, + { + "rel": "item", + "href": "./BC32_10000_0401.json", + "type": "application/json", + "file:checksum": "122063e136367d338b3e73c0ebf4e437e0e815759e80d160b907f076a70f8426478b" + }, + { + "rel": "item", + "href": "./BC32_10000_0402.json", + "type": "application/json", + "file:checksum": "1220782e8debd10748e2ffb025338271c3d7a6e8baeb50c075409376727f0862a174" + }, + { + "rel": "item", + "href": "./BC32_10000_0403.json", + "type": "application/json", + "file:checksum": "12201f11ee150e644b3c2839097ffd61f797f67266efc6006297fa4d0f103f3bee45" + }, + { + "rel": "item", + "href": "./BC32_10000_0404.json", + "type": "application/json", + "file:checksum": "12206f9a86cf4463799a5eb442d33cc2dbbf3a14328a439f5eaf8ef1181dfbd2be23" + }, + { + "rel": "item", + "href": "./BC32_10000_0405.json", + "type": "application/json", + "file:checksum": "122012d0ea521cea3f909c995ca2870013c62628eaa34118b671f9af27a7286cbc64" + }, + { + "rel": "item", + "href": "./BC32_10000_0501.json", + "type": "application/json", + "file:checksum": "12200ec0e400ba9b050dc4a240033189dd3e77a9a7897c88b52807c42972e2a22821" + }, + { + "rel": "item", + "href": "./BC32_10000_0502.json", + "type": "application/json", + "file:checksum": "1220b98f26fa410a9c31c073617da136b5399f1ec5ff6e94ccc19a4afd03a04ac2e8" + }, + { + "rel": "item", + "href": "./BC32_10000_0503.json", + "type": "application/json", + "file:checksum": "1220f05c67243d28d2166d4d5b58f97693cb0ce7e7588145c63bc5e04b9d7dda4662" + }, + { + "rel": "item", + "href": "./BC32_10000_0504.json", + "type": "application/json", + "file:checksum": "1220175600391dae4c5d4ec646fc74513532d7522edae4efb3c0da9be6e665a81706" + }, + { + "rel": "item", + "href": "./BC32_10000_0505.json", + "type": "application/json", + "file:checksum": "12203f3f93288af38dde36d971b1b4d2238b0e15b7d0011bb14b3d93ed9b86eca23b" + }, + { + "rel": "item", + "href": "./BC33_10000_0101.json", + "type": "application/json", + "file:checksum": "12207153a4b754e99d87a570218a060f66f0140fc084046278961edf60043b7cb035" + }, + { + "rel": "item", + "href": "./BC33_10000_0102.json", + "type": "application/json", + "file:checksum": "122063e0b7fea906157882e463e9f20abbddf97abc83ed3e140df59bf7df2f6a346a" + }, + { + "rel": "item", + "href": "./BC33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220950dd08cdfc0d00bbe6ca04f02f8751039fba1b03217fa5cb5974e0e69bda4ea" + }, + { + "rel": "item", + "href": "./BC33_10000_0104.json", + "type": "application/json", + "file:checksum": "12203b62c8c05cbe9f08ddc8cdd0941edbbcd4bd328fe5503844d03fbd3bd97270da" + }, + { + "rel": "item", + "href": "./BC33_10000_0105.json", + "type": "application/json", + "file:checksum": "1220fbdf5ec58ac520c1bfd3920823c52bcdf7a5f02bfcf209b33eacb9a930eeeb8f" + }, + { + "rel": "item", + "href": "./BC33_10000_0201.json", + "type": "application/json", + "file:checksum": "122031ac32428551601b53ce240ecafe4f4806e511290400c2df98122f91c20b6bec" + }, + { + "rel": "item", + "href": "./BC33_10000_0202.json", + "type": "application/json", + "file:checksum": "1220da37c6d66216a2afa1bc46a978df80eb9b9880430592241417fa114f2b17b7e8" + }, + { + "rel": "item", + "href": "./BC33_10000_0203.json", + "type": "application/json", + "file:checksum": "1220ac3f35c38c518c1ea3a41eedc0c0a6756791f8d343cada70ba13807c56ae90fb" + }, + { + "rel": "item", + "href": "./BC33_10000_0204.json", + "type": "application/json", + "file:checksum": "122087a838a5241f84a33b4def559f73fa5ea0b9d61c3074f9180d724d26948141fe" + }, + { + "rel": "item", + "href": "./BC33_10000_0205.json", + "type": "application/json", + "file:checksum": "1220946044d0c8f9282e285961c13941b4e51ed79dfa82b7a7500e09dc8754d8f552" + }, + { + "rel": "item", + "href": "./BC33_10000_0301.json", + "type": "application/json", + "file:checksum": "12203556d67807e2853acacffc863d55e55974918279dca5aa1bd14401e0bb3c2922" + }, + { + "rel": "item", + "href": "./BC33_10000_0302.json", + "type": "application/json", + "file:checksum": "122026527bb0dbca05283da48e8f3a805d111004cfaddb8c1588e9161cc47914b966" + }, + { + "rel": "item", + "href": "./BC33_10000_0303.json", + "type": "application/json", + "file:checksum": "12200be4b352ea0a91ba6d4b5ff5c0be053300a6d8cefcd84d4ae19167dee079c90a" + }, + { + "rel": "item", + "href": "./BC33_10000_0304.json", + "type": "application/json", + "file:checksum": "122081cb8aedac9c171840bd8e241d546372c329cc949f03271efe2d550d52ff21a5" + }, + { + "rel": "item", + "href": "./BC33_10000_0305.json", + "type": "application/json", + "file:checksum": "12203e5f44bcb4ab4c5a1a9d5186bb3d15b8550dccf381b7c791a28216019633941f" + }, + { + "rel": "item", + "href": "./BC33_10000_0401.json", + "type": "application/json", + "file:checksum": "1220bb06bcf257b0d5379be8d64feb352e1fe66aad2017bc9a1157b9a16a83a800f8" + }, + { + "rel": "item", + "href": "./BC33_10000_0402.json", + "type": "application/json", + "file:checksum": "12205b751afdb02731112c8ef10207f6331a9323d7c9a33a9be92419f03c1c7746b1" + }, + { + "rel": "item", + "href": "./BC33_10000_0403.json", + "type": "application/json", + "file:checksum": "12206806f1a23e20f1c52df1a6466b89d51a6514f1940f89eccef46b6aaba215382a" + }, + { + "rel": "item", + "href": "./BC33_10000_0404.json", + "type": "application/json", + "file:checksum": "122066c47e965a94dbadf46ebdffd652d1185e810132958485eb46e61773bacd72af" + }, + { + "rel": "item", + "href": "./BC33_10000_0405.json", + "type": "application/json", + "file:checksum": "122096004ee0b424a74fead6fa86316dd55f29164fb0d62d22c066a78ca603b80d8e" + }, + { + "rel": "item", + "href": "./BC33_10000_0501.json", + "type": "application/json", + "file:checksum": "1220599f91f3c70491080bc9c601a200fba9e49edc2db4dfa705ef7b6932e96012c1" + }, + { + "rel": "item", + "href": "./BC33_10000_0502.json", + "type": "application/json", + "file:checksum": "122010d0903b30655f89a37527dd37a8de76a0c12b89ad63d6e05285d83f31c43c8c" + }, + { + "rel": "item", + "href": "./BC33_10000_0503.json", + "type": "application/json", + "file:checksum": "12209d18b640cc7ee5264897daa11e1d76259057691f63ca91cc2e1961202440ba7e" + }, + { + "rel": "item", + "href": "./BC33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c5dc47d79fe27be45b368d21bec0ff2228adc9c04c908422ab8a67b0ca3bd78d" + }, + { + "rel": "item", + "href": "./BC33_10000_0505.json", + "type": "application/json", + "file:checksum": "1220956a626c28be1ffa358f70347967fb4cb353316bba63d9ccfc23cda2f96a94a0" + }, + { + "rel": "item", + "href": "./BC34_10000_0101.json", + "type": "application/json", + "file:checksum": "1220dc05effbbee649b031fd84bf6b015e4123a9da0abe2b462148ef225ac82da200" + }, + { + "rel": "item", + "href": "./BC34_10000_0102.json", + "type": "application/json", + "file:checksum": "1220b8fde074ba5eb67db4219aad1b178eb6e7c838fee1f56a653b8f07828f459762" + }, + { + "rel": "item", + "href": "./BC34_10000_0103.json", + "type": "application/json", + "file:checksum": "12200ff77295e95e25a8488f92b6f4b396885ba9d5dae0e3ab67c0fdcd38e278c085" + }, + { + "rel": "item", + "href": "./BC34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220da73974012be750e098fa0111190fc81afe48c586dfdcf3c47169344fba7e45e" + }, + { + "rel": "item", + "href": "./BC34_10000_0105.json", + "type": "application/json", + "file:checksum": "1220226f3d00a47749e8516a346f861909c85554fb9d8a7f509ac492dac8ff6acfa6" + }, + { + "rel": "item", + "href": "./BC34_10000_0201.json", + "type": "application/json", + "file:checksum": "122036f0f4202270833914a276e3bc70e3c993477627c5bb99828ae8e9a79a4e7d0a" + }, + { + "rel": "item", + "href": "./BC34_10000_0202.json", + "type": "application/json", + "file:checksum": "1220c8e4e6a8eed29bd3173860b164c090a451b1c9900a31815d7723856a74a461bd" + }, + { + "rel": "item", + "href": "./BC34_10000_0203.json", + "type": "application/json", + "file:checksum": "12206e517308d702fd2b44c86766d6c3a3f15cd37be1773a15069d03d8ce45b19cd1" + }, + { + "rel": "item", + "href": "./BC34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220966d4fac61aa2d1124d63cc156e9ce2ac7f021d376ff742510fe27a87de531aa" + }, + { + "rel": "item", + "href": "./BC34_10000_0301.json", + "type": "application/json", + "file:checksum": "1220ee28adbf7ce1fa6ce567f7a6326d12eb15ab0c848fc10fa26954f16dbc2bec64" + }, + { + "rel": "item", + "href": "./BC34_10000_0302.json", + "type": "application/json", + "file:checksum": "1220ddf9c1b73a551b74d68c3fd5686d4f5ba18c653294fcd443ab4c6c857fbad0e4" + }, + { + "rel": "item", + "href": "./BC34_10000_0303.json", + "type": "application/json", + "file:checksum": "1220db1e8e73d69a7fe7c73e54ca2eca602f811f9870c5ddaaa87bd81efa90ed714b" + }, + { + "rel": "item", + "href": "./BC34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220766ba703a1fc7ce03544d709a9b6780c022fd1768c8f867944e866d86ab74f93" + }, + { + "rel": "item", + "href": "./BC34_10000_0401.json", + "type": "application/json", + "file:checksum": "1220859bb029c76e4d5f3f76b0633a45d7865bb055a610bc654cdd7f39918b444030" + }, + { + "rel": "item", + "href": "./BC34_10000_0402.json", + "type": "application/json", + "file:checksum": "1220ce5559b12f40519c89551d6bb5426fd8df860ebc64f9632c9b74a880f3df13cf" + }, + { + "rel": "item", + "href": "./BC34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220ee7af762209cdc84a818c832c2f43b3d457a7cac691afb43e5553b93e1937f5f" + }, + { + "rel": "item", + "href": "./BC34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220f9982c1f3f663f45b34875e5aa7255029a1f0369157a4f7735896d3e9021acf2" + }, + { + "rel": "item", + "href": "./BC34_10000_0501.json", + "type": "application/json", + "file:checksum": "122079a242bcb744f5f0edb6019dd6ff7d0a24d6c923b14f1b2f2794a9c467b03df3" + }, + { + "rel": "item", + "href": "./BC34_10000_0502.json", + "type": "application/json", + "file:checksum": "12200df8618d492e70d35f23e777f2ee1c78c4d2b0c24ecfbab0dc78566078987c11" + }, + { + "rel": "item", + "href": "./BC34_10000_0503.json", + "type": "application/json", + "file:checksum": "12206fc5e44fb4987fbf0ba1fb0a3635ace46dcf0a3fb846a024b6ed866740c581fc" + }, + { + "rel": "item", + "href": "./BC34_10000_0504.json", + "type": "application/json", + "file:checksum": "122086679a607254b2e87f4d81a950c65db94df924c8a59bd273e13bdf01fa64daaa" + }, + { + "rel": "item", + "href": "./BC34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220c0482a74a1766c30efd93455a48545da7766542ac0f6eaf943bdbec926aac636" + }, + { + "rel": "item", + "href": "./BC35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220d2e503940c1fac61fecc79bf32da4b740cc0c2283f147d8cd34a0945d0983692" + }, + { + "rel": "item", + "href": "./BC35_10000_0102.json", + "type": "application/json", + "file:checksum": "12209f9321b10e463641d13f31a199ac1316982ce1aa7e4035670d8b41a03d5d82ef" + }, + { + "rel": "item", + "href": "./BC35_10000_0103.json", + "type": "application/json", + "file:checksum": "122010ed46b5b4a5780b7b2fa3cbd27c392930ed61220cebb48ff14fd133c2fc3801" + }, + { + "rel": "item", + "href": "./BC35_10000_0104.json", + "type": "application/json", + "file:checksum": "1220ca10aa84ec1e3ae1f44eabd2e04b385e54b840b6e8dcee290e5db6c3e25327ee" + }, + { + "rel": "item", + "href": "./BC35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220544cc6969008dea675489281ed37904a24a3dc6d9a275ec89f13e237ced77676" + }, + { + "rel": "item", + "href": "./BC35_10000_0201.json", + "type": "application/json", + "file:checksum": "12207630b4824510e717db1bd5f1d88811b62edbac2c005a9b228a05803a83571231" + }, + { + "rel": "item", + "href": "./BC35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220ab76d11d68401b8e726b6c819dbd6be3c34c3d4e2070c209066b1c360f47b139" + }, + { + "rel": "item", + "href": "./BC35_10000_0203.json", + "type": "application/json", + "file:checksum": "1220a59d92723208d38cf2c5edecde7a01fa5b16ce2fe891061c4893e7b0570b9318" + }, + { + "rel": "item", + "href": "./BC35_10000_0204.json", + "type": "application/json", + "file:checksum": "12204426ab1154b757407c5cf00a42b01cc5c60affd0384a62abc4c0c0f052674173" + }, + { + "rel": "item", + "href": "./BC35_10000_0205.json", + "type": "application/json", + "file:checksum": "12201a097470401199f53a390de76af3ea6d1bb23297ca568e5f9c99a861412c3b47" + }, + { + "rel": "item", + "href": "./BC35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220941aafc9a063b4ddf7527bc35443063c253e26fef1cd633019a50bf46f6c5b48" + }, + { + "rel": "item", + "href": "./BC35_10000_0302.json", + "type": "application/json", + "file:checksum": "12203a61af685db811075978530bd2988d41ee70672a2138eef685e4f7529484916a" + }, + { + "rel": "item", + "href": "./BC35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220e51c876d0be879594278365a96fe70f1262c01dd62d986336c40ebbff02ebc1e" + }, + { + "rel": "item", + "href": "./BC35_10000_0304.json", + "type": "application/json", + "file:checksum": "12209b14135d1b50f0e50a9a8a2af83a61996b94798390535c14366e752fbc468e0e" + }, + { + "rel": "item", + "href": "./BC35_10000_0305.json", + "type": "application/json", + "file:checksum": "12208fd2cdada5343b9fc4331cd754d1e653fd95885f05e47c5ace997ff92771663c" + }, + { + "rel": "item", + "href": "./BC35_10000_0401.json", + "type": "application/json", + "file:checksum": "12206ce9cf8e1d022ac942166f7ae091876f7b57ccfc8f6839f4504406631c230e12" + }, + { + "rel": "item", + "href": "./BC35_10000_0402.json", + "type": "application/json", + "file:checksum": "1220c65ad40cc85878d36c4004e1363271f5d73c872f83c8cfee742f4b2ccf94a6a4" + }, + { + "rel": "item", + "href": "./BC35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220f26e99069e371fbe0768c1793890d21e81b6c1a9f70895dc4e3069878d401954" + }, + { + "rel": "item", + "href": "./BC35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220f9aeb0eac5347e0068514a030502d01a701d395be681fd68f80f91d1262a2ef9" + }, + { + "rel": "item", + "href": "./BC35_10000_0405.json", + "type": "application/json", + "file:checksum": "12209421870839561126d2daf364b773ef2001c8181f49091f518ea80dd8b4b6223c" + }, + { + "rel": "item", + "href": "./BC35_10000_0501.json", + "type": "application/json", + "file:checksum": "122004df794db79e196eab911b50474166919be2fd1876aa5614507c9cc69a240960" + }, + { + "rel": "item", + "href": "./BC35_10000_0502.json", + "type": "application/json", + "file:checksum": "122013c90fb980fae80a04af595301629f46de0250fc835022de64e4f28b23fdc070" + }, + { + "rel": "item", + "href": "./BC35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d3194d2f6e6394b4839bbd02a54ee1e1640233772ec04ac6b27e349315a0894e" + }, + { + "rel": "item", + "href": "./BC35_10000_0504.json", + "type": "application/json", + "file:checksum": "122056d12bf3142145d0919460a002b24e0a56dc8601f0795b4f428a25574cb85a66" + }, + { + "rel": "item", + "href": "./BC35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220682c59a27cc2f846b10648f82a35e9cdd20ac3d293b8bef65bd417ec10c10fbc" + }, + { + "rel": "item", + "href": "./BC36_10000_0101.json", + "type": "application/json", + "file:checksum": "122068f4ade0fb8c3a65fc117a5902f776cca0c6d2e34ec05c5bfd7c6c355d79b53b" + }, + { + "rel": "item", + "href": "./BC36_10000_0102.json", + "type": "application/json", + "file:checksum": "12204efbb2969c25c677ffd19477e084b2b62f3836a86fa7ddff9b7dd3092354c2a4" + }, + { + "rel": "item", + "href": "./BC36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220c18aca11776814bb3a427bc3db364465190754ac1fca25c1fb1892ff124d6733" + }, + { + "rel": "item", + "href": "./BC36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220cce3b0e1fbc73bb5c611f9c28b56de989a889ff76dbb370ef7d1e52bd34475f3" + }, + { + "rel": "item", + "href": "./BC36_10000_0301.json", + "type": "application/json", + "file:checksum": "1220808a5f466b48279408c07ba0aa5cf68d91629fc1b8b063ff72a0a3be7aeb0d81" + }, + { + "rel": "item", + "href": "./BC36_10000_0302.json", + "type": "application/json", + "file:checksum": "12208cf661d0fbac169ccdec4fb8b543b4fbfc64bfa2933c78dbff0f30cff633ddf6" + }, + { + "rel": "item", + "href": "./BC36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220682267fc2ccf5ff866cf3b6e7d17447bf10714e4634a9c46107449ab1849ec7a" + }, + { + "rel": "item", + "href": "./BD31_10000_0405.json", + "type": "application/json", + "file:checksum": "12200ae0914afd7968f165ee25c5a2603d132dbd979d42eefcfce780c093a27a153b" + }, + { + "rel": "item", + "href": "./BD31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220a4d2487e1dc33e274a94f3e3e08dcb2e92ea7f8f8216d50d1b0395a4e765896f" + }, + { + "rel": "item", + "href": "./BD32_10000_0101.json", + "type": "application/json", + "file:checksum": "12201cb9f261b5f9605672a247b39a38705dc68e31021bd984796db6c20281e78528" + }, + { + "rel": "item", + "href": "./BD32_10000_0102.json", + "type": "application/json", + "file:checksum": "122031852e2c3b2d7c68ea5ba588f7361d6c2ea4d68b63630b86dd5be5897754a8b2" + }, + { + "rel": "item", + "href": "./BD32_10000_0103.json", + "type": "application/json", + "file:checksum": "122032621cdaa2afbedb5811754baf9c4df7bf134ec566c61ea1e2156813e7295dcb" + }, + { + "rel": "item", + "href": "./BD32_10000_0104.json", + "type": "application/json", + "file:checksum": "122019a0cc16cc7e0e76b9e013740c2f13f8fbc0bd4cc47e4780b397457f84aa4b5a" + }, + { + "rel": "item", + "href": "./BD32_10000_0105.json", + "type": "application/json", + "file:checksum": "122082aaf42023cf3b19a133d5825207915563e29207fe810dbc16e547fbb0925695" + }, + { + "rel": "item", + "href": "./BD32_10000_0201.json", + "type": "application/json", + "file:checksum": "122094d5571409b92d15cdf70501fedc365f7b105328e537024789098a247c6ee337" + }, + { + "rel": "item", + "href": "./BD32_10000_0202.json", + "type": "application/json", + "file:checksum": "122019e5703c640cd7457ae1f6241649e035279cd5a3efb4062aa884403d0bf1250c" + }, + { + "rel": "item", + "href": "./BD32_10000_0203.json", + "type": "application/json", + "file:checksum": "122006aeb035ba468c554d61c89626aeaa82323c22ccb41040aafbcfa73b326554ef" + }, + { + "rel": "item", + "href": "./BD32_10000_0204.json", + "type": "application/json", + "file:checksum": "1220afa0881abf39b511fbe20436c5c3a601f147f15eb3bd8f4ec74029c38faf7a9e" + }, + { + "rel": "item", + "href": "./BD32_10000_0205.json", + "type": "application/json", + "file:checksum": "12201fe0759b18fb3bf4670d8fbb2962ef272246fc00f59224c357dca9299ffd13c0" + }, + { + "rel": "item", + "href": "./BD32_10000_0301.json", + "type": "application/json", + "file:checksum": "12200faa26f343cc61e031e718658698f864141613ed01b413145f90e9b2a0b17abe" + }, + { + "rel": "item", + "href": "./BD32_10000_0302.json", + "type": "application/json", + "file:checksum": "12208a7d7b894d7080992c6f95b53b07ac275888111c3a0ec287be1f7729b214769b" + }, + { + "rel": "item", + "href": "./BD32_10000_0303.json", + "type": "application/json", + "file:checksum": "1220dbd2804a3639f3ebd855c30276c8e3eb1e975a3987af42a822e0ad974df688c2" + }, + { + "rel": "item", + "href": "./BD32_10000_0304.json", + "type": "application/json", + "file:checksum": "1220b34f046c493fd1341c1359aa96d457060f5a18d8328314bccd9f9dee638d8eaf" + }, + { + "rel": "item", + "href": "./BD32_10000_0305.json", + "type": "application/json", + "file:checksum": "1220bee0784bfbf36e61592033739d9a7a1a2aa3ed03dd637f6334eb3b098e4010a5" + }, + { + "rel": "item", + "href": "./BD32_10000_0401.json", + "type": "application/json", + "file:checksum": "122044d06ff15a774ee346d66adb4359e1579832d24b92c046fc77e90576505368ca" + }, + { + "rel": "item", + "href": "./BD32_10000_0402.json", + "type": "application/json", + "file:checksum": "12207398cefa025fe0bb10a1210a013e95efcf3f8a403b1e7fa4f4266f75c9090728" + }, + { + "rel": "item", + "href": "./BD32_10000_0403.json", + "type": "application/json", + "file:checksum": "1220047fb46c484626fbccbd2268e91af856562e9953bf6eea49cf94da5cd61ed7c0" + }, + { + "rel": "item", + "href": "./BD32_10000_0404.json", + "type": "application/json", + "file:checksum": "12208ae69eb7a7fa4e2dc08a25be9cc9e121c6505c243228c5dfabe64963989f3c33" + }, + { + "rel": "item", + "href": "./BD32_10000_0405.json", + "type": "application/json", + "file:checksum": "12205f0dde94bc1a8b8c88a4d6c81432502b0f159ab11c232f65af0e4379a153dce8" + }, + { + "rel": "item", + "href": "./BD32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220b97c551ad07dabe98d9f95779acfe37368c1644c8b2b4000ff6868c4864a9c59" + }, + { + "rel": "item", + "href": "./BD32_10000_0502.json", + "type": "application/json", + "file:checksum": "1220fc9cb3f4dc3d9160d3d5c2da1f9d1556d8d92659f20f9ea28f4f08f7fa9ae84b" + }, + { + "rel": "item", + "href": "./BD32_10000_0503.json", + "type": "application/json", + "file:checksum": "1220e87d4be3424ed3c851630a6fa540d1b0a20f05dfb15e958a71992ee93757b224" + }, + { + "rel": "item", + "href": "./BD32_10000_0504.json", + "type": "application/json", + "file:checksum": "1220b43f8e56d15e524280ad05b545634c0dcce3d65f86a9abf67d29a9676ccbd47a" + }, + { + "rel": "item", + "href": "./BD32_10000_0505.json", + "type": "application/json", + "file:checksum": "122084ec1543314da510b9fa90344ee1507db29cb53d9f3bf9e81cbc7e18f9513c8a" + }, + { + "rel": "item", + "href": "./BD33_10000_0101.json", + "type": "application/json", + "file:checksum": "1220063b2d1ce260e26cf72c20af904c0b0453b5ead91c6a6a347679e57292f1aa3e" + }, + { + "rel": "item", + "href": "./BD33_10000_0102.json", + "type": "application/json", + "file:checksum": "1220dd3044bb3aeef8e5796c343373624b5af0d4b7d2a71b4954319d8c1217a21890" + }, + { + "rel": "item", + "href": "./BD33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220f7de77ee4c11a90ddefb6e0f1a89e9be0c039515e4f355b32f1ee4b985fd47b6" + }, + { + "rel": "item", + "href": "./BD33_10000_0104.json", + "type": "application/json", + "file:checksum": "12203336a17e3f2a02e495f4df61d0873a3c59c7cd90b00d931c13efb212af07d60b" + }, + { + "rel": "item", + "href": "./BD33_10000_0105.json", + "type": "application/json", + "file:checksum": "122089d29ee12a8b4a55a6e8bd4f9972da06e399aed529acb0b40762fb65b593ef50" + }, + { + "rel": "item", + "href": "./BD33_10000_0201.json", + "type": "application/json", + "file:checksum": "1220ad4018bd83f4f65b3e9dc8046b3effc6043f11d8a0a4e165fbe9d9ed56597367" + }, + { + "rel": "item", + "href": "./BD33_10000_0202.json", + "type": "application/json", + "file:checksum": "12202492373c950c57b357102ebfe37f947ecb99a3931ae739c083a24baa746671ce" + }, + { + "rel": "item", + "href": "./BD33_10000_0203.json", + "type": "application/json", + "file:checksum": "12209d70c1e37493dcd0998dc702fcd3c2f403d74aba245be3e68568437d31cfe5b5" + }, + { + "rel": "item", + "href": "./BD33_10000_0204.json", + "type": "application/json", + "file:checksum": "1220ce5473417f1dfb2f0224e225a205ef01c365992f2d536f2046cebb9f8eeb6e2f" + }, + { + "rel": "item", + "href": "./BD33_10000_0205.json", + "type": "application/json", + "file:checksum": "122066db53defb53e82613f68ff2bac3bb1ca4d9aa440bb1ed61a345affa954e1101" + }, + { + "rel": "item", + "href": "./BD33_10000_0301.json", + "type": "application/json", + "file:checksum": "12203290d7a63fed9f209958eac93e5970b4138c12a87b39d6fc21c94e828d02d882" + }, + { + "rel": "item", + "href": "./BD33_10000_0302.json", + "type": "application/json", + "file:checksum": "1220f02af590667a298246b2ea12562e00196ad0673583a9b913128b9937f74a6046" + }, + { + "rel": "item", + "href": "./BD33_10000_0303.json", + "type": "application/json", + "file:checksum": "1220cdd4056a1f40271e2d489a786acf422d4aef904aedb01423230d00de8199d6de" + }, + { + "rel": "item", + "href": "./BD33_10000_0304.json", + "type": "application/json", + "file:checksum": "12204236416309a0ce6f502353fc2b6f0040dab2304fbdea727c32550a22c9781234" + }, + { + "rel": "item", + "href": "./BD33_10000_0305.json", + "type": "application/json", + "file:checksum": "12209ae2164948f91fa3ef9a87ec829500331fa812fb524f3e35127b3ef69cf3fc07" + }, + { + "rel": "item", + "href": "./BD33_10000_0401.json", + "type": "application/json", + "file:checksum": "12209e167983bde6adbbcc80c8938ee13e57c253892c866ce2ad3d1a7c6b4345ac2a" + }, + { + "rel": "item", + "href": "./BD33_10000_0402.json", + "type": "application/json", + "file:checksum": "12200d698769ba5b30a3f0ab0df51d367041666fe534853a0666c1e1b99bb1bdf90b" + }, + { + "rel": "item", + "href": "./BD33_10000_0403.json", + "type": "application/json", + "file:checksum": "12200bdb365dd26266249e989eaf00b99ca454b94827615701145c2d576248a6522b" + }, + { + "rel": "item", + "href": "./BD33_10000_0404.json", + "type": "application/json", + "file:checksum": "1220077aa3638c5ef4b9b7d64d3d92b7214607119f9b7e7b9461852a07dfc5f71613" + }, + { + "rel": "item", + "href": "./BD33_10000_0405.json", + "type": "application/json", + "file:checksum": "12202fb8cc31c5e940d1562cf52fdccabc5c0974f3c67e134690cc5e0769019e7734" + }, + { + "rel": "item", + "href": "./BD33_10000_0501.json", + "type": "application/json", + "file:checksum": "1220f8eae591449921a0f1563da75c3c99b1692fa44d72c5cc47ec773c3c73b2416e" + }, + { + "rel": "item", + "href": "./BD33_10000_0502.json", + "type": "application/json", + "file:checksum": "1220efba8bbcb8869d786e09e74e975b5a323d0edc25a2b66e2770fab4ea5e9d2a06" + }, + { + "rel": "item", + "href": "./BD33_10000_0503.json", + "type": "application/json", + "file:checksum": "1220b1397026cf0a9e3da10bda3bb840ff78b302e3be077083ceddd6e2e65af67dfc" + }, + { + "rel": "item", + "href": "./BD33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220626e0ccb861d44ce158504ecd4f352528ed0898112305d8538c3913925e6b024" + }, + { + "rel": "item", + "href": "./BD33_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e605a58523a5508709a8d724433ad2f06fd3b03e46906f3698029895e9d81a16" + }, + { + "rel": "item", + "href": "./BD34_10000_0101.json", + "type": "application/json", + "file:checksum": "122023b90e2aa42429efc26043b22a73c952ead301c9fc3824b0b481a7b0238cd4ec" + }, + { + "rel": "item", + "href": "./BD34_10000_0102.json", + "type": "application/json", + "file:checksum": "12204035e3f38866ef192ea214a9226623e22fc1b7dc557e8d9da56898f062fa5789" + }, + { + "rel": "item", + "href": "./BD34_10000_0103.json", + "type": "application/json", + "file:checksum": "1220db99f356d5e4da2cb67ab3f8c8fe3232c142e8a8e2215ac0621c9917e5c6cb47" + }, + { + "rel": "item", + "href": "./BD34_10000_0104.json", + "type": "application/json", + "file:checksum": "122012c23e6cc84a922c4c50f2ec71800a99d808a448e1ecdba8df3d70588a31d7e1" + }, + { + "rel": "item", + "href": "./BD34_10000_0105.json", + "type": "application/json", + "file:checksum": "12203e863ec75e01c9fcc478cc3f36c3e2ebbde9ba369c27c913abe1673ff1a9ff44" + }, + { + "rel": "item", + "href": "./BD34_10000_0201.json", + "type": "application/json", + "file:checksum": "1220d5954b781ee4f81ff39a50844e700c4bc463ca5be9cde56a9baf4a0adf042bc1" + }, + { + "rel": "item", + "href": "./BD34_10000_0202.json", + "type": "application/json", + "file:checksum": "12205682e073ded693a0ca1d4fb6710fe807a1e80b82726054ecc5142507a18ea0d6" + }, + { + "rel": "item", + "href": "./BD34_10000_0203.json", + "type": "application/json", + "file:checksum": "1220e560bf200235135be0efc517192c7e4fd15f63581f9955189a57d52c8d4196c0" + }, + { + "rel": "item", + "href": "./BD34_10000_0204.json", + "type": "application/json", + "file:checksum": "122086ee3d3922f25f8cdc7758ee77f42d1153c4e4a5b4fa5a1d90d09ad85c61a152" + }, + { + "rel": "item", + "href": "./BD34_10000_0205.json", + "type": "application/json", + "file:checksum": "12205326921ae73c5466425e1ebd7dbf0189676483509d58c71c3db0ce62313b2bdf" + }, + { + "rel": "item", + "href": "./BD34_10000_0301.json", + "type": "application/json", + "file:checksum": "122063b2e33e3d549cdd95f088e2e4e0f32256cad45b789f6b2ef9dcfe01d3338720" + }, + { + "rel": "item", + "href": "./BD34_10000_0302.json", + "type": "application/json", + "file:checksum": "12200daa7e091ebeb9fb140c89b36a0dd22ed96ffd29a23c4b10bc7048f2cd4c13b1" + }, + { + "rel": "item", + "href": "./BD34_10000_0303.json", + "type": "application/json", + "file:checksum": "1220e1c3464751ff4cf32a08946f5712f190e03af2a39d90723d5081db9f7e5c9069" + }, + { + "rel": "item", + "href": "./BD34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220066ebd41e7b2aeea58d6503df418c2527edb87eb34c8b2a64d3d309c136b14d0" + }, + { + "rel": "item", + "href": "./BD34_10000_0305.json", + "type": "application/json", + "file:checksum": "1220867b59fb9f3d75dc2bccab31832e359c2dc86a29ce21d94a333d5c53e111ee46" + }, + { + "rel": "item", + "href": "./BD34_10000_0401.json", + "type": "application/json", + "file:checksum": "1220d59fe1aad3605d343f9f46a5a50557e116881128a3fa1fa19fa54f5ecea8503f" + }, + { + "rel": "item", + "href": "./BD34_10000_0402.json", + "type": "application/json", + "file:checksum": "122023e0abab352aaa1789de701ab923b68cc3fc40cddfa4dab6e455e3964d8a82ba" + }, + { + "rel": "item", + "href": "./BD34_10000_0403.json", + "type": "application/json", + "file:checksum": "12204973192ffe3b12600f868cc4f56d6f6486f1bb7c831e3a4fa4b5c8efc4ef3d41" + }, + { + "rel": "item", + "href": "./BD34_10000_0404.json", + "type": "application/json", + "file:checksum": "12202f011bf9353e1709febe51467cbb1471d03b4b3cee21192742a5d4cfee92afb9" + }, + { + "rel": "item", + "href": "./BD34_10000_0405.json", + "type": "application/json", + "file:checksum": "1220efedeed7e7325d1528a4f88dee48a8b63eac85c77db23b4ea7cfbaab1ed492fe" + }, + { + "rel": "item", + "href": "./BD34_10000_0501.json", + "type": "application/json", + "file:checksum": "1220337e2d82d4b5160ccfac5a9d00d3597d2f1531038713414485c34c8c21e2f36b" + }, + { + "rel": "item", + "href": "./BD34_10000_0502.json", + "type": "application/json", + "file:checksum": "12208c2ca7b268273a021d5406a882a10af025a2095f1e1533a27e97943e7ec868a0" + }, + { + "rel": "item", + "href": "./BD34_10000_0503.json", + "type": "application/json", + "file:checksum": "12209e45458f55b3c287d67c42734f9dd9ec183d7ca63e686376bb47132824efb169" + }, + { + "rel": "item", + "href": "./BD34_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c585a935abe998d614ced87b5e68307da8f07f549ea216e22ee2c440f6726635" + }, + { + "rel": "item", + "href": "./BD34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220d50a3f3bf751c84ebf9531313d1272e390c01e5e22ca9e08b6404a51f276aa49" + }, + { + "rel": "item", + "href": "./BD35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220c9a6c1b8871033d344d8b446e57831f84ffbb95a4c1203c75c87d4dea0d0e03c" + }, + { + "rel": "item", + "href": "./BD35_10000_0102.json", + "type": "application/json", + "file:checksum": "122088d4be531e90d97194dbe0706e2544933ff86d52cfb8f0b02783e53d26e578d1" + }, + { + "rel": "item", + "href": "./BD35_10000_0103.json", + "type": "application/json", + "file:checksum": "122050b23d99b485b5524b9eefdbb9491eb422b3c4847a90124b078abf7a68096b1d" + }, + { + "rel": "item", + "href": "./BD35_10000_0104.json", + "type": "application/json", + "file:checksum": "122033e5558b88ea916b6cd0a151bfdf575feecf42b9ea786f04688323fe041bc20c" + }, + { + "rel": "item", + "href": "./BD35_10000_0105.json", + "type": "application/json", + "file:checksum": "122012d4a47cb79bf90a37acd68f887ff24b7c804d15825d9f684623ae46398c3f61" + }, + { + "rel": "item", + "href": "./BD35_10000_0201.json", + "type": "application/json", + "file:checksum": "1220e25825b1ef05de6b02317b0115bfca568836140d3be97cf698e826e523cc8917" + }, + { + "rel": "item", + "href": "./BD35_10000_0202.json", + "type": "application/json", + "file:checksum": "122047d864489822fee121939f2b66b38fd9e2f95e253d86ec160ecf507b8de92049" + }, + { + "rel": "item", + "href": "./BD35_10000_0203.json", + "type": "application/json", + "file:checksum": "122006bc4c78bcafab834b50f72b935007749c723de46795c7c51fe1bd4790ccea41" + }, + { + "rel": "item", + "href": "./BD35_10000_0204.json", + "type": "application/json", + "file:checksum": "122022377cc2bf210924c20d2f9aed6029690381449c97948cbfb4ed4cdeaee1e391" + }, + { + "rel": "item", + "href": "./BD35_10000_0205.json", + "type": "application/json", + "file:checksum": "12209873e69385b5ca8e412e471b05b8118326af4c2df7f5eca8182ca2ce4adde5ce" + }, + { + "rel": "item", + "href": "./BD35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220df0bbb1b78851609329d060f48613ee21720568071f67e015d947c8fc7e93dfe" + }, + { + "rel": "item", + "href": "./BD35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220fc4a2ddbd34315980f272f0c2333642eecb9c1bf059f92edd0afc91439472439" + }, + { + "rel": "item", + "href": "./BD35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220724d1a6d76ed72681cbac5a33d3e7eaa10c4b6a7b065b39f6d9fdfea99561cce" + }, + { + "rel": "item", + "href": "./BD35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220dc61e2124685aa3c97cb1649d6fc8d7d6f2da0a42aef8b0c3a4b19a62136a100" + }, + { + "rel": "item", + "href": "./BD35_10000_0305.json", + "type": "application/json", + "file:checksum": "1220013f3af7efa5afb2a620cc8c3c160e619beecf2e81e744366b66e8c09ea75948" + }, + { + "rel": "item", + "href": "./BD35_10000_0401.json", + "type": "application/json", + "file:checksum": "12202a751ae9dc011a2f2bf02c2a4ac68c0ee3119d823a8970ed66e4e59357bf5f12" + }, + { + "rel": "item", + "href": "./BD35_10000_0402.json", + "type": "application/json", + "file:checksum": "122075ec23af4d1fc180d89c712afb20195800674144a71f09704de151cc204aaccb" + }, + { + "rel": "item", + "href": "./BD35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220fc8d5620bc6ab4a62de0c8b1d5a687a71c0b60771fc1d205b403bace55202ea4" + }, + { + "rel": "item", + "href": "./BD35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220c7006c4b45dd5ddf36c0a11ca662b97311bd5b410d607536e991a0c1da2568f3" + }, + { + "rel": "item", + "href": "./BD35_10000_0405.json", + "type": "application/json", + "file:checksum": "1220ff11bbbf99203b37c9ba810c5efcf27cf4f21a0e11ada5c45f7817a2d5329214" + }, + { + "rel": "item", + "href": "./BD35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220a2731de00e5b92e36b810f72c2d0f7c5a3b094afe0e1e2def3ebd30c366747cb" + }, + { + "rel": "item", + "href": "./BD35_10000_0502.json", + "type": "application/json", + "file:checksum": "12209df7cb08239bf8da468b1015c446a76a12701f446422188770c2caaec6599d46" + }, + { + "rel": "item", + "href": "./BD35_10000_0503.json", + "type": "application/json", + "file:checksum": "12205b1c65e2835ba058ec29a3de4767d628094840c686ab164313d90b3f5eaa6308" + }, + { + "rel": "item", + "href": "./BD35_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c8e873a0867bccf2caf1611e51ee6e59db2e995ecba9e11369c31ffa47c0e3d2" + }, + { + "rel": "item", + "href": "./BD35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220bb154171559272649b6715b5b810024f71abcfeae76eca8a6369e4cfa6108b3c" + }, + { + "rel": "item", + "href": "./BD36_10000_0201.json", + "type": "application/json", + "file:checksum": "12201d5a209e0a3d625525d0e2098b9f345aae7aa7b0d6dda9c9a26ed37f5d60305d" + }, + { + "rel": "item", + "href": "./BD36_10000_0301.json", + "type": "application/json", + "file:checksum": "122072fe08d2ffe23e4f2ea6fa5c1e440e8850c4d9fafd9eb0c0ab7713ad7c74cfe2" + }, + { + "rel": "item", + "href": "./BD36_10000_0302.json", + "type": "application/json", + "file:checksum": "12202446105ddf6258f44db48ad9072f3b23581aebe09628027ad743b93f501d1d5c" + }, + { + "rel": "item", + "href": "./BD36_10000_0401.json", + "type": "application/json", + "file:checksum": "12203cef903dd9567dbebbefe8ff70690e71d47d600c67582934b32d8e9eb768797f" + }, + { + "rel": "item", + "href": "./BD36_10000_0402.json", + "type": "application/json", + "file:checksum": "1220a2a7b4a89ce1952f69800f02957bcb47f7d27c6c3b7eb6e14e13cabfca66a8d0" + }, + { + "rel": "item", + "href": "./BD36_10000_0501.json", + "type": "application/json", + "file:checksum": "122022e011f4ebbeba38c9ce48861b525ecde582b8b3e8552ca783581a3fc518f7cf" + }, + { + "rel": "item", + "href": "./BD36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220967e70d8a1868dbed1201a434468e3f4ee66a2baabb29bbc8929e9646a1a9efa" + }, + { + "rel": "item", + "href": "./BE31_10000_0105.json", + "type": "application/json", + "file:checksum": "1220a9e7f7ea55436d476561b0729fda841f14599dfc3582192ca53401a1ff483337" + }, + { + "rel": "item", + "href": "./BE31_10000_0304.json", + "type": "application/json", + "file:checksum": "1220f23b2e100929e31a65dd2889e1e47631f03575c1e5186509500c440df042dac1" + }, + { + "rel": "item", + "href": "./BE31_10000_0305.json", + "type": "application/json", + "file:checksum": "12201a2d3ee94943f6fd3dcf464fe6914caa8c5e4a6351f315666c8366819d9725df" + }, + { + "rel": "item", + "href": "./BE31_10000_0404.json", + "type": "application/json", + "file:checksum": "12207726e024caf0849786bd721b1a010e4d597240a63a50a15d484244ed7de5c6a4" + }, + { + "rel": "item", + "href": "./BE31_10000_0405.json", + "type": "application/json", + "file:checksum": "12201b74faaf3cd803fe47568f0ca4e3d2649da3cdc93a3d4665477c209699d3c62d" + }, + { + "rel": "item", + "href": "./BE31_10000_0504.json", + "type": "application/json", + "file:checksum": "122068ff59ebf88c88d7d1f1220b36883e456ccaa9f67f5ab5597506f691536e742a" + }, + { + "rel": "item", + "href": "./BE31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220923ce9df675a0f9535cd3df69eea28d2b1e28f92840a0f87a66006437b780633" + }, + { + "rel": "item", + "href": "./BE32_10000_0101.json", + "type": "application/json", + "file:checksum": "12207343d9aa7686044951c8fe4cd23250b225bb5f650b215d1f90e2ccb56922cd59" + }, + { + "rel": "item", + "href": "./BE32_10000_0102.json", + "type": "application/json", + "file:checksum": "12200f0f55e35d144bcb236dfdee564b15535c6e92bf22556c56ee88d1fce9c74ea7" + }, + { + "rel": "item", + "href": "./BE32_10000_0103.json", + "type": "application/json", + "file:checksum": "12206761c14280747a5c0faac164c5d47329c3a74310c0f5e2d853a0101f2c5e4be6" + }, + { + "rel": "item", + "href": "./BE32_10000_0104.json", + "type": "application/json", + "file:checksum": "122040ee022c3e4007671db6cf28c23784135b5e05fd2cdcba5121951bf7ded2cf4f" + }, + { + "rel": "item", + "href": "./BE32_10000_0105.json", + "type": "application/json", + "file:checksum": "12207e5e7b2db862028d7f38101512206e1e979013dd9dda8051646071afb9692581" + }, + { + "rel": "item", + "href": "./BE32_10000_0201.json", + "type": "application/json", + "file:checksum": "1220aa9467ae28c12f5d6ce055019137482ae0dcc732e98aa8738ed3b5d2691765e3" + }, + { + "rel": "item", + "href": "./BE32_10000_0202.json", + "type": "application/json", + "file:checksum": "12209931884e328847d0a7ddbb70202ff9b67d97b336f69849fd2137ccc82e014a72" + }, + { + "rel": "item", + "href": "./BE32_10000_0203.json", + "type": "application/json", + "file:checksum": "1220c7b2bbb1f57165a1d731322446a5faa785ecdd9c19afad5c077cee7de2a125d1" + }, + { + "rel": "item", + "href": "./BE32_10000_0204.json", + "type": "application/json", + "file:checksum": "122061a8b24709301b9a4400b9f1f50f75eacbdb60548ce41dbe939d2358db903f8d" + }, + { + "rel": "item", + "href": "./BE32_10000_0205.json", + "type": "application/json", + "file:checksum": "122017144530b8391a78d6899e82f5351a39b28c092efa0368077697a4d31c56af6b" + }, + { + "rel": "item", + "href": "./BE32_10000_0301.json", + "type": "application/json", + "file:checksum": "1220431ae8d95892a662c25b7371978339bbbaa0d5c249c6e1048206d0f883e28745" + }, + { + "rel": "item", + "href": "./BE32_10000_0302.json", + "type": "application/json", + "file:checksum": "1220aefe2e455dae31fb33fe8bc7c2e75fe3f143718b680b23a579a88cbe47b1b2c0" + }, + { + "rel": "item", + "href": "./BE32_10000_0303.json", + "type": "application/json", + "file:checksum": "122050fbf9105c463a368821485861733d409243b3d65183547f5883e75210c52d88" + }, + { + "rel": "item", + "href": "./BE32_10000_0304.json", + "type": "application/json", + "file:checksum": "1220765cbc73bf3bf981ff72799be4db40e4c0820dd56b44933e017f2928c66c1ee3" + }, + { + "rel": "item", + "href": "./BE32_10000_0305.json", + "type": "application/json", + "file:checksum": "1220ad8e8538dedaf2bf1a4fb18fe80232dfa8d8d0bfa6cf0e2e929a298f5940e2e1" + }, + { + "rel": "item", + "href": "./BE32_10000_0401.json", + "type": "application/json", + "file:checksum": "12203542b29fbe77f4bdadfa1f0caa02fb8586d88cd8a527a779995c08b182ba4652" + }, + { + "rel": "item", + "href": "./BE32_10000_0402.json", + "type": "application/json", + "file:checksum": "12201dd5427895cea52f48f9fd0e4050ffba3dfd4079bbfbb0a3f0a68f2694cf9769" + }, + { + "rel": "item", + "href": "./BE32_10000_0403.json", + "type": "application/json", + "file:checksum": "122067e204d0b14bbf7d4ce13a68d3ea8b7fc235ac9aea3a988d7d8852491cc9db0e" + }, + { + "rel": "item", + "href": "./BE32_10000_0404.json", + "type": "application/json", + "file:checksum": "122067e6fb1e48f8144fecbb78edcf8bcec967ae790440396172e744aade71d19a46" + }, + { + "rel": "item", + "href": "./BE32_10000_0405.json", + "type": "application/json", + "file:checksum": "1220cb5802830e289cf21d49a2410bace6ff4673faaeca3c1a48b32174321dca16fb" + }, + { + "rel": "item", + "href": "./BE32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220cf8d6f8b4f5ea38adb76c74f47cb1bb52d011ac2c42c5277701bfc41b8ff275b" + }, + { + "rel": "item", + "href": "./BE32_10000_0502.json", + "type": "application/json", + "file:checksum": "1220e038717255262816d851f844ab8bddff620c7e0f6817cff1f1cd85a42db0f1a9" + }, + { + "rel": "item", + "href": "./BE32_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d08f613d1bab7016f4e483a4b00cb1b29b4c91880c2aeedbb645d711a680a453" + }, + { + "rel": "item", + "href": "./BE32_10000_0504.json", + "type": "application/json", + "file:checksum": "12207fc9296e58d2eade3684a81f86320f95bf8c5f2d915fab51ffd875aad44851b6" + }, + { + "rel": "item", + "href": "./BE32_10000_0505.json", + "type": "application/json", + "file:checksum": "12204f0c4d6435025e2ffceb660b1b9d7ed24ed3a39a55a41b89dcfe8953b0d8505e" + }, + { + "rel": "item", + "href": "./BE33_10000_0101.json", + "type": "application/json", + "file:checksum": "1220417cd2418cb454bd4ae0f1e5d381558b288661eb440e6df445113766fdf4591e" + }, + { + "rel": "item", + "href": "./BE33_10000_0102.json", + "type": "application/json", + "file:checksum": "1220c87fc46e08731f1463075f4ed69945c7a5e730043bdc2b51ea317a226358031a" + }, + { + "rel": "item", + "href": "./BE33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220340b9942e32389ef7a10676dcc70afdbaf07b82a5c65780ab5701ef5a7ac0642" + }, + { + "rel": "item", + "href": "./BE33_10000_0104.json", + "type": "application/json", + "file:checksum": "12205d3bb31fdbd84be9095d32d6f7f1d30d87159d8e1265ae8d4f7646930849f1e6" + }, + { + "rel": "item", + "href": "./BE33_10000_0105.json", + "type": "application/json", + "file:checksum": "122045a6f0f043a340ca011bef0a7741fe5c3c91a557e0b188b7f9bcaa3e5bb3325e" + }, + { + "rel": "item", + "href": "./BE33_10000_0201.json", + "type": "application/json", + "file:checksum": "12205c5f8683d3c9f736f617171962d2a6f7e1cfc82a84fbd1d6c6b04b9d3b6378ef" + }, + { + "rel": "item", + "href": "./BE33_10000_0202.json", + "type": "application/json", + "file:checksum": "12205f7aed1ab5717636111b3626ead04d24377552136a2ed5436bb36f65f5a1f56c" + }, + { + "rel": "item", + "href": "./BE33_10000_0203.json", + "type": "application/json", + "file:checksum": "1220a5ecff677827f05ba5ca767388877016f34ef21b5af7d4d972a123cada7a6ae4" + }, + { + "rel": "item", + "href": "./BE33_10000_0204.json", + "type": "application/json", + "file:checksum": "12201db2a17b1e92c76306c303c213b5eddeb3e2bd445fbc22e936a3236f6b6c2252" + }, + { + "rel": "item", + "href": "./BE33_10000_0205.json", + "type": "application/json", + "file:checksum": "1220b35b28e06573b94a1ed4cc55f3a26ecae77babc23ac2d9464300425110c0db20" + }, + { + "rel": "item", + "href": "./BE33_10000_0301.json", + "type": "application/json", + "file:checksum": "12207738157fb86033fac76547ec9198eee7eec9fb2edacaa77e7f6e4a17b6e10547" + }, + { + "rel": "item", + "href": "./BE33_10000_0302.json", + "type": "application/json", + "file:checksum": "122052550acf12ded3da17b36ecb70ab79f6ccef50cb2e31ae2179d30edaebce85bd" + }, + { + "rel": "item", + "href": "./BE33_10000_0303.json", + "type": "application/json", + "file:checksum": "1220068467ebd16186793f807c57cc082925820a8dbc48836d07bbfda1221b146933" + }, + { + "rel": "item", + "href": "./BE33_10000_0304.json", + "type": "application/json", + "file:checksum": "12207a94da831e7748695e8a6e9e2ed8622c0a7030214bcbda8e0fc9645cad82c41c" + }, + { + "rel": "item", + "href": "./BE33_10000_0305.json", + "type": "application/json", + "file:checksum": "1220532a16db7e3ed44f23f4ea870ed13580f2a02740861dff32cdaee5b8e9909887" + }, + { + "rel": "item", + "href": "./BE33_10000_0401.json", + "type": "application/json", + "file:checksum": "1220e204c732f66809e934d561ea6fa441767710d85c159b19a9a65957aa9e8fc8ed" + }, + { + "rel": "item", + "href": "./BE33_10000_0402.json", + "type": "application/json", + "file:checksum": "1220ee9f9d3d45005fa0c5898bc24d4745e7a84281996547a551a582247412da1b38" + }, + { + "rel": "item", + "href": "./BE33_10000_0403.json", + "type": "application/json", + "file:checksum": "12206bb24f78a076a9527d5644c365e5df3232eb0fe005221f132ddda8b391f841b4" + }, + { + "rel": "item", + "href": "./BE33_10000_0404.json", + "type": "application/json", + "file:checksum": "1220f878a28e6ac108c8827e4a099c8940a08ccbaedf1d58042c7759f46edd8a3fe9" + }, + { + "rel": "item", + "href": "./BE33_10000_0405.json", + "type": "application/json", + "file:checksum": "1220fad187caea36f1901c454f920ab2c60ce3134d105abf049ac84403b80de6281d" + }, + { + "rel": "item", + "href": "./BE33_10000_0501.json", + "type": "application/json", + "file:checksum": "1220e746e022ec0a067a7585d23b85484085eff71cb334eee5169fd47a6a2e155acb" + }, + { + "rel": "item", + "href": "./BE33_10000_0502.json", + "type": "application/json", + "file:checksum": "122019a1ab51d82ce86dac22eaf18f2a4f47e5b48874ad5ba75df7dacb9a8ce80467" + }, + { + "rel": "item", + "href": "./BE33_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d5405f9f44daea9675c7f70d5fbe4bf714389d342ed26464b8651b34b97b653b" + }, + { + "rel": "item", + "href": "./BE33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220972b124a26a4dd793b1684a7b20411757bc6d05a1b1cbed41965982e52dde56a" + }, + { + "rel": "item", + "href": "./BE33_10000_0505.json", + "type": "application/json", + "file:checksum": "1220f8e4b4483b93046ba711a65ca6ab96561890884247658c79172acc8caabe0cf8" + }, + { + "rel": "item", + "href": "./BE34_10000_0101.json", + "type": "application/json", + "file:checksum": "1220949189df8482afeb8e2cfc0375d170cc0535d5b707f4e6cd168f4bc7b67631f2" + }, + { + "rel": "item", + "href": "./BE34_10000_0102.json", + "type": "application/json", + "file:checksum": "1220e125ecb1242b13c063ef18bab5c98c27dc58c8b024f847ca1c8602c209f1fdff" + }, + { + "rel": "item", + "href": "./BE34_10000_0103.json", + "type": "application/json", + "file:checksum": "122089af9f96dbb4f0469c171385b6a0a9ca5aee09fe43240f4c615ca6b31a9c58be" + }, + { + "rel": "item", + "href": "./BE34_10000_0104.json", + "type": "application/json", + "file:checksum": "12207b96d235d878b8f32148271dd67bb63c439289344a06c33170d671d67f6494c9" + }, + { + "rel": "item", + "href": "./BE34_10000_0105.json", + "type": "application/json", + "file:checksum": "122077d77eb26ba1f3d8874c31306fb50d4e038d901c18344b124580d4ec0bf9cd83" + }, + { + "rel": "item", + "href": "./BE34_10000_0201.json", + "type": "application/json", + "file:checksum": "1220f0f24442b8da11aec6a2aa2ba01ba38ba46030e33ca9cc801e482959bdda2b8e" + }, + { + "rel": "item", + "href": "./BE34_10000_0202.json", + "type": "application/json", + "file:checksum": "1220b868661c96440f53f51780d737901ced163b9ae25237acae067abb9de67c047a" + }, + { + "rel": "item", + "href": "./BE34_10000_0203.json", + "type": "application/json", + "file:checksum": "1220ddd9210a0fd6ff7df2e84f89094e684862e4c3e07075cd1839dd82b6270b77e6" + }, + { + "rel": "item", + "href": "./BE34_10000_0204.json", + "type": "application/json", + "file:checksum": "1220104561d205a0429e63e237b943936ccf6ff327facac477ffb377702f694fbbc8" + }, + { + "rel": "item", + "href": "./BE34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220511b12969446dbb58f76f7cc214ec55cca532b7a857f604c3346c0b64770557b" + }, + { + "rel": "item", + "href": "./BE34_10000_0301.json", + "type": "application/json", + "file:checksum": "122026ba40beb936412084a37c973dd40147125f1c536c7f257e99069b7ab14447fa" + }, + { + "rel": "item", + "href": "./BE34_10000_0302.json", + "type": "application/json", + "file:checksum": "1220020bb77cd2fadadfe2e8848a7db73a54003fadbc738bca21d3cd453667d019f4" + }, + { + "rel": "item", + "href": "./BE34_10000_0303.json", + "type": "application/json", + "file:checksum": "1220457bf1a106ac7ae6d3f3cca9d7d0f0a446c8b683abde7ab884b2200a2f915b02" + }, + { + "rel": "item", + "href": "./BE34_10000_0304.json", + "type": "application/json", + "file:checksum": "122042fa66fab6bc64c6b33d101cd342a24e4fb875fb6e7164956cf653e3990fff47" + }, + { + "rel": "item", + "href": "./BE34_10000_0305.json", + "type": "application/json", + "file:checksum": "1220f1582b8d64da0a229961c385dae8a8598863556df068fb69f12825a508b7a229" + }, + { + "rel": "item", + "href": "./BE34_10000_0401.json", + "type": "application/json", + "file:checksum": "1220ef030f78fbccb6c380594964c0baa199f66c1df51f4954a73a1fb553d455e803" + }, + { + "rel": "item", + "href": "./BE34_10000_0402.json", + "type": "application/json", + "file:checksum": "12200dd62741f21a0eb8ee388c01a9125d159a28f04b0e5ad4057e645f8e213e7194" + }, + { + "rel": "item", + "href": "./BE34_10000_0403.json", + "type": "application/json", + "file:checksum": "12209523666c19f4a3ddc9525ca5edc07cf8f80a47deeca50e37a2815efaf6785c8c" + }, + { + "rel": "item", + "href": "./BE34_10000_0404.json", + "type": "application/json", + "file:checksum": "12209f4bf390c72375310f96a74cf9addae9f7fb0b4c17133a9a8f0d36d2afc7b598" + }, + { + "rel": "item", + "href": "./BE34_10000_0405.json", + "type": "application/json", + "file:checksum": "12201d9c2adc844ffd1af97bdc8dc83e48d5ed62559687035ca4299021d5079cb661" + }, + { + "rel": "item", + "href": "./BE34_10000_0501.json", + "type": "application/json", + "file:checksum": "12202bee63f74005de959749a65f34c3df931225654a531f81719d725d9d486b834f" + }, + { + "rel": "item", + "href": "./BE34_10000_0502.json", + "type": "application/json", + "file:checksum": "12201965f9ce3280f1306cf18eaf5971e2fecb73560ed156c04a361d0a5a4528ae60" + }, + { + "rel": "item", + "href": "./BE34_10000_0503.json", + "type": "application/json", + "file:checksum": "12209332787f5da230741d8017aa32e09de1d6b003ba0f912e279c3313648ecd6b14" + }, + { + "rel": "item", + "href": "./BE34_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c8f17417f7e3aaee7aae49a2dd11f902456776e82a16be9d4bc4d0c6cb350744" + }, + { + "rel": "item", + "href": "./BE34_10000_0505.json", + "type": "application/json", + "file:checksum": "12201c319b41c52ee6fe9b7c1aca9307b9c6278ea3a05ac9b48f055ccc58e8dadf0a" + }, + { + "rel": "item", + "href": "./BE35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220d5e01d0c1c8411163241e6ceaf46090bcb4b4482399430de1ca03e7744b38fca" + }, + { + "rel": "item", + "href": "./BE35_10000_0102.json", + "type": "application/json", + "file:checksum": "1220d36df15d729f6b29a1ae050022ff26fce190eba12831875581b6246fc214344e" + }, + { + "rel": "item", + "href": "./BE35_10000_0103.json", + "type": "application/json", + "file:checksum": "1220552ed2e0671adf88ecc91b2a5b485df84ed3e33a55a9b904a04235fe1b0531eb" + }, + { + "rel": "item", + "href": "./BE35_10000_0104.json", + "type": "application/json", + "file:checksum": "1220b7ad841bf0f440c53e097eaa71e70fef72e95349f1e5053a1697a63c67ac2074" + }, + { + "rel": "item", + "href": "./BE35_10000_0105.json", + "type": "application/json", + "file:checksum": "12200cc98616adce9b870fdb47ec0255d4714525f91e0cb38852f7ffe872d4544964" + }, + { + "rel": "item", + "href": "./BE35_10000_0201.json", + "type": "application/json", + "file:checksum": "12209278b5ac7c79738f1f58528d57d787e7276ff001d46688d2168d6f04371b4c81" + }, + { + "rel": "item", + "href": "./BE35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220d02dd76693c3438fcdab7239c285288a636de7fa5ed0280b92b2a2d13dad33f6" + }, + { + "rel": "item", + "href": "./BE35_10000_0203.json", + "type": "application/json", + "file:checksum": "12207928563134f3469e7e707ff6e720af6b37a0302e53eca3fef889ae7aba70d711" + }, + { + "rel": "item", + "href": "./BE35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220840579c684cdbe685390af018dd4ff91720d2b061e41d46faa19caeda49e31b7" + }, + { + "rel": "item", + "href": "./BE35_10000_0205.json", + "type": "application/json", + "file:checksum": "1220729a03d0ae1088995bdbe217f1662a9d2ad1211282bf1279c9b588e4c15bac5a" + }, + { + "rel": "item", + "href": "./BE35_10000_0301.json", + "type": "application/json", + "file:checksum": "122085d34b8835aa7371f7972ada01d1346a8215821b381e2a9a607771218f596101" + }, + { + "rel": "item", + "href": "./BE35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220c22117b2e680bcdb772c6f6feebfebc110fcc31e85779ca0a5b10651c1d0ce19" + }, + { + "rel": "item", + "href": "./BE35_10000_0303.json", + "type": "application/json", + "file:checksum": "122066de38b31fc13831e61cfe8c4828bc924bc8f2391e8795c4abe2d6a901d4cec1" + }, + { + "rel": "item", + "href": "./BE35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220a4e410e9f26465760debb0ae284610efb89226f5d8a250fc6901ef171f8629fa" + }, + { + "rel": "item", + "href": "./BE35_10000_0305.json", + "type": "application/json", + "file:checksum": "12203d47703dda07281bd6eaf61faa009237181f497a9e645e5d6605fa0f4354f19c" + }, + { + "rel": "item", + "href": "./BE35_10000_0401.json", + "type": "application/json", + "file:checksum": "122091b64c2b7892a7f11d83f9605fbc58c5098e4443aac4f6636980c2ab771416c2" + }, + { + "rel": "item", + "href": "./BE35_10000_0402.json", + "type": "application/json", + "file:checksum": "12204d96f062170a713000fda83a13e26998d59134eefe053164b0913a7662a8b35f" + }, + { + "rel": "item", + "href": "./BE35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220f365587fa1190f72a6f38ba36a38e5aaf64eb5a3d244041ac0731549ab928708" + }, + { + "rel": "item", + "href": "./BE35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220a38fe2d1fe9bb85e70464440a57337cbc21b49e96aad40fac6a93111bf5a8c7e" + }, + { + "rel": "item", + "href": "./BE35_10000_0405.json", + "type": "application/json", + "file:checksum": "1220133ae0a67a7cf47849a2b24f061d19056581fa72d4b5c72570fd3839a9477f97" + }, + { + "rel": "item", + "href": "./BE35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220061d312cf7ce61c44b875450c5197847a35a8426bb88d978a4fb9013ef0f4d4f" + }, + { + "rel": "item", + "href": "./BE35_10000_0502.json", + "type": "application/json", + "file:checksum": "12200843d2ef8bfc4fbdb089b4093d4b9a7cd0060e24cfdf6bfbf233ff3251c187db" + }, + { + "rel": "item", + "href": "./BE35_10000_0503.json", + "type": "application/json", + "file:checksum": "122060d7975676735bd4618fa2706be6db3c861a062ab55068d79c642f11175d21b8" + }, + { + "rel": "item", + "href": "./BE35_10000_0504.json", + "type": "application/json", + "file:checksum": "122061387264084afa790096e90314ed74a6d083778ed4cbb72199ea36a4d1ac7779" + }, + { + "rel": "item", + "href": "./BE35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220fa05c86fd5b14a62d5c765d4dc8ac7c5769c315f947f3fd5ee1156dc9fd10398" + }, + { + "rel": "item", + "href": "./BE36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220ca867126226b4149359e98aaade15b529a66f7c3f2e592c7dab38b046e7bfe83" + }, + { + "rel": "item", + "href": "./BE36_10000_0102.json", + "type": "application/json", + "file:checksum": "1220d4c4173ef3cb31743e46aab708ff45a3de738bd474319df7f42c4bc527e9c7a1" + }, + { + "rel": "item", + "href": "./BE36_10000_0201.json", + "type": "application/json", + "file:checksum": "12201473350fb3439468823f434881f812f7f0e00398dd707c61238eb5d3441397f7" + }, + { + "rel": "item", + "href": "./BE36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220ac39f77a3cf317287d040ed2659b000ae7bc79ad4c324a8b1b907c23ea472505" + }, + { + "rel": "item", + "href": "./BE36_10000_0203.json", + "type": "application/json", + "file:checksum": "1220674d8a1467d33f4c747b725127176a9a3b4a1202f71261bd1b5ad0c684e0636f" + }, + { + "rel": "item", + "href": "./BE36_10000_0204.json", + "type": "application/json", + "file:checksum": "1220fe2f15a1900e66f9d1120b5e91ac98b0f6be984b7c2c23e36af5182cb378c7b3" + }, + { + "rel": "item", + "href": "./BE36_10000_0301.json", + "type": "application/json", + "file:checksum": "1220f568b4fbc6e9555e1b8554aed3a54d997c0f63f4738408e5bc8134dfee33ba61" + }, + { + "rel": "item", + "href": "./BE36_10000_0302.json", + "type": "application/json", + "file:checksum": "1220bc5d6ba1f9d44037cf45b3c217a7786351ac6e4823ae8218bb7d3a99263467a4" + }, + { + "rel": "item", + "href": "./BE36_10000_0303.json", + "type": "application/json", + "file:checksum": "122080b8b25b7337d37e36d8da4360eaca95cc50a3b1ac0f7813315405d20384dc5b" + }, + { + "rel": "item", + "href": "./BE36_10000_0304.json", + "type": "application/json", + "file:checksum": "1220ee9f6245097a7fca68967cb0033b7f857882bc2e180a2c7b45c845b4eb13adf0" + }, + { + "rel": "item", + "href": "./BE36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220bc61dd83b30aec369fb06943d1d9056ce149ba5809821c8d98f3d933ddd39883" + }, + { + "rel": "item", + "href": "./BE36_10000_0402.json", + "type": "application/json", + "file:checksum": "12209286c916fdc7e4c8070eb5d654177b4e16962d9f94457efa9c547f5097b2ff2e" + }, + { + "rel": "item", + "href": "./BE36_10000_0403.json", + "type": "application/json", + "file:checksum": "1220b786259d30a47e8a25f06da2723996140bba067b29f904f16e24a3cc89bceed4" + }, + { + "rel": "item", + "href": "./BE36_10000_0501.json", + "type": "application/json", + "file:checksum": "1220457281b56136fd4babd571055f4440cfdbeb2d8248072ebafee1a19c4277af73" + }, + { + "rel": "item", + "href": "./BE36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220a6324b5a5b269264d91266d7a476e0abf1e141f3bd6829089dd3c610c537a935" + }, + { + "rel": "item", + "href": "./BE36_10000_0503.json", + "type": "application/json", + "file:checksum": "122091de2125fd7bab9a5dfe3922e4fea910d973683115b0abfcb7eeeb53be5e273c" + }, + { + "rel": "item", + "href": "./BE36_10000_0504.json", + "type": "application/json", + "file:checksum": "12209233fe970b4e2f24a5a1ecd1a7125aef6580bdd2d9d9ce760a05877845ba5ad5" + }, + { + "rel": "item", + "href": "./BE36_10000_0505.json", + "type": "application/json", + "file:checksum": "12202d5ec4936d9958e45f9cb75710d31a17caed117a6b29382e7d400eb14b28d97a" + }, + { + "rel": "item", + "href": "./BF31_10000_0104.json", + "type": "application/json", + "file:checksum": "1220f0a98cdec8dc98aebd8e7eae363a8ce57a30df940f59472cb1de415b0e118d55" + }, + { + "rel": "item", + "href": "./BF31_10000_0105.json", + "type": "application/json", + "file:checksum": "1220949588d9344a9be505887f061e17a99e270ac08f73368e4f8483f88b5ab0c026" + }, + { + "rel": "item", + "href": "./BF31_10000_0203.json", + "type": "application/json", + "file:checksum": "12200cdf6f582079f392307f4221ed3efbc5e8b9630942498b29eae2a0b4ad8157f9" + }, + { + "rel": "item", + "href": "./BF31_10000_0204.json", + "type": "application/json", + "file:checksum": "1220efb85a1beffe07c9117a9911645855d744a143ba5322519f35903975031bec66" + }, + { + "rel": "item", + "href": "./BF31_10000_0205.json", + "type": "application/json", + "file:checksum": "1220bc8c5d84cbe5fdd70e118ebb9b989b86eb7a2b6c8687a24d462cd363f9aac483" + }, + { + "rel": "item", + "href": "./BF31_10000_0303.json", + "type": "application/json", + "file:checksum": "12208c5ce3b6fb8e9cd28368da4b35c777f009e0bbc6b27539497ae3e0a5ec2e0ae5" + }, + { + "rel": "item", + "href": "./BF31_10000_0304.json", + "type": "application/json", + "file:checksum": "1220533422fd88cd91ce5d025fd7fed508a57e48489798da476b31ba378b761b55c2" + }, + { + "rel": "item", + "href": "./BF31_10000_0305.json", + "type": "application/json", + "file:checksum": "12206f1f5995c18a0a18bd872f57c25cc446aced2a228fb29c058dde2d34d1cda873" + }, + { + "rel": "item", + "href": "./BF31_10000_0403.json", + "type": "application/json", + "file:checksum": "12209bb448233341e659000da1a6b86f0deaccce583ae8b3636e1ee8e4b6ee42449d" + }, + { + "rel": "item", + "href": "./BF31_10000_0404.json", + "type": "application/json", + "file:checksum": "122002990aabf2c064dc12f46281a58096217fa13ec4153c4ca57c2839a017e0e51d" + }, + { + "rel": "item", + "href": "./BF31_10000_0405.json", + "type": "application/json", + "file:checksum": "1220a1bb9c294eedf6a428dbbc75aae41f79ec4ecea7883466585ebc61df850c83f8" + }, + { + "rel": "item", + "href": "./BF31_10000_0503.json", + "type": "application/json", + "file:checksum": "12206b58d4986490df2254856e27b7ea691f6f4414d6a22bb946bd482437e442ed1d" + }, + { + "rel": "item", + "href": "./BF31_10000_0504.json", + "type": "application/json", + "file:checksum": "12206a256e030e2efca4d87e51b9baed75a45b49efbb65cbf8bbbaa685c9dbeb8782" + }, + { + "rel": "item", + "href": "./BF31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220b63fb016e4e028578c41e2955734c7afa6052c9503a3d1895e90a20bfe0d7a7a" + }, + { + "rel": "item", + "href": "./BF32_10000_0101.json", + "type": "application/json", + "file:checksum": "122062183ecc2edffcffe85ea0ea3f2ac691660bd8ead3cfb5ada15f6673f551f7ef" + }, + { + "rel": "item", + "href": "./BF32_10000_0102.json", + "type": "application/json", + "file:checksum": "12201753cb4b8accbc6ec0385ad5894d5656f43c1f353cbba600ed4d45fe3a29169a" + }, + { + "rel": "item", + "href": "./BF32_10000_0103.json", + "type": "application/json", + "file:checksum": "12203df72926aa3f6f628f953d7fa953660c888268c4e368838e098ff63985cd7dd6" + }, + { + "rel": "item", + "href": "./BF32_10000_0104.json", + "type": "application/json", + "file:checksum": "1220f50c8e8a846fd9ab6715ee5b7d15637f963396580e8a360c31419837f4ef6233" + }, + { + "rel": "item", + "href": "./BF32_10000_0105.json", + "type": "application/json", + "file:checksum": "1220258e88136d9056c4c3e62f1e9800d8708cd709072ba75dd4b3bac8e95cebf0cc" + }, + { + "rel": "item", + "href": "./BF32_10000_0201.json", + "type": "application/json", + "file:checksum": "1220620f98f02880ac61af1d7e5ebfc38f3238015350c6551b4a2495b409240797fd" + }, + { + "rel": "item", + "href": "./BF32_10000_0202.json", + "type": "application/json", + "file:checksum": "122028a37513991139998cb0421d8d86efa439553b82707cf2f6391ae70bb34e96d3" + }, + { + "rel": "item", + "href": "./BF32_10000_0203.json", + "type": "application/json", + "file:checksum": "12204aec6eccd0dda8cc3e9ac64370d70d6d7bd1b3cb0247af23cd4917cdf6aca60f" + }, + { + "rel": "item", + "href": "./BF32_10000_0204.json", + "type": "application/json", + "file:checksum": "1220c18f107902686067f22eb2caf0a07a2444aad78e4b7103ff6c8da3dc251490ed" + }, + { + "rel": "item", + "href": "./BF32_10000_0205.json", + "type": "application/json", + "file:checksum": "1220b2787d6266915c826bcf1e16c94bb17280065b660d75dd9fa3c0b12412bb2d13" + }, + { + "rel": "item", + "href": "./BF32_10000_0301.json", + "type": "application/json", + "file:checksum": "1220639f6ea5db2c456834827265d431968b9da653e16b46a340895ae67993c5cb86" + }, + { + "rel": "item", + "href": "./BF32_10000_0302.json", + "type": "application/json", + "file:checksum": "1220e085f9322ecd237322d022e586f66b5098276f348a8604abc4f7ca5da41f9b7c" + }, + { + "rel": "item", + "href": "./BF32_10000_0303.json", + "type": "application/json", + "file:checksum": "1220c409b81389938396b633aaa170a3efb040235cc82d417efb97c61425e21c2e0a" + }, + { + "rel": "item", + "href": "./BF32_10000_0304.json", + "type": "application/json", + "file:checksum": "12207370cc8b971e585ea2656cdcc48fc825d524946085293ce18f9a284e0b154dcf" + }, + { + "rel": "item", + "href": "./BF32_10000_0305.json", + "type": "application/json", + "file:checksum": "1220c6ad4d8948d52ae741af4084985181f9edec0a00e83aff26b7753230192fc4c6" + }, + { + "rel": "item", + "href": "./BF32_10000_0401.json", + "type": "application/json", + "file:checksum": "1220871e11539f584a8a8106851822b9de26b8bdea60f966e537b5bd92746e77a9d1" + }, + { + "rel": "item", + "href": "./BF32_10000_0402.json", + "type": "application/json", + "file:checksum": "1220a87380f037907a7d358dffb76a701032f5f2894dda0f783d8c2d87f0a09fdd60" + }, + { + "rel": "item", + "href": "./BF32_10000_0403.json", + "type": "application/json", + "file:checksum": "1220be2b9747add5b21869d122ea58654f0bdbc945f64c8127f0a2167317c6c0b917" + }, + { + "rel": "item", + "href": "./BF32_10000_0404.json", + "type": "application/json", + "file:checksum": "1220b423bb0a7f4d0b4e4612dd2d9f8db9a8fe5c7ec961a0fb4fdc95e530f4dc9261" + }, + { + "rel": "item", + "href": "./BF32_10000_0405.json", + "type": "application/json", + "file:checksum": "12209742e2693388cb4da284c2d788be6c5dd85665806db29d79c5e41f6e8232f8fd" + }, + { + "rel": "item", + "href": "./BF32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220dfc68943f68b16a07fff759ca1ad9191da1a9ccbf67be387cd88aae2555fcf92" + }, + { + "rel": "item", + "href": "./BF32_10000_0502.json", + "type": "application/json", + "file:checksum": "122013d505a6c4cee4831d0d5873eb0307df29741c723b61599f008f36563b718b64" + }, + { + "rel": "item", + "href": "./BF32_10000_0503.json", + "type": "application/json", + "file:checksum": "1220129eb9100012d427c706a71fde85a8efca4ae20e45653562ea192967863ad67f" + }, + { + "rel": "item", + "href": "./BF32_10000_0504.json", + "type": "application/json", + "file:checksum": "1220d340d307e2c2efde49bc722b52857ce4fe31bb515244218a34b41368eef16148" + }, + { + "rel": "item", + "href": "./BF32_10000_0505.json", + "type": "application/json", + "file:checksum": "1220d7599e7df88ffb06288f7e20364da266d12e21492a0fc8c3aefc58e410386a2e" + }, + { + "rel": "item", + "href": "./BF33_10000_0101.json", + "type": "application/json", + "file:checksum": "1220da4a779a545b81ae1403833bae86ee5ffc3c02d342f327f6bbb75c7a55031ad1" + }, + { + "rel": "item", + "href": "./BF33_10000_0102.json", + "type": "application/json", + "file:checksum": "1220dd5f78595e41f597cec9e37ef17dbe94a1c29e122f2472bfbca11219cfb306c2" + }, + { + "rel": "item", + "href": "./BF33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220b8071f7bfd5782a2cb4c316065412c1b414e8b31e52448c6cc7965a2f535daa3" + }, + { + "rel": "item", + "href": "./BF33_10000_0104.json", + "type": "application/json", + "file:checksum": "12203d398aff4608c24985a76535947ee0c3dbad9f34c6ba4bfa630a5dd6e36a896a" + }, + { + "rel": "item", + "href": "./BF33_10000_0105.json", + "type": "application/json", + "file:checksum": "1220aab04ed3e3b2835343c9ae4dc6e3dfc039cd021202bbc5135e4d1a2e89d80ea4" + }, + { + "rel": "item", + "href": "./BF33_10000_0201.json", + "type": "application/json", + "file:checksum": "12205409e5fc827f03d43086292fdc0b3c4cbc96e42ecaa123396f7f0a96cb10c6ec" + }, + { + "rel": "item", + "href": "./BF33_10000_0202.json", + "type": "application/json", + "file:checksum": "12200873a8b1f81b8bd08f4866e57a10ff23a4f7baf1fe8939817c4c5b69fb4d646a" + }, + { + "rel": "item", + "href": "./BF33_10000_0203.json", + "type": "application/json", + "file:checksum": "12205927996eef49bf9d28a3a255caaf2001a07dad551a7c963f72707cbc624bcea5" + }, + { + "rel": "item", + "href": "./BF33_10000_0204.json", + "type": "application/json", + "file:checksum": "1220ef75fdb9d0c6f246c409fd6a24498c0813ad6c9b9f698929c7e5bf9f22e44b2e" + }, + { + "rel": "item", + "href": "./BF33_10000_0205.json", + "type": "application/json", + "file:checksum": "12209279301abdc1821a4244cb3e6e02528ea2bfcb0b657af86d30930c67c977977f" + }, + { + "rel": "item", + "href": "./BF33_10000_0301.json", + "type": "application/json", + "file:checksum": "12200f94d81b66fe1790370db78aad9a0ef9ed9e12d870a7f081a79a92e996aa3bbb" + }, + { + "rel": "item", + "href": "./BF33_10000_0302.json", + "type": "application/json", + "file:checksum": "1220b5d184d082ef404ae842cdfdbefc0b05994f80c81f84108f5d5013a14afc5630" + }, + { + "rel": "item", + "href": "./BF33_10000_0303.json", + "type": "application/json", + "file:checksum": "12209e7e1926b7c0f1ee6c235fbdb9a0a6429415bebb0f1eaf704fa29cac45707f47" + }, + { + "rel": "item", + "href": "./BF33_10000_0304.json", + "type": "application/json", + "file:checksum": "1220fd33d3afa7bb4ccf1d8a304ed1f9a9a2351634d9aac01247db35d7453ae0d820" + }, + { + "rel": "item", + "href": "./BF33_10000_0305.json", + "type": "application/json", + "file:checksum": "122051caec319a7dc5c5b58c172ab8ca7c2299584bc7349c96d2143cdafdaeb46931" + }, + { + "rel": "item", + "href": "./BF33_10000_0401.json", + "type": "application/json", + "file:checksum": "1220ec1497069e6c9568e321f380a8cc8f9f0443429071b2c8b66c007efb3ddf8f76" + }, + { + "rel": "item", + "href": "./BF33_10000_0402.json", + "type": "application/json", + "file:checksum": "1220699b3614b9666218a15045a1d0e159fa137a036f5a32b8e5093d57a5ef22bafc" + }, + { + "rel": "item", + "href": "./BF33_10000_0403.json", + "type": "application/json", + "file:checksum": "1220ab120138ff8c3bfea69a92ccf751204ac37793cdf1e5421afdc5e38443ff7302" + }, + { + "rel": "item", + "href": "./BF33_10000_0404.json", + "type": "application/json", + "file:checksum": "1220fe26c01a1da6809b30faf5ea8baa4342caff741d5a90fd2f678a4cc6d4a36fb7" + }, + { + "rel": "item", + "href": "./BF33_10000_0405.json", + "type": "application/json", + "file:checksum": "1220b812ef7d0e1c1038ecbf4b3d3fbeb20f44494dde96e67321e0aff3f30e2af92e" + }, + { + "rel": "item", + "href": "./BF33_10000_0501.json", + "type": "application/json", + "file:checksum": "1220a7013dd2e7a5adfeb8672fca54ed94856f6378cdd6182f7a0485fc3f8c3f0a03" + }, + { + "rel": "item", + "href": "./BF33_10000_0502.json", + "type": "application/json", + "file:checksum": "1220313354411a16556fe05659b3e128a58c635c7821714680c70c6f043fe1d7af1c" + }, + { + "rel": "item", + "href": "./BF33_10000_0503.json", + "type": "application/json", + "file:checksum": "12206a9b33dd8af8526f21e70f0a8ea31bc438b3656398d48633a850b4def7a897aa" + }, + { + "rel": "item", + "href": "./BF33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220213afb1a234f768858dbbdd8f8d3c59544c664cfdf949fafce73599161d7b014" + }, + { + "rel": "item", + "href": "./BF33_10000_0505.json", + "type": "application/json", + "file:checksum": "122029ae3fc30d1786aa1869245cb75865af7b11fd82dcd131892c8c1dcebae20aac" + }, + { + "rel": "item", + "href": "./BF34_10000_0101.json", + "type": "application/json", + "file:checksum": "12205540065726b3ed3f3bb1f1d2bee9a7657e8478e1b48659d8f037b2d3c8d5f880" + }, + { + "rel": "item", + "href": "./BF34_10000_0102.json", + "type": "application/json", + "file:checksum": "1220085146bbb7d36ab94ec028e8b8ba0bfa42ce2e06762f18f15df15f85bf771ea7" + }, + { + "rel": "item", + "href": "./BF34_10000_0103.json", + "type": "application/json", + "file:checksum": "1220d423bbdedc58a92c2e0d317a75b94000c8e95bf2375ca67273ab25a24ccb095a" + }, + { + "rel": "item", + "href": "./BF34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220a31eccd6a02ac0cf1ccd92af80dca4da3a54a26189166a3e3575e5f7478c183f" + }, + { + "rel": "item", + "href": "./BF34_10000_0105.json", + "type": "application/json", + "file:checksum": "12200de0944143cc44bdae89548409dfc9f28cdf19c8c6d9e396235d900f8808ff81" + }, + { + "rel": "item", + "href": "./BF34_10000_0201.json", + "type": "application/json", + "file:checksum": "122024bff4aabbf445c3b5c5b4f17c7aec303bb2bfdef26112408a28dabe65ecaf7e" + }, + { + "rel": "item", + "href": "./BF34_10000_0202.json", + "type": "application/json", + "file:checksum": "12201329f9d38142d552c2de79e62ca68adc3786866d0eda1373a17c44c06af8dcd1" + }, + { + "rel": "item", + "href": "./BF34_10000_0203.json", + "type": "application/json", + "file:checksum": "122063562e29c729bb1ee51c30f1cca21bf7d9acf88ea17ce0402af2814b10c166ec" + }, + { + "rel": "item", + "href": "./BF34_10000_0204.json", + "type": "application/json", + "file:checksum": "12205d2b6667e9f45fd4213e3f0149f17ca5a0e8e172ef7ea18a1108d7e8b577787d" + }, + { + "rel": "item", + "href": "./BF34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220a999513ec021c9318e83dcffc2bae37ead747eee8a10de138df685536e3128ac" + }, + { + "rel": "item", + "href": "./BF34_10000_0301.json", + "type": "application/json", + "file:checksum": "12203aa64c3f57af064a0c3306555237932b64d9df8e558f44bf750f4a56d9f78765" + }, + { + "rel": "item", + "href": "./BF34_10000_0302.json", + "type": "application/json", + "file:checksum": "122090226a45727341ef86beebdd3968869f8a9080a97aa9967c156306875c3a270c" + }, + { + "rel": "item", + "href": "./BF34_10000_0303.json", + "type": "application/json", + "file:checksum": "1220de367e4255b5185053b82e09637faf121a667b5675b029e943333aef76811297" + }, + { + "rel": "item", + "href": "./BF34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220de3f2edf8f5c17e2f4eb8c712553005df31375442b5196a0be03f0760202b890" + }, + { + "rel": "item", + "href": "./BF34_10000_0305.json", + "type": "application/json", + "file:checksum": "12202a74e30578f6ee6db3ea8be9718968c1180ba892be3830f58673c1ce4426a454" + }, + { + "rel": "item", + "href": "./BF34_10000_0401.json", + "type": "application/json", + "file:checksum": "12206068a1e055e23d06eeb731c036bfe0b0b45ccc3d266416ee0115034af68922f9" + }, + { + "rel": "item", + "href": "./BF34_10000_0402.json", + "type": "application/json", + "file:checksum": "1220b89ae9687e1d3051d8c350aad878893099d30a2cf85cb754e67a1f49cc00abfd" + }, + { + "rel": "item", + "href": "./BF34_10000_0403.json", + "type": "application/json", + "file:checksum": "12202661a3dc94c91121dadf6348845cf8fadfe51e07fdef348cfb51d33ee9abb2b8" + }, + { + "rel": "item", + "href": "./BF34_10000_0404.json", + "type": "application/json", + "file:checksum": "122086c92416a6f45cc2ca21d763e7a2858cb192c9b4fc9993d39308614a0c365041" + }, + { + "rel": "item", + "href": "./BF34_10000_0405.json", + "type": "application/json", + "file:checksum": "122089f35467481ed462959d5891696ca4d1fdf1fcbd1bd8c8722a6c935d5e01f537" + }, + { + "rel": "item", + "href": "./BF34_10000_0501.json", + "type": "application/json", + "file:checksum": "1220420f114ca71635e6aa506e077d3177bd4a9728392398d9c4794ff11b5277018d" + }, + { + "rel": "item", + "href": "./BF34_10000_0502.json", + "type": "application/json", + "file:checksum": "12202b550953deaa12368196c676e48b888c79794eafa9e48d6352705cb1dbb4c804" + }, + { + "rel": "item", + "href": "./BF34_10000_0504.json", + "type": "application/json", + "file:checksum": "122004e8d6ccf181504562b38542d39fab99661e49e031c77027e768424c47cba3c7" + }, + { + "rel": "item", + "href": "./BF34_10000_0505.json", + "type": "application/json", + "file:checksum": "12202d31ddd40711a13095eeb4cf511c8b1fd35ffd27146b8034b49e44786e1b6608" + }, + { + "rel": "item", + "href": "./BF35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220f32b2ca2393a5ca147efc47af7fb43c0a352c96859086cd7159835bb1a0137f6" + }, + { + "rel": "item", + "href": "./BF35_10000_0102.json", + "type": "application/json", + "file:checksum": "12206cae886259ae39969d58e513841bf669061956882612a80ee4210d02a7344470" + }, + { + "rel": "item", + "href": "./BF35_10000_0103.json", + "type": "application/json", + "file:checksum": "12204d92aaecf8cebd5ec12a0af5a840324a540a4e461bc8998b6b0a453605465318" + }, + { + "rel": "item", + "href": "./BF35_10000_0104.json", + "type": "application/json", + "file:checksum": "12207d464b22b6acc14b54561bd9b36026cb597dcef7942f26db3b3c8318881dd408" + }, + { + "rel": "item", + "href": "./BF35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220689f1d6ee500c8df18fea5f091a10c8c2ddbee283eb21c24e73ea524d58c5160" + }, + { + "rel": "item", + "href": "./BF35_10000_0201.json", + "type": "application/json", + "file:checksum": "1220d89a300da5524264e0a933e27ce054aab5fb4141cd644508870819cdb469d307" + }, + { + "rel": "item", + "href": "./BF35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220a94e16100db6adfdb49dda4f29db58b4b223968abc5b3e9666e82cf429e996f9" + }, + { + "rel": "item", + "href": "./BF35_10000_0203.json", + "type": "application/json", + "file:checksum": "1220ede09c587553efc42fab2373082c3feafcd49b4af2ae0022f9ae4fbc71dc9f09" + }, + { + "rel": "item", + "href": "./BF35_10000_0204.json", + "type": "application/json", + "file:checksum": "122004e6849cbeb1c88931315ab4c9595d54f52a267949de6412f25fb70dbcba42f9" + }, + { + "rel": "item", + "href": "./BF35_10000_0205.json", + "type": "application/json", + "file:checksum": "1220ac0a171060344d2adfcdd87f433c61a3cb4711d893eb41e63e07bcb2fa84ec6f" + }, + { + "rel": "item", + "href": "./BF35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220bce638384c5fcb551528e1c07fa6bf3c6a675f1ea4090e034bb63188301b6769" + }, + { + "rel": "item", + "href": "./BF35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220ef08365434b1b24eaa3c6c26f0036c64ae1dfdbfc2a30dd322c6bd5f89b09212" + }, + { + "rel": "item", + "href": "./BF35_10000_0303.json", + "type": "application/json", + "file:checksum": "12204dc0b35f232d452c0d298fe7c4cf875be9dd099f300cd802a9194d7c547b918c" + }, + { + "rel": "item", + "href": "./BF35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220a5e3944b0babde74716c8ddebf44314ff0bf29a9589dcb7995ad6ecb44309c13" + }, + { + "rel": "item", + "href": "./BF35_10000_0305.json", + "type": "application/json", + "file:checksum": "12209379e098f0b963002b0a648c6f9af14e52803d4ee78c51dedd2d679f80c78a0a" + }, + { + "rel": "item", + "href": "./BF35_10000_0401.json", + "type": "application/json", + "file:checksum": "1220d31dad7076fc1d20a12268a7cdc30e984687104fad1442db76351b36c319b1c7" + }, + { + "rel": "item", + "href": "./BF35_10000_0402.json", + "type": "application/json", + "file:checksum": "1220d9cfc46e494a459a4c3deaa7da8fa161d85a6b37593f718c256f96525c645cdb" + }, + { + "rel": "item", + "href": "./BF35_10000_0403.json", + "type": "application/json", + "file:checksum": "122066873fd25dbe81e0c80c73cfee1ed6736d5b1a87ce8b76bd5026b614f16acbb0" + }, + { + "rel": "item", + "href": "./BF35_10000_0404.json", + "type": "application/json", + "file:checksum": "12202f58ab7ca26e03dfcd1ed348a9b9b4ceb582782a7682ea69a806ab97d2c70505" + }, + { + "rel": "item", + "href": "./BF35_10000_0405.json", + "type": "application/json", + "file:checksum": "1220af7230c7453d1d17a24292b6cde908a49de875d55cf994deb3ff3601cd4f9f61" + }, + { + "rel": "item", + "href": "./BF35_10000_0501.json", + "type": "application/json", + "file:checksum": "122046054888f130673996c45b1ca45d98cd17b479837689b70bd6d87440427d9499" + }, + { + "rel": "item", + "href": "./BF35_10000_0502.json", + "type": "application/json", + "file:checksum": "12203a1a81900450bc44e06babaa86f52b58255e198bdeab73d7e6e2cafe06b73bf6" + }, + { + "rel": "item", + "href": "./BF35_10000_0503.json", + "type": "application/json", + "file:checksum": "12201aa7ecf84bb4f29a6a8cdab3cef140ac451d5887a266f6348e58b898900d8291" + }, + { + "rel": "item", + "href": "./BF35_10000_0504.json", + "type": "application/json", + "file:checksum": "122051758f1db61ae2cb2dfc188ef682f7cc4ef1ed08166f58e80395e7287cb14d9f" + }, + { + "rel": "item", + "href": "./BF35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220ed66515e84740c1b2f0b8d29dcd3374740c2b536e491b1a39e607a72025470c4" + }, + { + "rel": "item", + "href": "./BF36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220aac7e9cf6facf3afafb035164d91958a07806b4fffe262f11d511dd50c1dc651" + }, + { + "rel": "item", + "href": "./BF36_10000_0102.json", + "type": "application/json", + "file:checksum": "1220c9073e5edd58d164cb831a8b6cbd73c17855daf294a0649c475cb2b8126caa34" + }, + { + "rel": "item", + "href": "./BF36_10000_0103.json", + "type": "application/json", + "file:checksum": "12208a14acbcd593e17327846f44427601b6c6a9b42e957e2255bc7c8920d8f79836" + }, + { + "rel": "item", + "href": "./BF36_10000_0104.json", + "type": "application/json", + "file:checksum": "12201d64da6f98076cbda737ff1f553273f25d75aacd333d7caff91ab08c09b4bcff" + }, + { + "rel": "item", + "href": "./BF36_10000_0105.json", + "type": "application/json", + "file:checksum": "1220d59c834cd28da7486ab14c1d35f72cd1c136271b7559348677afeae32eda8adc" + }, + { + "rel": "item", + "href": "./BF36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220413fc61cc5a93aa91c3b5a85970284a904b2bb3d601b44f55815574cf31630a6" + }, + { + "rel": "item", + "href": "./BF36_10000_0202.json", + "type": "application/json", + "file:checksum": "122032e56d732a3c7faba8c2bc19bab150aa51b16b718d3696d797e5da68f83706d8" + }, + { + "rel": "item", + "href": "./BF36_10000_0203.json", + "type": "application/json", + "file:checksum": "1220b2fdd3cdbeaa8636a7db7acc123d7b6305d9440de84a83b5c3a1f9e05958ace6" + }, + { + "rel": "item", + "href": "./BF36_10000_0204.json", + "type": "application/json", + "file:checksum": "12202ae784422a8a1549fb5c3611c3f1359e40473bfa80570badeb7dee290edda467" + }, + { + "rel": "item", + "href": "./BF36_10000_0205.json", + "type": "application/json", + "file:checksum": "122078714507e4464bf0d148894ec7cb36cd17497446b7d60d3bc6d9ca0c36cfd6f4" + }, + { + "rel": "item", + "href": "./BF36_10000_0301.json", + "type": "application/json", + "file:checksum": "12200957ecd60f0f8e29dc5a5c5b05b3395d1f441143a4d44d8f29b30d63b53cb9f8" + }, + { + "rel": "item", + "href": "./BF36_10000_0302.json", + "type": "application/json", + "file:checksum": "1220910dca8a84f23141b566a988074cd5366b66b2c19533eb522b2ed46ee710e901" + }, + { + "rel": "item", + "href": "./BF36_10000_0303.json", + "type": "application/json", + "file:checksum": "12205eb531611a229e9330ea8447627b5fe096f5b77d8043479e092a5f3e3d331283" + }, + { + "rel": "item", + "href": "./BF36_10000_0304.json", + "type": "application/json", + "file:checksum": "122096b016ba05a81d998919102aa0e29ecc22610df980af5e9dc38a74b33919e40a" + }, + { + "rel": "item", + "href": "./BF36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220b65e6eeffc6f7d841e0ec65818f6c8b7207f5465bba8e0e5c05ccdb143ad6842" + }, + { + "rel": "item", + "href": "./BF36_10000_0402.json", + "type": "application/json", + "file:checksum": "122098be5be01c089dd8d22960547a88a750bfa0ed97abeb6d22eff55fbbf099d4af" + }, + { + "rel": "item", + "href": "./BF36_10000_0403.json", + "type": "application/json", + "file:checksum": "122048eae553cd8d0d754585d88f93e21c758bd5caedb107a83616f8d28e83fb3812" + }, + { + "rel": "item", + "href": "./BF36_10000_0404.json", + "type": "application/json", + "file:checksum": "122091f3c8f43981e5f8a13a145189de19f6eddf3cf15cfb879f0345d32701c6b6c0" + }, + { + "rel": "item", + "href": "./BF36_10000_0405.json", + "type": "application/json", + "file:checksum": "1220dd8fbc43cd89645992dd1fd3989ced7b229394fee5d493c23db779a0c5e29f7f" + }, + { + "rel": "item", + "href": "./BF36_10000_0501.json", + "type": "application/json", + "file:checksum": "12203a1ade481d57443e4ee53a480ff66d157db12ab4f2f79b2b5b6aa286c94ceb71" + }, + { + "rel": "item", + "href": "./BF36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220cadf60c2930d98d6347c8571d5b96297b8de159da3434884d6194d9c37a65e4f" + }, + { + "rel": "item", + "href": "./BF36_10000_0503.json", + "type": "application/json", + "file:checksum": "12205e5784d7eac5b672720b5f1036526339892e16cc1113b4607e38c5aa0e7889a5" + }, + { + "rel": "item", + "href": "./BF36_10000_0504.json", + "type": "application/json", + "file:checksum": "1220b9a74d624efde286349f9c7681111510cf90f0cd098e1c48a13e474f6fc63a7e" + }, + { + "rel": "item", + "href": "./BF36_10000_0505.json", + "type": "application/json", + "file:checksum": "1220d30044a199b2bd4345959beb196942640c3a1c363fd2bb873fb1a9a952a514ab" + }, + { + "rel": "item", + "href": "./BF37_10000_0501.json", + "type": "application/json", + "file:checksum": "1220dc353a0be9db64efc73325305f4b499fd0174f7254edcde13f95d3f590149c71" + }, + { + "rel": "item", + "href": "./BF37_10000_0502.json", + "type": "application/json", + "file:checksum": "12202caad663917cad9df91c5bd64632c9e7bbf3122354f74add64cb1a385ec434f1" + }, + { + "rel": "item", + "href": "./BF37_10000_0503.json", + "type": "application/json", + "file:checksum": "12206e6231eb74ade510b36577babb504d5af76fbf18120fd885c726546d37b6d173" + }, + { + "rel": "item", + "href": "./BF37_10000_0504.json", + "type": "application/json", + "file:checksum": "12207d3d308cb88063c602984474a04879257b4563339d979689918adb89f995ac58" + }, + { + "rel": "item", + "href": "./BF37_10000_0505.json", + "type": "application/json", + "file:checksum": "12208a7e3677b4864dff025bd89b2012fcefd6768d3399e22ca4c49a80188e3e6156" + }, + { + "rel": "item", + "href": "./BF38_10000_0501.json", + "type": "application/json", + "file:checksum": "12205e83d7978b155a7058a7323283590fc85f682cc2979a81a5bdc66ace8df7f9e9" + }, + { + "rel": "item", + "href": "./BF38_10000_0502.json", + "type": "application/json", + "file:checksum": "1220911b9035db2b0f139dac2ebe4e79c41b22381a17b795b0b20a38d6d55d986925" + }, + { + "rel": "item", + "href": "./BG31_10000_0102.json", + "type": "application/json", + "file:checksum": "122086fcde573d98d46f46e000bc4759d497d346b64d259183b1d28594447512fe16" + }, + { + "rel": "item", + "href": "./BG31_10000_0103.json", + "type": "application/json", + "file:checksum": "1220a89d35a86b5494e16377851aa8d5e480a629c8bcf724ede81466cd7de395a7c5" + }, + { + "rel": "item", + "href": "./BG31_10000_0104.json", + "type": "application/json", + "file:checksum": "1220db44f77a79c29c62287c17d6cf65ddc604a2b4fa791142247ed473c839887407" + }, + { + "rel": "item", + "href": "./BG31_10000_0105.json", + "type": "application/json", + "file:checksum": "1220286f7417cadd1077403558a0040c165074783531dd9a27033a142af21456c7aa" + }, + { + "rel": "item", + "href": "./BG31_10000_0202.json", + "type": "application/json", + "file:checksum": "1220409a4cd7b7b4c5a7f2bfbe1bc234e55cbc39874ad8c5a26465b036ea925132a6" + }, + { + "rel": "item", + "href": "./BG31_10000_0203.json", + "type": "application/json", + "file:checksum": "1220891706d45323c148cd34a38766f9a6aebca8226577f8dd432956130aec178018" + }, + { + "rel": "item", + "href": "./BG31_10000_0204.json", + "type": "application/json", + "file:checksum": "1220d8f5a386510f9f5f1b485d63e6fb2fcc1e600fb53769e62117cbce9f99fa8589" + }, + { + "rel": "item", + "href": "./BG31_10000_0205.json", + "type": "application/json", + "file:checksum": "12203073ca211c7bcab6606f3b66077cd748e41c6159c24d65bcebffb192cf9509d6" + }, + { + "rel": "item", + "href": "./BG31_10000_0302.json", + "type": "application/json", + "file:checksum": "12203bbe8d16f7858b3ba2266421f23a2cc2483ec6e59a916052b1b919fd46dc55e8" + }, + { + "rel": "item", + "href": "./BG31_10000_0303.json", + "type": "application/json", + "file:checksum": "12205c797ab69883e6e2ed4a73b048d5384790b18abfc8805376c1c4df0ecbca0485" + }, + { + "rel": "item", + "href": "./BG31_10000_0304.json", + "type": "application/json", + "file:checksum": "12205cce5158002c78b554a510de54ae5ab72677ba21c6d0ae05c407770daeb51f1d" + }, + { + "rel": "item", + "href": "./BG31_10000_0305.json", + "type": "application/json", + "file:checksum": "1220ddcb9c4a856208bd665b2b25f2182e4cf5b76364525073157c85fdb973213655" + }, + { + "rel": "item", + "href": "./BG32_10000_0101.json", + "type": "application/json", + "file:checksum": "12208bb79042d9d9920d2e1c247e2f260879d530bc4816848ef48dfdf20f40712cba" + }, + { + "rel": "item", + "href": "./BG32_10000_0102.json", + "type": "application/json", + "file:checksum": "122058bd3ee184c129c71a38caa1ce2b3fc975348b4db2f3c993da9c53878c355a94" + }, + { + "rel": "item", + "href": "./BG32_10000_0103.json", + "type": "application/json", + "file:checksum": "12202986f273bfcee7a0861a3f60063d9f54b8c5848b707d77376e332f41020a8c22" + }, + { + "rel": "item", + "href": "./BG32_10000_0104.json", + "type": "application/json", + "file:checksum": "1220d7cef0fc14d44aa814c543a21bf396118a064535ec690fa7477936422f923e8d" + }, + { + "rel": "item", + "href": "./BG32_10000_0105.json", + "type": "application/json", + "file:checksum": "1220c1fc806de63b2eafa4763fe8aa9b33109089a25946df6918555ca241668047f4" + }, + { + "rel": "item", + "href": "./BG32_10000_0201.json", + "type": "application/json", + "file:checksum": "1220f61d076cb116f4a0e713c994cb28a783e367d47a5ccca3898a81b22663acad59" + }, + { + "rel": "item", + "href": "./BG32_10000_0202.json", + "type": "application/json", + "file:checksum": "122058b47302980187888ba784247e7ff38febc0d6af6cf70dc4263a221275385312" + }, + { + "rel": "item", + "href": "./BG32_10000_0203.json", + "type": "application/json", + "file:checksum": "12203eda9169d97c6c2c5aba0b872b504761ed9af3cf80587e2ffb9205df8c3d2be0" + }, + { + "rel": "item", + "href": "./BG32_10000_0204.json", + "type": "application/json", + "file:checksum": "1220d997a91d5aba277aa5ef6004a357349ee61b3209cc90badb2915fd81c033af29" + }, + { + "rel": "item", + "href": "./BG32_10000_0205.json", + "type": "application/json", + "file:checksum": "12207defe24cc50ee64d47e28fc730851fb12d1a9d5d144edb543ffd746d4882c28e" + }, + { + "rel": "item", + "href": "./BG32_10000_0301.json", + "type": "application/json", + "file:checksum": "12203d17eadffa952d6ae701d2a4a59efe8a50dbdde406e9019e7151b92561072965" + }, + { + "rel": "item", + "href": "./BG32_10000_0302.json", + "type": "application/json", + "file:checksum": "12201791233129f484a423d91c8143c743721d0706b8bcb74850c4f332c7d544298a" + }, + { + "rel": "item", + "href": "./BG32_10000_0303.json", + "type": "application/json", + "file:checksum": "1220372ac8323c8067da0c27f5f815802b56af313d3c7e33af15959542e9ca4c5559" + }, + { + "rel": "item", + "href": "./BG32_10000_0304.json", + "type": "application/json", + "file:checksum": "12207e52db9e6c8436c0eac1e6cb4fe05f1bbf076db4d228adf6ff2a1a1e33c5e6ac" + }, + { + "rel": "item", + "href": "./BG32_10000_0401.json", + "type": "application/json", + "file:checksum": "12202ecc69317fe704bd0f9322f52f3b7057fb87647d35ef1d9bc59815efe669ca30" + }, + { + "rel": "item", + "href": "./BG32_10000_0402.json", + "type": "application/json", + "file:checksum": "122023744b07c3d8584fba906b4847dfa1aa69c31d3e2a22c9249562b730f9187ba9" + }, + { + "rel": "item", + "href": "./BG33_10000_0101.json", + "type": "application/json", + "file:checksum": "1220594d158d5f916b0df5901a0b3ef7c362b0fdd7944e518f3af69e2c3068eaa9eb" + }, + { + "rel": "item", + "href": "./BG33_10000_0102.json", + "type": "application/json", + "file:checksum": "12208f83351cf01d46cdaf0ee92d16cd70d1a6238ea8ba518c3d63f948c2e6c1fbf3" + }, + { + "rel": "item", + "href": "./BG33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220f088f4b4626f0eb40ea6ab1b523c6f96c06cf678cc2ffcffa433fad89e33ddf5" + }, + { + "rel": "item", + "href": "./BG33_10000_0104.json", + "type": "application/json", + "file:checksum": "1220bac5107eda9d26db37f68f37c32fea9adf0e25e1a91380f93147ca9ef7cc29b2" + }, + { + "rel": "item", + "href": "./BG33_10000_0105.json", + "type": "application/json", + "file:checksum": "1220a954aa3d7614d73df78505d5f491dceac772676966b64c6b7acb776d1d10fd04" + }, + { + "rel": "item", + "href": "./BG33_10000_0201.json", + "type": "application/json", + "file:checksum": "12206be28433fd785a0f31a2e9e67ddb50151e8cc22152f1b7f7b03879b4fcaf0bd8" + }, + { + "rel": "item", + "href": "./BG33_10000_0202.json", + "type": "application/json", + "file:checksum": "1220ee097ab8fb8e3427d960437bdfcaea8b4179cf1d269662daacfe1aa0adc97a33" + }, + { + "rel": "item", + "href": "./BG33_10000_0203.json", + "type": "application/json", + "file:checksum": "1220d7b24627bf8e736d08e0c17f9bf63b97cab41f6c81eb2d6fbb010ed754cdb348" + }, + { + "rel": "item", + "href": "./BG33_10000_0204.json", + "type": "application/json", + "file:checksum": "122097cdc6f891277e2a217b944d467765eaa20c4ba1551583e14061c9d697600551" + }, + { + "rel": "item", + "href": "./BG34_10000_0101.json", + "type": "application/json", + "file:checksum": "12209dba057a3c857d870a303e49f15236c9de7ead24d4e004cd0884accd263285f5" + }, + { + "rel": "item", + "href": "./BG34_10000_0105.json", + "type": "application/json", + "file:checksum": "1220307ed65245481c87603562d99f0725efe7c740bf325c82c7efd8a173a01fb8f2" + }, + { + "rel": "item", + "href": "./BG34_10000_0205.json", + "type": "application/json", + "file:checksum": "12201398f63acd7ff36e82eb969edc83f741d29b2efadf1d9d9eb0e3453065169925" + }, + { + "rel": "item", + "href": "./BG34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220a4160838a561ac710a8f07e5bfb94e9b9e3767a77a6547c88a60b9ce06cc1d92" + }, + { + "rel": "item", + "href": "./BG34_10000_0305.json", + "type": "application/json", + "file:checksum": "12208a537163834b1c932fe5f51da15856d499723908b2ed4caa18b0e821de032454" + }, + { + "rel": "item", + "href": "./BG34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220bac615e0207feb7127393c18a199ec787a7fcdc637b00d6258fb9115f974028a" + }, + { + "rel": "item", + "href": "./BG34_10000_0405.json", + "type": "application/json", + "file:checksum": "1220d871689469033d1574bfd45e608f37824e638d8f916c306d25207cf8f0c894f9" + }, + { + "rel": "item", + "href": "./BG34_10000_0504.json", + "type": "application/json", + "file:checksum": "1220822d83b1557ef2e28bbf379f76b71f7dbc8c50ee2626c877b60fc7013d9919d5" + }, + { + "rel": "item", + "href": "./BG34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220b3199e99bc39ddd1b4ef8ec48aeed73f000b5e0bdece51cae84d0c7d2f7fd995" + }, + { + "rel": "item", + "href": "./BG35_10000_0101.json", + "type": "application/json", + "file:checksum": "12201b2a4b7ce52bec41213eef31ac5c0d627b5642b827d3d0bdb31fd1da3f08db03" + }, + { + "rel": "item", + "href": "./BG35_10000_0102.json", + "type": "application/json", + "file:checksum": "1220ce32800b43fbb2d60ba6123110c8b88b5fe5e4a248df22ddc9d6bdecbe526467" + }, + { + "rel": "item", + "href": "./BG35_10000_0103.json", + "type": "application/json", + "file:checksum": "12202edf02ec454c4927b278a3b23f0c5c6a28ed5c072ef03fa5fae77a51a1f1203e" + }, + { + "rel": "item", + "href": "./BG35_10000_0104.json", + "type": "application/json", + "file:checksum": "1220b25a1174a78a2a88d3976123fa9e928b182ebf036973a8e2b22f02a5edd2dda4" + }, + { + "rel": "item", + "href": "./BG35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220ec86ed52143194fbc46b8dcae27df2d6ccb84747e6c354a72881c7237d71805e" + }, + { + "rel": "item", + "href": "./BG35_10000_0201.json", + "type": "application/json", + "file:checksum": "1220eafe745e28de3a53f071e22be87b4bfaa0946779b1f06a81d2527fa0a3a493a3" + }, + { + "rel": "item", + "href": "./BG35_10000_0202.json", + "type": "application/json", + "file:checksum": "12202cf52adea4876d218652519da0ceae11829f9cc55599819335168e5b4635f3c1" + }, + { + "rel": "item", + "href": "./BG35_10000_0203.json", + "type": "application/json", + "file:checksum": "12201d4a36d7e92fbf964c04440086abe53abc861c3174d334c87209312ccde035d7" + }, + { + "rel": "item", + "href": "./BG35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220002541f58b535477852ff1ce8a07492d11331f9718d62066c498e00e7600cb08" + }, + { + "rel": "item", + "href": "./BG35_10000_0205.json", + "type": "application/json", + "file:checksum": "1220d16fac290270b503c30ee871419b4eec86d793900ff95c81b0e5760589637194" + }, + { + "rel": "item", + "href": "./BG35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220e9648d840deeddecbb5a80aea914cd49008203c60b3886e19110a9142cd69d17" + }, + { + "rel": "item", + "href": "./BG35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220838bde4e989dbc27f02ffa3177d41c88f012db236b4a86539db354993a310ca1" + }, + { + "rel": "item", + "href": "./BG35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220212c024902e51874701bb77d4e57a0e553d4ab15c098a4dca6b8d3294128f506" + }, + { + "rel": "item", + "href": "./BG35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220242e90866d8db0191dbf4646b56c69c4335050821d0ea9f911e8060ce9e96af7" + }, + { + "rel": "item", + "href": "./BG35_10000_0305.json", + "type": "application/json", + "file:checksum": "12209f90e16133ff20ca42ee5fe0b4ed3d2f5f670f976c4749e36e70853d33f6a1a1" + }, + { + "rel": "item", + "href": "./BG35_10000_0401.json", + "type": "application/json", + "file:checksum": "122038f3868bba998bad0aac2a4a902b58cd0e85aed4a0638e45e6d81931d9d000d4" + }, + { + "rel": "item", + "href": "./BG35_10000_0402.json", + "type": "application/json", + "file:checksum": "12208a84fbe024e68f0414a67ac6a5d7245898460796b07e7dd907e6229363794f77" + }, + { + "rel": "item", + "href": "./BG35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220d4cecc81b4d470e33b1011d734e30053eacb52782360af12a67edfbf30b83d70" + }, + { + "rel": "item", + "href": "./BG35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220a584d2f524eb93cab8b5cce14dd6295d466c5f592cfd6c5ae46e864c68505ab0" + }, + { + "rel": "item", + "href": "./BG35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220f888235cdd2070bb578f66e0b334a0409df80d804878bce3b155463d456fc1a2" + }, + { + "rel": "item", + "href": "./BG35_10000_0502.json", + "type": "application/json", + "file:checksum": "12205ff1ff232f07edae6781163da6f1cd73a8c06d6aa583bedbccea4c899191ad57" + }, + { + "rel": "item", + "href": "./BG35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220dc5508f5b71855415829ecc16f76ea235ac862a4132bbae89e0e1f5af31cb9b6" + }, + { + "rel": "item", + "href": "./BG35_10000_0504.json", + "type": "application/json", + "file:checksum": "12207ee246afba7cfbd005552c97b22cc390557d1d414b7ec4a696bec1f86a9a1585" + }, + { + "rel": "item", + "href": "./BG36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220b92f07aa0602a2ed43a72c6029c5322c7d1bbc2e27f7c1e47e5bf3345d2b2530" + }, + { + "rel": "item", + "href": "./BG36_10000_0102.json", + "type": "application/json", + "file:checksum": "12209974fa487153be320a08c068a0a313972c3a54e0ae5647ef58cf702e9c20c078" + }, + { + "rel": "item", + "href": "./BG36_10000_0103.json", + "type": "application/json", + "file:checksum": "1220bd13a56bc29c066d246184a94c657266930ab49c81f97a351bc8a97e8e8f0095" + }, + { + "rel": "item", + "href": "./BG36_10000_0104.json", + "type": "application/json", + "file:checksum": "1220b689240838d2dbddce174a96f4b3b729090034a61b96288e9e8e4a4976e19ed4" + }, + { + "rel": "item", + "href": "./BG36_10000_0105.json", + "type": "application/json", + "file:checksum": "12206f4847de29c3b907e5d0e4e18354b2c45596f48ba2192b5794067437c7bc0801" + }, + { + "rel": "item", + "href": "./BG36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220143bd2df11623170e5191773458b6424908860a3006448bbb75d204abab52df8" + }, + { + "rel": "item", + "href": "./BG36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220340890555b3382a6f892a89d069d3dd381180a4bec038474530bf9270e3d9de5" + }, + { + "rel": "item", + "href": "./BG36_10000_0203.json", + "type": "application/json", + "file:checksum": "1220a827accbc1605e62d0ea5b2db9949e80be1b27f3e84efea47806fcbf4c7de295" + }, + { + "rel": "item", + "href": "./BG36_10000_0204.json", + "type": "application/json", + "file:checksum": "12209ddc2618bc53780a55b0abf33a3bdf15841774140c0469ad34f7e95799b45737" + }, + { + "rel": "item", + "href": "./BG36_10000_0205.json", + "type": "application/json", + "file:checksum": "12206c0ce7819794c475223921e52dca3f60901a4ade0c90f02b135dde04b17c779d" + }, + { + "rel": "item", + "href": "./BG36_10000_0301.json", + "type": "application/json", + "file:checksum": "122097f9b51b75fa92718a6d54754405a35903147088a6892d2135cf581037a2c33c" + }, + { + "rel": "item", + "href": "./BG36_10000_0302.json", + "type": "application/json", + "file:checksum": "122013412c7e62e6e7546b490e654bf8fb1eec697f38a33ba5948d9651422e1237e8" + }, + { + "rel": "item", + "href": "./BG36_10000_0303.json", + "type": "application/json", + "file:checksum": "12203be8dc2b9acb6e0948942d27766091a89998cff2a68e6001acf6317e9237c94c" + }, + { + "rel": "item", + "href": "./BG36_10000_0304.json", + "type": "application/json", + "file:checksum": "1220fcac6979fdaf47ad9e0e378fffea673bbf777dfea22e2f1ff4997b6ac18c6c45" + }, + { + "rel": "item", + "href": "./BG36_10000_0305.json", + "type": "application/json", + "file:checksum": "1220d634aff02b723b241530cf092b18951b35b2887ad7629041b6ac85f0b5e40b94" + }, + { + "rel": "item", + "href": "./BG36_10000_0402.json", + "type": "application/json", + "file:checksum": "122013d5a98510c960a3d4b1774d261fafd307af49caa79569d4f130b8984166a02c" + }, + { + "rel": "item", + "href": "./BG36_10000_0403.json", + "type": "application/json", + "file:checksum": "12209cb90ccc4a057997c5901489b3aac25f467c11b0502c1a24593827ea5a304ac0" + }, + { + "rel": "item", + "href": "./BG36_10000_0404.json", + "type": "application/json", + "file:checksum": "1220922e372f076e5fbbb362c9ac0dcb483276501c24a413cfaf380d7142a9072a58" + }, + { + "rel": "item", + "href": "./BG36_10000_0405.json", + "type": "application/json", + "file:checksum": "122045c36b62c7a6b659fec34b5d79e27a46bad7a70a3937712d30006f85ed6a7976" + }, + { + "rel": "item", + "href": "./BG36_10000_0501.json", + "type": "application/json", + "file:checksum": "12209a39527de802aa2e1cf161a3e4bc0c7db2a5a3720330b37fb8afa874c170fda1" + }, + { + "rel": "item", + "href": "./BG36_10000_0502.json", + "type": "application/json", + "file:checksum": "122062b3dbf9a0fd8add806be4842bfefa6d8e378c61a8deee8f676eecad5c665d59" + }, + { + "rel": "item", + "href": "./BG36_10000_0503.json", + "type": "application/json", + "file:checksum": "12202824d9d14b9bc58c399eeef22e789916579952c4cf220f2f7601025e6bd5a790" + }, + { + "rel": "item", + "href": "./BG36_10000_0504.json", + "type": "application/json", + "file:checksum": "1220df8dc4f31247d95be560dcc7afb7096ed67c8c811781d1d730b7b779798dfb3a" + }, + { + "rel": "item", + "href": "./BG36_10000_0505.json", + "type": "application/json", + "file:checksum": "122021c0ac3db5169ba2fab02ccb95726e9fab9979aa5609492485fa45041a9e0ebf" + }, + { + "rel": "item", + "href": "./BG37_10000_0101.json", + "type": "application/json", + "file:checksum": "12207d8c81df8604f70c8a992a1aec7be1ffa49686d13e03fbaf3e26359eae081b46" + }, + { + "rel": "item", + "href": "./BG37_10000_0102.json", + "type": "application/json", + "file:checksum": "1220b7d2d878c59aed768a8933d65db1144e6f943e6911b92b3e1e57648b9c586238" + }, + { + "rel": "item", + "href": "./BG37_10000_0103.json", + "type": "application/json", + "file:checksum": "1220c43a7e2b5c8508c852ee686e5f2f9c33fc3730eef99df0639405eff72911c105" + }, + { + "rel": "item", + "href": "./BG37_10000_0104.json", + "type": "application/json", + "file:checksum": "12204e7d3a395039628b1189b98f0f2055c7dc414686a9a7398b792bfc48ef6e9a91" + }, + { + "rel": "item", + "href": "./BG37_10000_0105.json", + "type": "application/json", + "file:checksum": "12202991f2c36c1b7489f8f23fed833adf22ed1863279eb322294e390d4c87e58cac" + }, + { + "rel": "item", + "href": "./BG37_10000_0201.json", + "type": "application/json", + "file:checksum": "122063e193eed22eb8e581a8d663c4895bb272533bedb2565fa88fda1418660baa07" + }, + { + "rel": "item", + "href": "./BG37_10000_0202.json", + "type": "application/json", + "file:checksum": "12203f074b6754cd44a8508218d94f54bcd4edfa88083c5a77dd730e277e28a188a0" + }, + { + "rel": "item", + "href": "./BG37_10000_0203.json", + "type": "application/json", + "file:checksum": "1220e0b570a82a859bad12fc1ab23099f014368527b506a610b5c02049a8e03b1e4d" + }, + { + "rel": "item", + "href": "./BG37_10000_0204.json", + "type": "application/json", + "file:checksum": "12207c751ba77ba4e20362defc8e6cade490c7f7cc94f1407e931d7581c11e66ccd6" + }, + { + "rel": "item", + "href": "./BG37_10000_0205.json", + "type": "application/json", + "file:checksum": "122037f1c576d3d410473d55b16c19c18d0f504e0036165e8fb7073b83923cd1b978" + }, + { + "rel": "item", + "href": "./BG37_10000_0301.json", + "type": "application/json", + "file:checksum": "1220c5030f90c4724c7313a52a051e9ed0ec0ca3c80f901afcf6c849880d39fa1ff2" + }, + { + "rel": "item", + "href": "./BG37_10000_0302.json", + "type": "application/json", + "file:checksum": "122019f5cccf922cb3a914cc94c676c9530080bcaa29dc74216775b35ff255fb0066" + }, + { + "rel": "item", + "href": "./BG37_10000_0303.json", + "type": "application/json", + "file:checksum": "122086835f44e8d83977fc4c804ab6bc685f231bfb703e747eba76abc4ce74f9d5b0" + }, + { + "rel": "item", + "href": "./BG37_10000_0304.json", + "type": "application/json", + "file:checksum": "122033261de3ef3e30be2be25a270a7cc7b4a9e4e95d6c85d0fbb8f7823aa5c5bbe0" + }, + { + "rel": "item", + "href": "./BG37_10000_0305.json", + "type": "application/json", + "file:checksum": "1220828b2a678bc50d7eb2d02bcb260f0c098c945b195acaaab7453a7047a166c5e3" + }, + { + "rel": "item", + "href": "./BG37_10000_0401.json", + "type": "application/json", + "file:checksum": "1220d55da4a5c0c3166bd30fe9856e73a71b1d5308ac29a0f04549467ca972ca75e2" + }, + { + "rel": "item", + "href": "./BG37_10000_0402.json", + "type": "application/json", + "file:checksum": "1220866a9fa907f78031d57aa47a5cb7d7ed73274d97857c72dd8930fb7710caaa1e" + }, + { + "rel": "item", + "href": "./BG37_10000_0403.json", + "type": "application/json", + "file:checksum": "1220a8bfceb19ff3f4168feb3af11b2ee6ddd5d67b4207a03c5c69c3747e25e17d5d" + }, + { + "rel": "item", + "href": "./BG37_10000_0404.json", + "type": "application/json", + "file:checksum": "12206a1ba02e16544a13cf55012487aa9846dcac20b522d5a46df55d90e2e8b28239" + }, + { + "rel": "item", + "href": "./BG37_10000_0405.json", + "type": "application/json", + "file:checksum": "1220445030f28f8724a8de8fe2fddffbb41524060a28303f698f4a957acc05b69d30" + }, + { + "rel": "item", + "href": "./BG37_10000_0501.json", + "type": "application/json", + "file:checksum": "1220c504854eca363e34ee97d36cc5c7e5460f48e6730185ee9cb6f2199023dcf610" + }, + { + "rel": "item", + "href": "./BG37_10000_0502.json", + "type": "application/json", + "file:checksum": "12205ba24a63ad076391315ad6228c4719dd52ef222c67b62d06fcd3799812779c98" + }, + { + "rel": "item", + "href": "./BG37_10000_0503.json", + "type": "application/json", + "file:checksum": "1220838b40d46c050e8fd7468183d622a7a5079496a39744a0ef713d867002992ec6" + }, + { + "rel": "item", + "href": "./BG37_10000_0504.json", + "type": "application/json", + "file:checksum": "1220333a1fcaa0083e27ff0a72365d0d2f664c789481998cf9458230f6a1c6f52b9e" + }, + { + "rel": "item", + "href": "./BG37_10000_0505.json", + "type": "application/json", + "file:checksum": "1220113b70389e8db942f1e743aa96115b47051b2424d36358014c2f1f3c888ad494" + }, + { + "rel": "item", + "href": "./BG38_10000_0101.json", + "type": "application/json", + "file:checksum": "1220934da9c4036a1cde4b3d8b3186ee0ad834690a0305fda3763ca28fdf11af67af" + }, + { + "rel": "item", + "href": "./BG38_10000_0102.json", + "type": "application/json", + "file:checksum": "12203fb9ddc95d7e1768049eeef5135350d723bd63fc6bccb73a47727667709ca95c" + }, + { + "rel": "item", + "href": "./BG38_10000_0103.json", + "type": "application/json", + "file:checksum": "12202ac635f5fc7be9ab62ce8abdeef6bd8bd8f9e514b0973a162c2453e37e391ffd" + }, + { + "rel": "item", + "href": "./BG38_10000_0201.json", + "type": "application/json", + "file:checksum": "12200838bdcbe9924501f978b736c81839f916c3a842b682eb8ae3c3262d78cd4f6b" + }, + { + "rel": "item", + "href": "./BG38_10000_0202.json", + "type": "application/json", + "file:checksum": "12206e7894bd0908cd9752b2f3c419fcee04311252131768cf516d9660e48e68a565" + }, + { + "rel": "item", + "href": "./BG38_10000_0203.json", + "type": "application/json", + "file:checksum": "12204ad9d873c10e14940f654fe51316f7095cf7bef6fb0e765193e99315eccb5fdd" + }, + { + "rel": "item", + "href": "./BG38_10000_0204.json", + "type": "application/json", + "file:checksum": "12209ecc3126ab7c9dfc37099e0dfb8273f30e6f176823890ff4ee5c509f22681a61" + }, + { + "rel": "item", + "href": "./BG38_10000_0301.json", + "type": "application/json", + "file:checksum": "12209841560d11b65559b0f9dc41c08fc8249c8d05b9f9f4968004d0b59da1894950" + }, + { + "rel": "item", + "href": "./BG38_10000_0302.json", + "type": "application/json", + "file:checksum": "12207cc219501d12e86880184f87d63d91d7910d565560ca3ad6c962754de9e52f62" + }, + { + "rel": "item", + "href": "./BG38_10000_0303.json", + "type": "application/json", + "file:checksum": "1220228e8463acccb6e9ed88f9a712a072f9a181e08ff1ce3abe5783b6d20aaa9c70" + }, + { + "rel": "item", + "href": "./BG38_10000_0304.json", + "type": "application/json", + "file:checksum": "12204bc49d6c15fc8f33ad5059ff77d37dc31a26502dd8534568385baa37921c3efe" + }, + { + "rel": "item", + "href": "./BG38_10000_0401.json", + "type": "application/json", + "file:checksum": "1220979cf97516f1c7a31c0d834ae91406a880e0456194104b060d20dbb4e8d05fcf" + }, + { + "rel": "item", + "href": "./BG38_10000_0402.json", + "type": "application/json", + "file:checksum": "12200dcfcbfddadfdad2217d94924d2adc618893e6ba735765b692a5b5e296dcec49" + }, + { + "rel": "item", + "href": "./BG38_10000_0403.json", + "type": "application/json", + "file:checksum": "12200b7958d3215ac712291baa1f23b860dc3ca4429f3b857d94dd6406b590fffad8" + }, + { + "rel": "item", + "href": "./BG38_10000_0404.json", + "type": "application/json", + "file:checksum": "12206e90e0b052024cc3eee6c67983e30ca790a9d0bbf0cf1574c144b03a4d1c3622" + }, + { + "rel": "item", + "href": "./BG38_10000_0501.json", + "type": "application/json", + "file:checksum": "1220c159bd7df0cd5fd1d981cdce7550adcfceaeaeed845e7d644eda440c25378231" + }, + { + "rel": "item", + "href": "./BG38_10000_0502.json", + "type": "application/json", + "file:checksum": "1220d7adc109f9743898709fae1ee83bbbdf5e5ac8f2dda7a8b3b2886c95de022d96" + }, + { + "rel": "item", + "href": "./BG38_10000_0503.json", + "type": "application/json", + "file:checksum": "12209e7d4406f076032d7b6929f6616f0d0209cfa9b01117874eb117ba32ab078c7b" + }, + { + "rel": "item", + "href": "./BG38_10000_0504.json", + "type": "application/json", + "file:checksum": "122023073d303bb3b1d9f929ed1278e0f224126c9355d3d37a28c64192ec4ed8f8be" + }, + { + "rel": "item", + "href": "./BG38_10000_0505.json", + "type": "application/json", + "file:checksum": "122060d46503b88d277b15a11ff8c05ef63827a5145e185d31b19b3f5aa35176abfd" + }, + { + "rel": "item", + "href": "./BH34_10000_0104.json", + "type": "application/json", + "file:checksum": "122087e598228e362a5433c8f9bc662fcd7ad6743e89ce6a8c7f27d7453449543e53" + }, + { + "rel": "item", + "href": "./BH34_10000_0105.json", + "type": "application/json", + "file:checksum": "1220227215ade3f10af643a10798002724dab464e2aa5b95f5f55ffad7023b2a44ca" + }, + { + "rel": "item", + "href": "./BH34_10000_0204.json", + "type": "application/json", + "file:checksum": "1220aeb280a63334dafa19c48b3cd365b6e27787d94d148150be7acc8debf1a610c7" + }, + { + "rel": "item", + "href": "./BH34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220dfbf594569a9e6bf8930dadf49b9378faaff80e0e8674c7cefc953af9fc1a41e" + }, + { + "rel": "item", + "href": "./BH34_10000_0305.json", + "type": "application/json", + "file:checksum": "122039f6ca14af801ea571c7205780ed4620c26237db786b7091aa4f807209a94364" + }, + { + "rel": "item", + "href": "./BH34_10000_0405.json", + "type": "application/json", + "file:checksum": "12207db389892748f0f4106b8495ff88b0246f3cee5646fbf2a91071a959d1bb9726" + }, + { + "rel": "item", + "href": "./BH34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220fa872fb53c9a61b82cdd76df549c969136ef1c61f70e6375bf00ebbcc818b6ed" + }, + { + "rel": "item", + "href": "./BH35_10000_0101.json", + "type": "application/json", + "file:checksum": "12204fbfa8f41ff18d05212bb00c2f7b82ca5c52a2ae4c6cab2f3424d196cc5a722b" + }, + { + "rel": "item", + "href": "./BH35_10000_0102.json", + "type": "application/json", + "file:checksum": "12206fc4280e0502b95039f84eb308e71c9e7f5a8d37a917dfc589cfa9fe36028c59" + }, + { + "rel": "item", + "href": "./BH35_10000_0103.json", + "type": "application/json", + "file:checksum": "1220f825759ee7e9244146387b6d29bf2f8a04390ae1a04de90801e4001b1f30cf74" + }, + { + "rel": "item", + "href": "./BH35_10000_0105.json", + "type": "application/json", + "file:checksum": "122031ad0baebd9954175cf42a93dc93b22c5eb70598eb1e2f7c7a6900aa623bfd9d" + }, + { + "rel": "item", + "href": "./BH35_10000_0201.json", + "type": "application/json", + "file:checksum": "1220d282b2d5fa0d205350a7c54143397b53637ea4cbe8941e85582bf82ee4447a52" + }, + { + "rel": "item", + "href": "./BH35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220e7ac6f66daa032ba48058161fc61b963ea3bacc67440ee3e9be717c0c3005c3c" + }, + { + "rel": "item", + "href": "./BH35_10000_0203.json", + "type": "application/json", + "file:checksum": "122097fff0d21aea44c45b10990879dc73643f71468c6e9ac0c58bcb29fcec94e182" + }, + { + "rel": "item", + "href": "./BH35_10000_0204.json", + "type": "application/json", + "file:checksum": "12206c6a3fda1bfe77c20b6e94f9dbb07bd6d2246f902c6796fdee12da286e022076" + }, + { + "rel": "item", + "href": "./BH35_10000_0205.json", + "type": "application/json", + "file:checksum": "122099f4646b75023082e6565d4a2e396c4f8e9261fcb92d95e3b85be51c20ad2d57" + }, + { + "rel": "item", + "href": "./BH35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220fb4b719bd467d7def0455d688e3dbe070d8336f89a4d9fe932b837a1aa5c0e62" + }, + { + "rel": "item", + "href": "./BH35_10000_0302.json", + "type": "application/json", + "file:checksum": "12207f17e070e0752674e7ddf6e77d821ad70362bf67fc8dae0111a0ed4e0ae21d0b" + }, + { + "rel": "item", + "href": "./BH35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220b62ef1e3f2e86ab9fb12d455116a779b55e25d0800256981b2d44a153a94305e" + }, + { + "rel": "item", + "href": "./BH35_10000_0304.json", + "type": "application/json", + "file:checksum": "12203d672eeda8c050845e641135c18cc51034bf634fe4b1f732a774f33ff5980011" + }, + { + "rel": "item", + "href": "./BH35_10000_0305.json", + "type": "application/json", + "file:checksum": "12200e49d1876174fcde42f97daeb408ef63d62edf5d4183a8ac337bbad5f3678a91" + }, + { + "rel": "item", + "href": "./BH35_10000_0401.json", + "type": "application/json", + "file:checksum": "122033c16d19da6777ca8224b004079b48369af1ce3f1d23398d6966e7b845d5b312" + }, + { + "rel": "item", + "href": "./BH35_10000_0402.json", + "type": "application/json", + "file:checksum": "12205b8d81477012105ca4f11234a48c665a4e6cfe880b50ae573e4ab91ee926c443" + }, + { + "rel": "item", + "href": "./BH35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220f4f895b6e3857616196e0cb63819cb9d89c7cb9c2b2bb147f65eda1337b97957" + }, + { + "rel": "item", + "href": "./BH35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220b648e9b8e457b37bfa8dbabad647611bce8ac5e01bf4b1e3a7e691719daf5fff" + }, + { + "rel": "item", + "href": "./BH35_10000_0405.json", + "type": "application/json", + "file:checksum": "12203c1e25382fd6257ed71ad21a11ce14dee9eb1d7fb6ae4f828d1cff08588e4d22" + }, + { + "rel": "item", + "href": "./BH35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220b2926a8ed678f3726c0975ac63750469a91ebfeb247f3f39e101885b2f61cc26" + }, + { + "rel": "item", + "href": "./BH35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220b7b241015d0c989fd6295b0a3da27724f83121f30dacfabc7d27b63d59ae7d11" + }, + { + "rel": "item", + "href": "./BH35_10000_0503.json", + "type": "application/json", + "file:checksum": "122021946be072749231c9183b56f36a4068137da6457e948a9554405b67ee91dfbd" + }, + { + "rel": "item", + "href": "./BH35_10000_0504.json", + "type": "application/json", + "file:checksum": "1220813f5d0f70a62413a812d58f991b4ae132a90b6c18eeacd1a80a192cc79186f4" + }, + { + "rel": "item", + "href": "./BH35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220375136cede8690c3929a08010c473317052cbc496b3803fd017f6550b8b64c5a" + }, + { + "rel": "item", + "href": "./BH36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220feb03c33aed3b8445d843d071fdd917f66e7af9715044e6202d7b4ccb9f79af2" + }, + { + "rel": "item", + "href": "./BH36_10000_0102.json", + "type": "application/json", + "file:checksum": "1220a6736ae70d10c890c56dbe3bb640a529847c41c94502bdb1ffbbd5686905c138" + }, + { + "rel": "item", + "href": "./BH36_10000_0103.json", + "type": "application/json", + "file:checksum": "12203e7d1e6f95ff67966ac0e0b65251d90a7a746df11e0164e3d11c1697d327f587" + }, + { + "rel": "item", + "href": "./BH36_10000_0104.json", + "type": "application/json", + "file:checksum": "12202aef2e53a29b549f4e3b316ffd3a5d7ed4fc295c24ce8d086e05fbcdc0f939b6" + }, + { + "rel": "item", + "href": "./BH36_10000_0105.json", + "type": "application/json", + "file:checksum": "1220c965e6b2912d0678cab24986314dda1a2dd16bd9fb240e08c9a8447c76a707d5" + }, + { + "rel": "item", + "href": "./BH36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220860ebac47b74605bea88ce41b35544f01e846401f0490d5135627f4d2be7c5a2" + }, + { + "rel": "item", + "href": "./BH36_10000_0202.json", + "type": "application/json", + "file:checksum": "12201cd4fa7f2e80190010fd14669f083a157b5b3c818abbe70f57d4cf3c31a6bb93" + }, + { + "rel": "item", + "href": "./BH36_10000_0203.json", + "type": "application/json", + "file:checksum": "122023b4ffb63ca52b71e67dcbd1581f8ca3dce3820729789f7e35554f0fdc65ed25" + }, + { + "rel": "item", + "href": "./BH36_10000_0204.json", + "type": "application/json", + "file:checksum": "122031f8d017b3b79c4299b67c20e491941f2b2d1a8149708ba9a24ae4b1cf7ee80b" + }, + { + "rel": "item", + "href": "./BH36_10000_0205.json", + "type": "application/json", + "file:checksum": "1220195d0bda4696b07a076604c6cdee96468728a5d8d385e53d0b7925d4520e1f7e" + }, + { + "rel": "item", + "href": "./BH36_10000_0301.json", + "type": "application/json", + "file:checksum": "122095fe38d6c492def0b9106cb038306022fd1582e3d60816b80fc084ce9899dbd7" + }, + { + "rel": "item", + "href": "./BH36_10000_0302.json", + "type": "application/json", + "file:checksum": "122067d107d4eab9c83e2a83fd71c980ace6bf0e670d0d68e4b3d9839f6323e60bb8" + }, + { + "rel": "item", + "href": "./BH36_10000_0303.json", + "type": "application/json", + "file:checksum": "1220c6f26f3b749d6ad895f3534ec27367f4265cae69fd98e101ba01f84898b691fe" + }, + { + "rel": "item", + "href": "./BH36_10000_0304.json", + "type": "application/json", + "file:checksum": "1220c9d010eec1f833b2afd6547568225ab09f15fc50675d10c3d668ad6350aacb63" + }, + { + "rel": "item", + "href": "./BH36_10000_0305.json", + "type": "application/json", + "file:checksum": "12206191073c72d1d6ff38180aff03f66c3acf8c216976366919ad1f5f5d8c71ccc9" + }, + { + "rel": "item", + "href": "./BH36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220c147ba73462e9d19fe2b8f52fb9c84bd1ec6165128ef451dde5d448cc40fb4f9" + }, + { + "rel": "item", + "href": "./BH36_10000_0402.json", + "type": "application/json", + "file:checksum": "1220faf840746b5e802d0fb017436230e2dcb7d5c2769b21308b695c213def4b7ed0" + }, + { + "rel": "item", + "href": "./BH36_10000_0403.json", + "type": "application/json", + "file:checksum": "122031a1d5ec89de4ff66643c4d1d8faafa325d89b6b86d358466dbc25ce56be95f3" + }, + { + "rel": "item", + "href": "./BH36_10000_0404.json", + "type": "application/json", + "file:checksum": "122089fbc8bd5ccf34a496c89649f2eabfa108de82a646dc136544aa0b7ab1fe0d79" + }, + { + "rel": "item", + "href": "./BH36_10000_0405.json", + "type": "application/json", + "file:checksum": "12203bfbd2a82e3466f61c236c062d6ab5af546f520331c3a1d7e632948c4eaa9fe4" + }, + { + "rel": "item", + "href": "./BH36_10000_0501.json", + "type": "application/json", + "file:checksum": "12204417f47d3d955dc0c49a4fdca6df5f48fe865519295fa42e5f29c713e5de818c" + }, + { + "rel": "item", + "href": "./BH36_10000_0502.json", + "type": "application/json", + "file:checksum": "12203bcaf5da2f45dbba5b36ea02ad6ed98b58282a324ad0d0951ed29df8dbc8768e" + }, + { + "rel": "item", + "href": "./BH36_10000_0503.json", + "type": "application/json", + "file:checksum": "12203cac568556468162fd473e93cf44fd27c342c8b0472f7470d2effc96791e2428" + }, + { + "rel": "item", + "href": "./BH36_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c21744bdea393dfc0d417bf7ac9542bd234349e781fc03ff44a93c2ddb479d86" + }, + { + "rel": "item", + "href": "./BH36_10000_0505.json", + "type": "application/json", + "file:checksum": "1220730ec15dfc8b7b2bae45520a49b9083f0be7ed26435319ea45f2e0ece8e907fd" + }, + { + "rel": "item", + "href": "./BH37_10000_0101.json", + "type": "application/json", + "file:checksum": "122078cadc46495e205194b0938f239a7b8b681a1f3d8eb977e8d495abbc49a45dae" + }, + { + "rel": "item", + "href": "./BH37_10000_0102.json", + "type": "application/json", + "file:checksum": "1220f23ddd9cd6a404d3dd797ac1719050b1695372a0c4269fe26920ae6ab2ea1678" + }, + { + "rel": "item", + "href": "./BH37_10000_0103.json", + "type": "application/json", + "file:checksum": "122046a9aaf4ed0bed0d1679f6d9e5064dfcea1e93ee691d7ddb691833aac5175380" + }, + { + "rel": "item", + "href": "./BH37_10000_0104.json", + "type": "application/json", + "file:checksum": "12205061700198cc18cbee04d8b579f414665759459ad94e60ab23dbcf3fc9cd41a7" + }, + { + "rel": "item", + "href": "./BH37_10000_0105.json", + "type": "application/json", + "file:checksum": "1220f4e6f2b8d30369cfa59baded2611d22dcf8794578fd071518d00d0d9c606fa59" + }, + { + "rel": "item", + "href": "./BH37_10000_0201.json", + "type": "application/json", + "file:checksum": "12200a8fc6f800a2956783f6e05ee07c536492ff1d7d390d86e01130d8da7c026892" + }, + { + "rel": "item", + "href": "./BH37_10000_0202.json", + "type": "application/json", + "file:checksum": "12203a9e80d9cdb5fbdae75cb22879ca931d44ebce45a3357a5179d4a7fd383e0c55" + }, + { + "rel": "item", + "href": "./BH37_10000_0203.json", + "type": "application/json", + "file:checksum": "1220dbba5322d80c59a799f6037c75ce6f983728fb35fa33925dda801f70e841e68b" + }, + { + "rel": "item", + "href": "./BH37_10000_0204.json", + "type": "application/json", + "file:checksum": "1220b38b186bbb624941045bf82abd7a7f9c693d35f10a68e748af2bdfdcd471845e" + }, + { + "rel": "item", + "href": "./BH37_10000_0205.json", + "type": "application/json", + "file:checksum": "1220b0e149650f4933f00404e42d48f7a82e04fedcab41bc2a6ce0d3afcfbb5c90e9" + }, + { + "rel": "item", + "href": "./BH37_10000_0301.json", + "type": "application/json", + "file:checksum": "1220ec703ad43ee44944bf41b56af0b7655b8601bffc8dcc1a63afae988c994b41a9" + }, + { + "rel": "item", + "href": "./BH37_10000_0302.json", + "type": "application/json", + "file:checksum": "1220e2cdb9e0e0117c64dde657c8f393749ce5907e8fc885922809be72d07f0aee59" + }, + { + "rel": "item", + "href": "./BH37_10000_0303.json", + "type": "application/json", + "file:checksum": "1220a60d1fded0b03024b98aead47e34bd47d49b382b39ab48faaf7e4c0523279c37" + }, + { + "rel": "item", + "href": "./BH37_10000_0304.json", + "type": "application/json", + "file:checksum": "1220a406541b6b7743f8d07378205e0dbf4ffe9f3d83f380357cc2f81f14a8316ca5" + }, + { + "rel": "item", + "href": "./BH37_10000_0305.json", + "type": "application/json", + "file:checksum": "1220a931af014fb3a123fc9a71e740f2a7feee1be21b057f04a56183f6c5a98f49a8" + }, + { + "rel": "item", + "href": "./BH37_10000_0401.json", + "type": "application/json", + "file:checksum": "1220867039f1b46b387dc5f76f1dea1d676a07abc17cb86da9cb38fe0d96fdeb7fc3" + }, + { + "rel": "item", + "href": "./BH37_10000_0402.json", + "type": "application/json", + "file:checksum": "12201670e18cc1d88bf2840219949bedbddadd725d02827bff0ad1b4017af1205ed6" + }, + { + "rel": "item", + "href": "./BH37_10000_0403.json", + "type": "application/json", + "file:checksum": "1220a1ac475690dda359e9af4d5e42f64e52004bf783b2eec6147b71730fd8df0cfc" + }, + { + "rel": "item", + "href": "./BH37_10000_0404.json", + "type": "application/json", + "file:checksum": "1220a0dbec1a8619f2c7c78c363db60328ef42ae3ddc19c797dffe050fb46a3a9e2c" + }, + { + "rel": "item", + "href": "./BH37_10000_0405.json", + "type": "application/json", + "file:checksum": "1220597899fb1698d9604ca53a82cf83d076e232f522873b164d85a24dd0d2f7347f" + }, + { + "rel": "item", + "href": "./BH37_10000_0501.json", + "type": "application/json", + "file:checksum": "1220e20f292b5a2c6ec3429e83170d9b590867476e3ebfd04f74e0c34a6133016541" + }, + { + "rel": "item", + "href": "./BH37_10000_0502.json", + "type": "application/json", + "file:checksum": "12203b2f9f0fd4f18552f01835688fe7967d524efcd71369678ad1a771b19544e785" + }, + { + "rel": "item", + "href": "./BH37_10000_0503.json", + "type": "application/json", + "file:checksum": "122050319ebe7cf938d82ee1ac8f97493bb9de551d4c7e5284c5c04f7fbef43ba0d6" + }, + { + "rel": "item", + "href": "./BH37_10000_0504.json", + "type": "application/json", + "file:checksum": "12205f7403d9d8e1984f5c33c942fe0eacc65ea1c3e83ba91f8dbec280532bdc3837" + }, + { + "rel": "item", + "href": "./BH37_10000_0505.json", + "type": "application/json", + "file:checksum": "1220662ef9d41e009e3e09565391da3d590468311e9d8b1a3027b936403bbb0e7c9b" + }, + { + "rel": "item", + "href": "./BH38_10000_0101.json", + "type": "application/json", + "file:checksum": "12204a6e2241b46b854568faf8a5ece2cf1568301e9a7eb990f0186097d1ff617cb7" + }, + { + "rel": "item", + "href": "./BH38_10000_0102.json", + "type": "application/json", + "file:checksum": "12205b4e94de1b79f36a10764216b4b49ea3bb4ab83b48fae79ff84f3b04638dfbf3" + }, + { + "rel": "item", + "href": "./BH38_10000_0103.json", + "type": "application/json", + "file:checksum": "12201764de6b09260f39cd2dfb3f6e305fca7cc2e7f208e11db4a82d37d8cc43725c" + }, + { + "rel": "item", + "href": "./BH38_10000_0104.json", + "type": "application/json", + "file:checksum": "12207e42c6f94950203db5093b512c24ee9994f75b622360917c1f9939d831354f65" + }, + { + "rel": "item", + "href": "./BH38_10000_0105.json", + "type": "application/json", + "file:checksum": "1220868cbbdb8c76dbb87a935f9c17bb68a7ac9751fc1b27e9faa206ebd0f5614971" + }, + { + "rel": "item", + "href": "./BH38_10000_0201.json", + "type": "application/json", + "file:checksum": "122082e1b67fa5eeeb556099dee66ac27761433380c8af7000a09de827c03ebf7a14" + }, + { + "rel": "item", + "href": "./BH38_10000_0202.json", + "type": "application/json", + "file:checksum": "12201cd0b2f1b983eedb9a09277d6a639029579ea10cdb36af85a395805ef84aaac2" + }, + { + "rel": "item", + "href": "./BH38_10000_0203.json", + "type": "application/json", + "file:checksum": "12200bac277db67a9372fd634e3c01a702d119e25de952d758656e4288569ae7121e" + }, + { + "rel": "item", + "href": "./BH38_10000_0204.json", + "type": "application/json", + "file:checksum": "1220c658f7d5b83e0ba6c3d9960fa668c925e0938d834b8dac83a7927ad69aa38336" + }, + { + "rel": "item", + "href": "./BH38_10000_0301.json", + "type": "application/json", + "file:checksum": "122025cf815d203e31fef3bd31cf6bf5e9b15f873f30fed7ae990df8c3ee3bda679b" + }, + { + "rel": "item", + "href": "./BH38_10000_0302.json", + "type": "application/json", + "file:checksum": "12205c462cd2798ac5c91398b3ec2a66467870bbdc06cbd09ebe71f781c5a879dd03" + }, + { + "rel": "item", + "href": "./BH38_10000_0303.json", + "type": "application/json", + "file:checksum": "1220479aec6703faaea6d9a9333c968fafd810e377cd75b9f07cfd4e34ba404d9552" + }, + { + "rel": "item", + "href": "./BJ34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220a0bd1afd76a5d8f572452f217b0375792bbdef139847a52789403487e091bc38" + }, + { + "rel": "item", + "href": "./BJ34_10000_0105.json", + "type": "application/json", + "file:checksum": "1220a3763450504b36ecf7271c5a4d8fa34ebb8984dd8bcd2fc4c7969e70682744b4" + }, + { + "rel": "item", + "href": "./BJ34_10000_0204.json", + "type": "application/json", + "file:checksum": "1220e80a35e22aa1f858304b32ae96cb53531e83ce8dd1363d12bfc6ed4bb741e4ef" + }, + { + "rel": "item", + "href": "./BJ34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220df64c81d895e0e4ab06c434fe7e43481e159d2cdd2bedb03f9eec1bd7ca7c872" + }, + { + "rel": "item", + "href": "./BJ35_10000_0101.json", + "type": "application/json", + "file:checksum": "12203ee99f48719fabe379c275ab6e698da341d3fb62497825d68f6d06cd19432302" + }, + { + "rel": "item", + "href": "./BJ35_10000_0102.json", + "type": "application/json", + "file:checksum": "122032a864fa8046807413b9da0c3928a9534dc43edbd18709f579302922642753d3" + }, + { + "rel": "item", + "href": "./BJ35_10000_0103.json", + "type": "application/json", + "file:checksum": "1220086099d67b38b3390ade13c5615ba1dfc68d9058ad4cc847f90df8b9399d5a46" + }, + { + "rel": "item", + "href": "./BJ35_10000_0104.json", + "type": "application/json", + "file:checksum": "12208c65b7d4cbcf902a9cffecda506112fc6195b7d583fec15605e51d057934fc20" + }, + { + "rel": "item", + "href": "./BJ35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220e4af6b3e0ac63d480183f2d7800b67680f7c9a46a66cf1fe034b6997eb4e3f0b" + }, + { + "rel": "item", + "href": "./BJ35_10000_0201.json", + "type": "application/json", + "file:checksum": "1220096f649f1d16e2c94f5461d884db6c72ada3de3ccf16404329b17ee9178dea89" + }, + { + "rel": "item", + "href": "./BJ35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220700eb36291fad0ff220cced4e16cbbe813807bf80575d6d152d830ab2c4aa6b2" + }, + { + "rel": "item", + "href": "./BJ35_10000_0203.json", + "type": "application/json", + "file:checksum": "122043086836675c7abc042b4dc6cda425694ec949306636ca3df1deb0b7bda70e07" + }, + { + "rel": "item", + "href": "./BJ35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220cdc9ce0ed9e36a018ef3403c499b6789bde64b42dfe394c80fc6ab126a4b211e" + }, + { + "rel": "item", + "href": "./BJ35_10000_0205.json", + "type": "application/json", + "file:checksum": "1220c1214ece61b35e8c5b8f456f9f778f5f09e394fbe45a36a7af8e47b449db99f3" + }, + { + "rel": "item", + "href": "./BJ36_10000_0101.json", + "type": "application/json", + "file:checksum": "122060e5980b4ec3d818e219f65654e1166442899dadbddb5e36b5914cdf8e7106bb" + } ], "providers": [ { "name": "Ocean Infinity", "roles": ["producer"] }, @@ -550,8 +5260,10 @@ "linz:geospatial_category": "dsm", "linz:region": "waikato", "linz:security_classification": "unclassified", + "created": "2024-07-04T02:41:14Z", + "updated": "2024-07-04T02:41:14Z", "extent": { - "spatial": { "bbox": [[174.5702773, -38.863948, 176.3373624, -36.4037416]] }, + "spatial": { "bbox": [[174.5702773, -39.329461, 176.7362937, -36.4037416]] }, "temporal": { "interval": [["2021-01-04T11:00:00Z", "2021-03-25T11:00:00Z"]] } }, "assets": { @@ -560,8 +5272,8 @@ "title": "Capture area", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "12206baa770e3da179c6ed3d7f831473a958a35d7ce4c6ff225bd40e36b6ec75eae6", - "file:size": 51815 + "file:checksum": "1220fe02d6de97d1b29b7148d9156ac980ee47a5eac56d1110992e93bffa1dc279ff", + "file:size": 67405 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From 0d0a686eb2e7930cd101c827717f7d85d51f20f2 Mon Sep 17 00:00:00 2001 From: Daniel Silk Date: Tue, 20 Aug 2024 16:32:34 +1200 Subject: [PATCH 296/309] docs: add more information and links to the README (#303) ### Motivation Our README was pretty light on detail, hadn't been updated since we released the Elevation data on the Registry of Open Data on AWS and on Basemaps. ### Modifications Added more links to docs / described AWS access / how to browse bucket --- README.md | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8717ec9c..e72ed180 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,26 @@ # New Zealand Elevation -Toitū Te Whenua makes New Zealand’s most up-to-date publicly owned elevation data freely available to use under an open licence. -You can access this through the [LINZ Data Service](https://data.linz.govt.nz/data/category/elevation/). +Toitū Te Whenua makes New Zealand's most up-to-date publicly owned elevation data freely available to use under an open licence. You can access this through the [LINZ Data Service](https://data.linz.govt.nz/data/category/elevation/), [LINZ Basemaps](https://basemaps.linz.govt.nz/@-41.8899962,174.0492437,z5?i=elevation) or the [Registry of Open Data on AWS](https://registry.opendata.aws/nz-elevation/). + +This repository contains STAC Collection metadata for each elevation dataset, as well as some guidance documentation: + +- [Naming](docs/naming.md) covers the s3://nz-elevation bucket naming structure +- [Usage](docs/usage.md) shows how TIFFs can be interacted with from S3 using GDAL, QGIS, etc +- [Elevation Compression](docs/tiff-compression) provides commentary and analysis on the compression options we explored. + +## AWS Access + +Toitū Te Whenua owns and maintains a public bucket which is sponsored and shared via the [Registry of Open Data on AWS](https://registry.opendata.aws/nz-elevation/) `s3://nz-elevation` in `ap-southeast-2`. + +Using the [AWS CLI](https://aws.amazon.com/cli/) anyone can access all of the imagery specified in this repository. + +``` +aws s3 ls --no-sign-request s3://nz-elevation/ +``` + +### Browsing the S3 Bucket + +[STAC Browser](https://radiantearth.github.io/stac-browser/#/external/nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json) can be used to browse through the contents of the S3 bucket. ## Related From 9de07091b3d0ee029ecbb129a502eae9f593be53 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:16:16 +1200 Subject: [PATCH 297/309] feat: import Canterbury LiDAR 1m DSM (2020-2023) - Draft LI-1553 (#305) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-43.5015645,171.8125066,z7?style=16-es-canterbury-2020-dsm-s85bg&tileMatrix=NZTM2000Quad&debug&config=5LN3whfVkKeLNsVzLzcXYshHpHvKjwN5vfjfk84WAn9mPSznQuvRWz4Qmo3J5MAaqvKKE9tupcF5zB9X5h97n36iUzEE3Bfson7rA8Tk3Cs6AHYPxm4C5sHkoqAMHNysyP4viFpuCusz8WirRaTkKj3eb3bzpknmSYBDmuQ1UM42L9mUGqESBw8Hy5JPnr1TX) **ODR destination path:** `s3://nz-elevation/canterbury/canterbury_2020-2023/dsm_1m/2193/` --- ...QRJHF9AYZCGQEXM45GYH20X-1726530403894.yaml | 8 + .../dsm_1m/2193/collection.json | 7486 +++++++++++++++-- 2 files changed, 6724 insertions(+), 770 deletions(-) create mode 100644 publish-odr-parameters/01HQRJHF9AYZCGQEXM45GYH20X-1726530403894.yaml diff --git a/publish-odr-parameters/01HQRJHF9AYZCGQEXM45GYH20X-1726530403894.yaml b/publish-odr-parameters/01HQRJHF9AYZCGQEXM45GYH20X-1726530403894.yaml new file mode 100644 index 00000000..a364aaf4 --- /dev/null +++ b/publish-odr-parameters/01HQRJHF9AYZCGQEXM45GYH20X-1726530403894.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-09/16-es-canterbury-2020-dsm-s85bg/flat/", + "target": "s3://nz-elevation/canterbury/canterbury_2020-2023/dsm_1m/2193/", + "ticket": "LI-1553", + "copy_option": "--force", + "region": "canterbury", + "flatten": "false" +} \ No newline at end of file diff --git a/stac/canterbury/canterbury_2020-2023/dsm_1m/2193/collection.json b/stac/canterbury/canterbury_2020-2023/dsm_1m/2193/collection.json index 12204499..b5284fa6 100644 --- a/stac/canterbury/canterbury_2020-2023/dsm_1m/2193/collection.json +++ b/stac/canterbury/canterbury_2020-2023/dsm_1m/2193/collection.json @@ -2,7 +2,7 @@ "type": "Collection", "stac_version": "1.0.0", "id": "01HQRJHF9AYZCGQEXM45GYH20X", - "title": "Canterbury LiDAR 1m DSM (2020-2023)", + "title": "Canterbury LiDAR 1m DSM (2020-2023) - Draft", "description": "Digital Surface Model within the Canterbury region captured in 2020-2023.", "license": "CC-BY-4.0", "links": [ @@ -12,783 +12,6729 @@ "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BS29_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BT25_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BT25_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BT25_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BT25_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BU27_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BU27_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BU27_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BU27_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BU27_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BU27_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BV22_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BV22_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BV22_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BW25_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BX17_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BX17_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BX17_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BX21_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BX21_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BX21_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BX21_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BX21_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BX22_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BY20_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BY21_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BY21_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BY21_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BY21_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BY21_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BY23_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BY23_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY23_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ21_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ21_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CC16_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CC17_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CC17_10000_0102.json", "type": "application/json" } + { + "href": "./BS24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220313a0141905ad50cb3b45afa52a806d1ff7858fd42a0f1b7dbb8549cf9241616" + }, + { + "href": "./BS24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085c4b911332c09d0850be72af59bb822e4dfb595388e1a46c000c314318c80ec" + }, + { + "href": "./BS27_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a5998490463af85a39906ef121c06f2696ad99fe22bdeb70df9acef0e6a5e3df" + }, + { + "href": "./BS27_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122075c3f8002aa76d126d89ae99adf3514f7cfe09b67e51ccb65011e3a8bab60340" + }, + { + "href": "./BS27_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a4f56c21eb7ff2f5971289597445eaacbc68f23697041628c1fdd695b9e6110" + }, + { + "href": "./BS27_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208f654d5cd4acd55e92d0d4cab040dbf463912baaca7b99a5d4ea906b77bd4e55" + }, + { + "href": "./BS27_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203eb3d6e8c82fd0ef79e9a1a6493a3b57ec96563bf31a80fe392e68ac6edee07a" + }, + { + "href": "./BS27_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a74fbf1925ab1460c2997c2421d031d9ecadfdb77a8a3378016dc506e3de34e7" + }, + { + "href": "./BS27_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122021af95eeb9867ec263291894907be30a083022909fb990267e088ced08c4bf4e" + }, + { + "href": "./BS27_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d66441aab8031e94c4ae128646c1b33dbf2adb83ed186d3ad683ff164c6f370e" + }, + { + "href": "./BS27_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122070a090d3ec885d41024f5b099cbea06202a98db447bb62b885199739aed52b61" + }, + { + "href": "./BS27_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b1e5471a12b867998db290c014ca05fac2b00429ee67d0c34db9d39d1449b1c2" + }, + { + "href": "./BS27_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cca509aaeca102338f9454829287d644fc6f8ae2b95edb52954d98d302e14c5b" + }, + { + "href": "./BS27_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220adf80b00a2e0f066f587332ad13304bc9e30d0705e985ff400a397e846dc3582" + }, + { + "href": "./BS27_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a233e28cba09291b09112969b93792d33f2849379d16a712f0b83c40c6485b62" + }, + { + "href": "./BS28_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e730fd31d38dd9bef2c70e7b559606a42895c98a6d166783f35111bb829782a4" + }, + { + "href": "./BS28_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201b3301ecaa4cf2f1b528442957e110f2306a9ecb558c2ac2cd35d9aa9a58e809" + }, + { + "href": "./BS28_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b0609797f9118073968a02e8d5881f64636bc933c452c5ccf1a4eade59e87ae3" + }, + { + "href": "./BS28_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122053050414149f40900762a619baf6087339819570331396138a413f838aa05ab5" + }, + { + "href": "./BS28_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b03f92dc215a8598377a34617c7b081a900f5eda237c1a1fef47057a1c5f9071" + }, + { + "href": "./BS28_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220391186c38eaf7d956e73ae143a14a0e0331b80021ac44db5ffe1dfd48d4580ec" + }, + { + "href": "./BS28_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220841d8bd529d30c46383e1d3900c40f0627d2a30730e70d214104a0e081df8bfa" + }, + { + "href": "./BS28_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203c7eec87cd4d4993f0a79b131645e7bd07c3d73af1220f0136a3ac387f5c9b88" + }, + { + "href": "./BS28_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a2bb54a1f073c4c9ab85d4d4b08f1caf4d96c777258c824c4067393351b2093" + }, + { + "href": "./BS28_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209892d0603445ff18fb1797f4022c7cbb4f3e6038d9f2ae7d3153b82f4bf86830" + }, + { + "href": "./BS28_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200b511fafdd38c9f4d3275d68a31a8debd7594e867e496662894f1afe178d1456" + }, + { + "href": "./BS28_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039668b6b89b3fe5ef08b645a74c2132b0fbf6096cc5245d156417330ca2b4649" + }, + { + "href": "./BS28_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f5a929e4c4071ad934d47856bb9e150faafac7214b73663b3db31d25537b02c0" + }, + { + "href": "./BS28_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205d01de9622c9e4d0c905ec6298f9367c3f096864a4936a89af0feb78b91ab419" + }, + { + "href": "./BS28_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c85eebb873759f36ab0cec67f99df2bb0235696e6bbf1e1fc9ed0f2537366288" + }, + { + "href": "./BS28_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c30f54699d8452db739898f900c43d3264e4511ea906385458c16230106a194d" + }, + { + "href": "./BS28_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f0c04a14fc193c7cd89044bf1fbf06d73a74dcc7249824af6d55e381b006d7e" + }, + { + "href": "./BS28_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202ee37ae081cfeb9c787144905fbe4a539b736b9871c6d7a9a28dc5f126c05983" + }, + { + "href": "./BS29_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220987d1f58143ce9bbc9afad6d1da0caf7bb74c75737e5e3dba836d464cdf70258" + }, + { + "href": "./BS29_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203c4411f7c361e1a6bd88b3c5d47fd9c2d5f1cde1bcc364735ce27fced0a4d672" + }, + { + "href": "./BT22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200df5d46d797e22d3188a9a3075220eff75897a9e8fb88e2f369c42a6aa03eb92" + }, + { + "href": "./BT23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2b6da2b38b8c61438295961c22ddbbca1e8bf931a7e467b02ad3f22e72bf506" + }, + { + "href": "./BT23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c65722eeb70bb4719f9fd33ed73bf6ef102359f56d2d7cb5d6f2a25a3be31a2b" + }, + { + "href": "./BT23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e7d20c1edda578e08c696cf4d2f32c1540c093bdc2d451fdaa575a28e3cbcef9" + }, + { + "href": "./BT23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c1811fe08bdccaed2b64aa7e88e94d375e8e96357373a6847bb50e219e19abd4" + }, + { + "href": "./BT23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122083fc58e4d4b7625a015ea3f2d3aa4518348de1e70fbfc26a29b456ddaf2496ed" + }, + { + "href": "./BT23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac7928886952c214b433e8bd70563c707118886c9788817ecaf2552f823ade54" + }, + { + "href": "./BT23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200d8008111b6ada906713d7dfc6b44a4bd5636645dce92e5cad67d7fbcaae72b0" + }, + { + "href": "./BT23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220728d2f8d756ff5cfe26e66b6e1cc2b54b8eeb09616ceba34bd57aeb6651b40d3" + }, + { + "href": "./BT23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203572e86387da96102b9063d0437b70f70f80b25f12c53f1911056f6eb7db2c87" + }, + { + "href": "./BT23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122026e3c9c14ffd1c7fc837a78a15202e8b42eae9d7b41ce38782bc57eff3c8b616" + }, + { + "href": "./BT23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209ea35c6da0cb67677daa3c456be8264e699ef2fc89869707386b3ee1c6e8244e" + }, + { + "href": "./BT23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a8f5c50fd7718b3db2db2a719d3bae326da41e556be6ad850a4a07f301ce9298" + }, + { + "href": "./BT23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122086c18017eb090e9cc67209330e6edfb9f00038193df8e37fd08028001e612c87" + }, + { + "href": "./BT23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122034a0036f0f6935d3f45e1db9a65451c9a0c34186cc577339ca293d8dffed7f40" + }, + { + "href": "./BT24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a74a39e51a6d758ed3a4b8f57eb28179d2fc70895d63a31aa249caf4cf64dd7" + }, + { + "href": "./BT24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122060353030b2157ae2a5afa24f39ae28649aea941144f155da8c1add248132f600" + }, + { + "href": "./BT24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068f236bd02f2a25123d6c9d6ddf591114bdc8f02274eee22fef6c061227b5dbc" + }, + { + "href": "./BT24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a291b213eb42b40de62d93ff43d126d718ab7b3892c701a5e62692df73ee654" + }, + { + "href": "./BT24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea9e676f8e35111f490c56fbe5d4072390522f58b02ef4aff38409810601b2d2" + }, + { + "href": "./BT24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071c8ce6c330c76d8cef8f0ec13081e503cd048abb69c4b642d62a2caa13376f9" + }, + { + "href": "./BT24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c85cc02d1372a4ee636f856164d0e5011b6f1d8c93168cf316c624c24a5af29" + }, + { + "href": "./BT24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d7ba704adf8ed8aeb001aebf8c1969c856fbffc0b1c42cd2c5af60b660ef8e7" + }, + { + "href": "./BT24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202259a21e0e75bfd3b8025ea870bc69db076128995d28794d7676bf1fd5479df8" + }, + { + "href": "./BT24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203fedce906b596b1635ebbd90e6265eea6e64fc06579dd1ec7afb029435e6189f" + }, + { + "href": "./BT24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201ec2548dc84487be94ffc96b4af59716ee750a6ae3da64102cf4e7eaf063d98b" + }, + { + "href": "./BT24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c17a756ef82c85824173133b2507deeb57df27c25f1340a4cd98e1dad1700a5d" + }, + { + "href": "./BT24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220757e2d79e8aff90998c1857b950db5a8a888e5dfb72c62f39600b372a0ec01e6" + }, + { + "href": "./BT24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f291f3da33842f1387e27f393fa98550d8259f2d08da80925a57c72e021964cb" + }, + { + "href": "./BT24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d192b039e3d6a9e0d9a57e14800153e72eca4ad0a42a5717b2e32bb0d69d71ad" + }, + { + "href": "./BT24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206f7c007ef0611b66a8e4945e35e36874f29eac55df830bcedd5a241f50f270a8" + }, + { + "href": "./BT24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e9d3a183ab4bf17834992e836c56561a62a9e1cdaf9b3b17239c6415024c63bb" + }, + { + "href": "./BT24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207650c3867ae7d34a5f499df0af22e721db0f8bf560164b454cc3136e10ae8429" + }, + { + "href": "./BT24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208a0b900594d607f39d01edd4ad7507262b4ece8db867062ca8465f77389c6a00" + }, + { + "href": "./BT24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122082ef643b1c0f998cf7a0ce679918f86b78406d6d6be94262842037bae39ee6bd" + }, + { + "href": "./BT24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220edc9d382be5bf3240ae43d25ae84a5c3a970035519f801085f43bbd2cade23f6" + }, + { + "href": "./BT24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ada4c3e138ddbe61ec656c6fbf5a260df4a44e734c58088d581d26d887cc151d" + }, + { + "href": "./BT24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fa90642c459fa1873f7d13ad3bb441157971976701fe955cc76d4d0b2154cd45" + }, + { + "href": "./BT24_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d5104217600894df4aab13da6944c9584345978cf7d2fc796540dc77c9552a7c" + }, + { + "href": "./BT24_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203c218dcf855e79d69aaee8dfbd9d7cf34678f9d5f6006e1158e1820c235b89a6" + }, + { + "href": "./BT25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220323e53af2214c99dfa62deca390a113d7b583621740b89c36d3d71f6551a1269" + }, + { + "href": "./BT25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068c4d8c564511cab604e4962743cc9cb67142b89b21f30728d53b87c635b025b" + }, + { + "href": "./BT25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bb33335c6273ad80415d9d7c19054869bbf27ac233f555e4f5a453ace8ba5cce" + }, + { + "href": "./BT25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b6d93ab3d5edd2eb846ef8e979dd012dc169682f6f61e6db409b3b67198416f4" + }, + { + "href": "./BT25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220df8ab159ab4bca9ed883002ce9e81b81b0d2a0cca0624c92584f1057856b9255" + }, + { + "href": "./BT25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205a01bc3926c3cf8d7f46b1d1e33b002fa3b9487326bdcad3d1ae74410c1c2023" + }, + { + "href": "./BT25_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209ebe9b9cad1a1e0e01eacd86e22957c86aba69f389bd9ef65bb0c302e627cbf9" + }, + { + "href": "./BT25_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d24ba46784d497060b2f1b45532fea3099c93c03fa6bbd5c628a456f27f9bb7" + }, + { + "href": "./BT25_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a4553f2b5017797b2e06ffda22f995973a4317b2e39f4241a5325ae731f9ecd0" + }, + { + "href": "./BT25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122001ff4ed07c6a95061ab7333bccb2162698367069afd05fe16582f4f02f06cb2d" + }, + { + "href": "./BT25_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209658eb422cc5be6a5d13899b2bfa702b2b8516091e356ed80c0b76df720174f4" + }, + { + "href": "./BT26_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c9cf069dba152bf1d1a0afd6fd5806f92ca0205a31e50d556fefded8dd34705e" + }, + { + "href": "./BT26_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ade6600c886c5f9a06dd9e66bb608e1acde395e8543622a885b29a178aac098f" + }, + { + "href": "./BT26_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122021fd48d7144d6d8e773cd225d44931cb5aab93843bc687e930f5ed85e5db51c2" + }, + { + "href": "./BT26_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122027f70fdfadbf1a73b64f719484ae1d4b5a68c9e66bd4ec190b01d7b21c30f796" + }, + { + "href": "./BT26_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202406cbcd058e1aadac099ecd3b9266e79926ae3cdcdf782e42ac44a48a7cd99a" + }, + { + "href": "./BT26_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122092c9a82fb615fb322caaeec2a289b53288e9bd2a9c228a209eba4cb785c926ea" + }, + { + "href": "./BT26_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220153de1109d822c66e864eece03178a8c8c4e529658044ea0dfec69fe0e37730b" + }, + { + "href": "./BT26_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dbbd720030fe1cc05868b0f1d5a8095b0767c07bf8011a7a98fa3e2e95ce291e" + }, + { + "href": "./BT26_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bae302ab18c760ba300d1004bf5059bb0bec6392d1748eee2b8077286c4547a9" + }, + { + "href": "./BT26_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220789a8dbf7d18ae6f6b83e2f80493e5c462379117207525c659f8993ab9870696" + }, + { + "href": "./BT26_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122065cf708a92e8fb8b70b0addae9d451c758b152ed4b0242589db317a8adf8f3a3" + }, + { + "href": "./BT26_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d49e307f9fb167ba7bae5787f9a48af9ffae0a34d1082a43455451d954a1c5c" + }, + { + "href": "./BT26_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b02c6c0a6b7c5de670f06c8f28ef6cf9ad88cf03713c667e4927274f04c53349" + }, + { + "href": "./BT26_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122078b74327316ceedfa6437ea4e08438f5dbbb2097a74feb90e0d62404691d3d34" + }, + { + "href": "./BT26_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206614ebb600217c5fb8058341063135249f6755aa6cd5f106cf3933afc020a8b5" + }, + { + "href": "./BT26_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204f65eeac4319dbd27dc44c143b524f6fbcf5ba28fcf39420851c9a657a0ed52e" + }, + { + "href": "./BT26_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220546de49908a32e26fd75bfde4a1bec00d8bcfb369513789364d5c66859e8b7bd" + }, + { + "href": "./BT26_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122031761463238265f945852f138bfb39a363db636b9bc86ec31e55282dd2474c8c" + }, + { + "href": "./BT26_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122075c70987f06d4b43301734657326f919377ed7bccc7635d87352f42396d09ab1" + }, + { + "href": "./BT27_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209c3b6978e4c8812afa62977bbfdcc8f17cef068247f5a3b7c8b9bd5569195eb5" + }, + { + "href": "./BT27_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122089d81b99726e09e6362258b108505c825a964beae3d7a98409ea54cd4961e2a9" + }, + { + "href": "./BT27_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae43d1b40422518ba5c2290c7112dbdb57214be27f99bbcb16300ef06fb50103" + }, + { + "href": "./BT27_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122013493b663011e77dff02e9091becfd44256e5e19dfb8b48856696d568553eecf" + }, + { + "href": "./BT27_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204fa60be108e8727bce598be4d5fe941a54b81eb8a162094e7f81b3241496d84b" + }, + { + "href": "./BT27_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d7dfecbe2905129a007f08e3a018ae65aa8b871d0342d9acfa0d84a1b6ec2290" + }, + { + "href": "./BT27_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122088eb3ee93a92581fecdb1e9087a1502530a4390510452deef21053fb30f3ef3d" + }, + { + "href": "./BT27_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e62dc1f2918488cd61c0992d2ab95893fe5c0fea8cabb0ca611d81b709caba7c" + }, + { + "href": "./BT27_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220067b84a0db7a65ad181a7dab5a1de54c972ba32e985bb967202a181288be4394" + }, + { + "href": "./BT27_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a0237ef94cf2ac63f3f4475eb5de5d95d09535f6581371886ab46375f4ce6c76" + }, + { + "href": "./BT27_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220335e47ec452bacdc2f1b9f372bebde10fc6c07408b5d9bb3e1ff17085e70c840" + }, + { + "href": "./BT27_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d24391d32fcf5f902b273dfffab86865ac66346c68d7edd95ef7e5c1807378ac" + }, + { + "href": "./BT27_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220671dc2d00531014a7e070db1bfb352efdfde72c1bfff630cc07b05c3b1227a17" + }, + { + "href": "./BT27_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122027e62c73f61ed7d9995d24c92eeb0298e8e24f15183b43eef4e8b469494ae6b8" + }, + { + "href": "./BT27_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220395ba2ddfcab8fdacd708aceaa5691eb2964fc169f07c470f1b377ad23e7f3dd" + }, + { + "href": "./BT27_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122008accfca7d97ed59e47d871cfd2d3e15510ef3beb223a698a85d0b7a5a40d7b3" + }, + { + "href": "./BT27_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220494eaf8dcec5ae1347be264ab82e6ea689895cdcbc7d8c4c97731b73c7bc8c19" + }, + { + "href": "./BT27_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e13fe3bb3ad4bda0a0b875b04d4251f33055cf6d6bf56ac27f29231263e46f6f" + }, + { + "href": "./BT27_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d9ab1dccbd2b4231561fd19e1e0924437b1a041548874302f5fe638d96c98c4" + }, + { + "href": "./BT27_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205b29cfa60a081b5fdccc71396eae72bac3c5ed789495a1e678d07d9eb46afb0a" + }, + { + "href": "./BT27_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bca7208426df3d44bc3e42f7b83ad7eca7e246a52c115f426762c0945b9fd380" + }, + { + "href": "./BT27_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122093ed6e64e5ba1be175bae837cf3e69427a5b039a1d32e930841c86b7b8119345" + }, + { + "href": "./BT28_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bdbfd11a51e43a39a30a4f4d45cbf7a8f81bed43d2edb753d4fe3597a142616c" + }, + { + "href": "./BT28_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220482e9ce406bd763b88691280a368167b53f40e5d9ddb9b28d8bcc0a74711947e" + }, + { + "href": "./BT28_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201f1ba8e838e1c7c4b58ffb381d65d0ead0dbf72dea17b4fb3a6c1011b8167bea" + }, + { + "href": "./BT28_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bbc9c4b96555609fed3958fc5cfbf392ece3a28592ce9fb03ffcd9b914cb3d4d" + }, + { + "href": "./BT28_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203086f94e391c99611da57d2b08e8cfee558911c9a5f8c20cd47cb9e0aed689f3" + }, + { + "href": "./BT28_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202414696440056d2a313cafe0dc6bc9c703ee688a6855fc132e2c9a84a513fc51" + }, + { + "href": "./BT28_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207e3b60ebaff270bc8dc5fd19a85d65889a49fb373a7647865949eea0c224d45f" + }, + { + "href": "./BT28_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af9581063232f2f4460738fbc5dd354f593c673346b64c390897550d11a4672e" + }, + { + "href": "./BU21_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1d08f4138f30e200a45a64cef26ef7d5a4d82324654340e405bc9e920319715" + }, + { + "href": "./BU21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b34867af3f823b828ee8822a040ffa8367cf5aaa514f2028d7c4d5ad98cc73d8" + }, + { + "href": "./BU21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9f44a6fc50cac2f93a34eff028ccc22e46668493f27abee95b50c14ab7033a5" + }, + { + "href": "./BU21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f2bbcb91f06aa09356f8472eac4b797864753035ddee48bc5e097b79ab5d30b3" + }, + { + "href": "./BU21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dd52bf43fd1561fc5d6269b59a85c277668c7fe9bbfd2015d5ca50105e6b9b59" + }, + { + "href": "./BU21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122008b02326605c5ae72f7c71263ed56dbd87a21a3240b7c9b3b629557b11b957cb" + }, + { + "href": "./BU21_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204bac2692f1d7277079aad1fc05842cbba2657edd66c61e84bdc76030d998a5b9" + }, + { + "href": "./BU22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208e1c12adc8c3e53337a6f1bec28f881563101ecd5dc7224d1a7c829e0d77ebd5" + }, + { + "href": "./BU22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122090cfd79473eb702d7aed26220c62359eff5c114fbe113f25535efb7a75d95236" + }, + { + "href": "./BU22_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d95b0dcb7faf0f870ae4ca982a54116098196148708a7cf13777152fd555f3d9" + }, + { + "href": "./BU22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e66a8e60b79827873acaaca223049acce5cd87a7fb481187881dc79d72a42eec" + }, + { + "href": "./BU22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cfa6daaf7bf4f85ebd12479946c4a6fe5fe4de9c405bb4f14803ccdf8cc1868e" + }, + { + "href": "./BU22_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d31a85f6bbd7bf6c2072488c07b77343fdd525c86811f4a20e1d706c98d3526" + }, + { + "href": "./BU22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dae2d72a1a93123b80c2eee03288a07af24dcb3524b2bb796126bb652aa2e308" + }, + { + "href": "./BU22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b88319b7cdb8b84bf502e10933ec079c5a1b88663f6758d5c8e25ba5437ec585" + }, + { + "href": "./BU22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220df73499258d19a7c76495723605d140ff565f56baaeb48b5924fdace3715048c" + }, + { + "href": "./BU22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220117b01f34537746c833e0b68d0208b469430d88ac672d480f8a9a9b6d3220e14" + }, + { + "href": "./BU22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d263684e6764c8ed5f09fbf893f5088b258c11145890c2a05314ac6224307b44" + }, + { + "href": "./BU22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c84ce169908987bf687793048181caa56b6551a7fb07d306616d3ec36ad25291" + }, + { + "href": "./BU22_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208115964fa052acadf8e34e3a1a6aa3651bac679af9beb14f91aad45e54edc66f" + }, + { + "href": "./BU22_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b9c20312b7419bbfc9da8308dde0ab4335f88c0e15ada14263066df8053fb912" + }, + { + "href": "./BU22_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bedf15380ac0b1fb55ee8419c0152020b9f52762d82c96e9ff3d1fd6d6121c38" + }, + { + "href": "./BU22_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c86d043451f1ee82fc63fbe86191b058ed0d9fa54006246fab954080a6ea3c7" + }, + { + "href": "./BU22_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e66d302883f38cb91d9161ff180fc4a4467da803240556a9975b52806f340fe" + }, + { + "href": "./BU22_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204cb7351e4a861862ac16aee9cbe518b6f936fccf3b51421a0c714d969bddc461" + }, + { + "href": "./BU22_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202748bf0409a65f61f5c6bd017e3f93ecba89d8d4d20d59e51c7f9c6492eb094f" + }, + { + "href": "./BU22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d589c1d6c126aa6997fa0f3075e0f43ddf99dc034551d4e679e6a77e5366d233" + }, + { + "href": "./BU23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209bacaabd999a98adc1e2e598343ee54a049353e4ef0440b1dd53b7ccfd01757b" + }, + { + "href": "./BU23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b2bfc28c4a3299031f846b1d1c2d538d23cf6e7ad42cc3fb85e7aac77862beed" + }, + { + "href": "./BU23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b82805398f8a227691be5d8a90b8534ad232cf3bcacdfc726b1d6b6c1867d4de" + }, + { + "href": "./BU23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122098c2bd7e13893990cc27ba776d410dbbb5e4988a0a0d0fb6f2baf99ea02b7b94" + }, + { + "href": "./BU23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b352be656f7478d20bfbaecf80765c3dcdcbcf17b6306ff8d69e2830324f2ee" + }, + { + "href": "./BU23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200bb731a5cab1795d979f053000d52899fcfaf80731dd98bda423e2e1bd0a8387" + }, + { + "href": "./BU23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054a84f6e9d8828ed6e4a8bb553b76b102b3e963c77e94164905967ab96cdc7d5" + }, + { + "href": "./BU23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206ec964442ada0ffd5b8af0a700d47cdc7ee9079c90491ae891436844ffa51579" + }, + { + "href": "./BU23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067b8953d99b64fee439d18426d331705980ae88073ffab4fd6be18fd23c78af7" + }, + { + "href": "./BU23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb937ea98dc2652d751209e33f2086fe07ce712e4a72b25f6cb539f841a942ec" + }, + { + "href": "./BU23_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202fa7438888f0a84a22b65937af152885ec257cb00c9a82dfb575efc7bf951f59" + }, + { + "href": "./BU23_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208e3f28dc6aac38be818e5044881015fc24da746a294a3dbca2fb3c17ca1f1418" + }, + { + "href": "./BU23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f6e90c44eac12d6d8099f25c94d88c1ad0b675e5349b683b4afed69b64094e59" + }, + { + "href": "./BU23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205f4444bdbd2a75749481458f493933c6d9881bf88c4913d1a3e0575f4a26404f" + }, + { + "href": "./BU23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cc8be44a6487bc02d28ba66b7d2a3f5cb4af2af99c824cfa7abfc81d6a0afaa8" + }, + { + "href": "./BU23_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220140d6f371d08ccb95031d0fcdabf26dbb45fddebdbeb38f0a8f9d95f3119ac95" + }, + { + "href": "./BU23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e1a4ce318e69733168ca5cb597440c5492c4e32cac4eb9197a52dc390f820228" + }, + { + "href": "./BU23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207235f3260770b5b4a15664606ffee6fb6abd0f54575000504074c9f0ec3d9496" + }, + { + "href": "./BU23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122048520b3a7c02f2ee99c0120fe145b328b799602e8f8fee637f283fc6094a00ad" + }, + { + "href": "./BU23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea47e866b00e4f7bcbc1f7c8da89da8992f42b567b189ff8d8ee528c6739e209" + }, + { + "href": "./BU23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cf7253db38feef3a36c3cb1822b8aca0a11e205e0e2f195217f1d45771e024d9" + }, + { + "href": "./BU23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220675e267a2039d94b897762288153b1865729351457b6772a4e51e14292748268" + }, + { + "href": "./BU23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207f7b1fe5242f42985a34a316106b10ca069f304486b22547aa4e710ec62da059" + }, + { + "href": "./BU23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac055f7ab41e27bd9bdbfc43d319d2da9a30ff53d714ebdf540da8d4fa6fb1a1" + }, + { + "href": "./BU23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220620a9c549e2be5de253b37cb3e45170dffb2069b8cc0ec7f0fc9fb4fe536ed6e" + }, + { + "href": "./BU24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ed0230e7a341c3f8e91425114e9641e7c6fefe61a1f5c0553b4fcfa4235e6c7" + }, + { + "href": "./BU24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201a79fa4a01e34e30113d1944280b24fa9f850ac98e423ba98d26cb3f1ccd65d0" + }, + { + "href": "./BU24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220698cf5dc06bd6e58c82c535f33c417190858841bd47d192c1d105ed296c134b9" + }, + { + "href": "./BU24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206ec60f9e4239d9790ee278171a58c737e7a7c53373155a6701c6dbd1ad80a97b" + }, + { + "href": "./BU24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a2fe5faa643c601d66d9350853b30ca6505b27daac6b8c39a8d918f3d95a56a" + }, + { + "href": "./BU24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220204cad3f6f23dd4aa2ee5efadb6dcdfa183b446a56c1ada03fdaa42d2362c11d" + }, + { + "href": "./BU24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e20622b2f3f977ec38270ef7c16daa91cfedcc0022656eacba5fa75833224d82" + }, + { + "href": "./BU24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220481de12314ea75d5b711b5a750359b78baee5242b040a282b3ff54d2389f01fa" + }, + { + "href": "./BU24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220daf858c34e6f432f9fe4ef16700663a9b63f4fceb24da7b461588857ce476e07" + }, + { + "href": "./BU24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7c79b197a089dc5ba7d6968efd16adf36cd8d54baaf6cd121ed82fadb376937" + }, + { + "href": "./BU24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eb4054e24d9e3afd82966647465f01abc1d70fe70bb38e9b4f7281569c52dd8c" + }, + { + "href": "./BU24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122030f85c3bc39741bc02b560cd560a9a3cf41feb9eff658165e5afebd416a34f81" + }, + { + "href": "./BU24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220733044e9fc7f76ffc7f6d3622600d941c6e4367c3b60175faee92bfd0abc99bc" + }, + { + "href": "./BU24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e3103b13c8cbbaa5454d3af3af9de4b985b0571250bda79d327a725f3730c0b3" + }, + { + "href": "./BU24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aac80076791e01fa6d80266d0a8a52166ad233288f2e7f08bd2019cd591e9d48" + }, + { + "href": "./BU24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220625b2e42da12fa43332b4c20f751f6e46de95b54481128f02ac75f1d2a5eec69" + }, + { + "href": "./BU24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122007ec2c1a4acf0534b51d8f9695d4750a04bd2f151e517f715cee55e7a540fe82" + }, + { + "href": "./BU24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220686789029d328c25f01b37cf78aed502231776ea8115c634ab10ace9b17a017b" + }, + { + "href": "./BU24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122052667d0156499e87ac877af693bc8da4cf0fad594cadbd1210381910a3433784" + }, + { + "href": "./BU24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122057844ae5260d64b4aa36819d8d05a56dfb485511ecfe0e788c3419a3433a8a92" + }, + { + "href": "./BU24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e3d5e0368d823b6d793c4b3ec2dab87d13e1cbb9064419871ed7a3c351b4c52" + }, + { + "href": "./BU24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c3d3f02598ae5c261aa2307cf055162c9f2ee02f3c22e3a6dd02f00b99321e8c" + }, + { + "href": "./BU24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c82ff95d612956ba2ae41f41c25513e60e6a270a3246e522c11ca971d2652a1c" + }, + { + "href": "./BU24_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f972f5644d519d44a377f01978877ee18b69785054bddf0f67cb939c81363801" + }, + { + "href": "./BU24_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d76740d771b21e5c3f0b16159b4739a1365b6c94239dd454f81e82cd47dde8e0" + }, + { + "href": "./BU25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d13d0f9718d48c034fd68b0f5f3e1cbc94fa13189a60f3ac6f289868fbca5a42" + }, + { + "href": "./BU25_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039414351c403bcec59a69b2a79819f7756af5bebccb49f716be4fe37da750186" + }, + { + "href": "./BU25_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122014dcb8b18b47b085ae532cfdc2a6d5f9916222954fb3b002cf1d4885676f47eb" + }, + { + "href": "./BU25_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202b1e3300cab1e396507e13e20dc8e9fe10bd073e06839198909cc6fffb0dbad2" + }, + { + "href": "./BU25_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205972df117c13e087ff8bff66f58411d5a4cebf5b5e6d8accf6ddb1e7ba75c35e" + }, + { + "href": "./BU25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122090ffff4ac24c8370fd86e91849452ea4c275fa06cad309fc23e65a774820945b" + }, + { + "href": "./BU25_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cd6bc007c51881ed09e4d448a7695f609c6659f4e3b1c0725f7db004e325abd3" + }, + { + "href": "./BU25_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122051986a389f32fab82a0fcbba2e58ac07ded0b09eb9e02800e69ea09d3969be77" + }, + { + "href": "./BU25_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209d0816216e709e34f4d27ba4b7331df17a2070c6c3d08554f42a7c3078c04d3f" + }, + { + "href": "./BU25_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122011e745a3b5f47a93541845f079c3810b880f9accca1b9c5f43a45526503ed4c0" + }, + { + "href": "./BU25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205864e209573b90de6dc187e68307f132c4872b7b5ed69a165c25ab73df190772" + }, + { + "href": "./BU25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079c1466789b3610bb8d9eb1754235eed2a684de046f251d5f54b1c36e3827cfd" + }, + { + "href": "./BU25_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e8dbc8d081d9bbce95d534978b5e116be6c938652ffb8af1895358cea2fefd1c" + }, + { + "href": "./BU25_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ede0a99434a0072a48628bbd1574a951717ffee37088eed3e77873dcbf7dd202" + }, + { + "href": "./BU25_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cf996718f33e7a2783d15ab54b13e00015b5326e7b9e3f1174750da168715e14" + }, + { + "href": "./BU25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220671799d160daed371c612e9740251fc10d693a05af23869cc4f715220efb2e69" + }, + { + "href": "./BU25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d5ecb0b39382e593b283fb1d53f85aaa6215521069bc56025015f3362f8157a5" + }, + { + "href": "./BU25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c924c70f082cef264b09077285d79c61fa8540236b962db8d6f8c6aea1513f12" + }, + { + "href": "./BU25_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d139dda893e22e8a49b9d121217cf46e22b5ae5387438fa766d151bf8763905" + }, + { + "href": "./BU25_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208e673ed58f287825a8b381830129272bec24d72669ada9aea1dd4ee8f78f821f" + }, + { + "href": "./BU25_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122055753c689a14b72e43e844fe2dc4d741fef229b5d7e59a19a69ebd4216fe41d9" + }, + { + "href": "./BU25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122015998b8002c9d0f0901c149ffc439292a0a7488377126246e5a6bdc3aa1255bd" + }, + { + "href": "./BU25_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e5bd12a97501b8bef660e1dad54602118c9ec2f726004b80b697147e3ca007f8" + }, + { + "href": "./BU26_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122077a206a11ad9f985dbb94ed8b6b90388a7896eb1d40fbd0c6f577490a2b14255" + }, + { + "href": "./BU26_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122020b4116c26a219dfc9ecbd376f7674c9b2c8a4045ad2691e2f09da4d038e932a" + }, + { + "href": "./BU26_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220214b30ddc4e8966d3344e7ef417286f5025072d0b9a436a64eebb9b0a263902b" + }, + { + "href": "./BU26_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cb839012d4fbd9d73e244167b7bbe658dbe3fd07ae675099c6e5b58f3cc52a55" + }, + { + "href": "./BU26_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122065d1b1618e863c71b440752c8c7cf9367588b050467dcdb028dbd86126186e30" + }, + { + "href": "./BU26_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f81bdcfc89a48a3fddfbdc0d2ca935476ef2fc8a225738b06f24ee1df9c863a8" + }, + { + "href": "./BU26_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209b508ef066f6d5b6a02f02cc797cfb1e49ade86d603f5249449d3ef57c729d3b" + }, + { + "href": "./BU26_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204fb170c032b860c1541bc2b0cc6aaa5a0d189f1e4070ec10a29ca4af7632be83" + }, + { + "href": "./BU26_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d676444f011905b3e866baf1a2d1bb45844f3b1851ac07e6233fdefd724699be" + }, + { + "href": "./BU26_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220548f117936f0695afdaf062cc2d63c315c3ed41ef4f7441d5b8a53458a4ca67b" + }, + { + "href": "./BU26_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c707784f0d2724a38a0021866652a41b5add42e89f1f931a65321c079d04f9df" + }, + { + "href": "./BU26_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207fe113ae51a3792f036d64fa5e381126a95a570461679f08810ca9b74ce1e5d3" + }, + { + "href": "./BU26_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067e6a8633b3eb3494fe41dc36d467185d6f853508c773043c29125a59a4ca55e" + }, + { + "href": "./BU26_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207081950e5fa951cd898e3d992ca9c4eea2f496a7682ea1b550261695814c830b" + }, + { + "href": "./BU26_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201e1960210f77c3bd6b864fd1c9cb223bdafbcd6ccc8a317f349e9beffb02e6e1" + }, + { + "href": "./BU26_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d22d8af8bd617de61d0d3f12462b65a0d4260d7237f93757b2c6b897bbad4fa5" + }, + { + "href": "./BU26_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220969bb31c5afe378b1bbe11db97a7290dcc0e6c8242d1f553aa36319c828d30db" + }, + { + "href": "./BU26_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202b3b5ccc758415668ca011ae5b1c9a0dba74fab664401c35b9b98e4025a92b4c" + }, + { + "href": "./BU26_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204998285aaec94f41f533a46f11b410061878a791437827cb89ee212e6a2fa8ce" + }, + { + "href": "./BU26_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220050eb6a74b6afd3184368b2b287e82b34ed1d54509fd51dc85b057d9fa1d22cf" + }, + { + "href": "./BU26_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d6c70625105dcf49fec55731e2ff69b6ee1fdf30fd50e2c187720d87e46b4d3e" + }, + { + "href": "./BU26_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122002b0764cf3900044fa5bb58112a6af7c2ab08644ccf66c6ad4f36570ed830155" + }, + { + "href": "./BU26_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220300eac3b9f27f3bb2a496365c2fd2ce6df92be8fbf06aadd87124c49ac1eb325" + }, + { + "href": "./BU27_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206120948c9fa27c2673d5dfb71febe6d1894d1c7ba6dca5823b0f73024da9d5e7" + }, + { + "href": "./BU27_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203e499479998ada8939e089e6e00a79a2de17d5298e087c7c5b375dbc67474169" + }, + { + "href": "./BU27_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203ad076f95770ad25c9daa71c71923c4254328a3fe6b4125d94f52ee774eb4b2f" + }, + { + "href": "./BU27_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f692f9d59ad6e1d713b549324e5b9f880f58730a3f8e1f7d12cdc3bbd2223df5" + }, + { + "href": "./BU27_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f2b29d506003b8fcbce2514db6ab9b8a49e1b9ee3ca2bf68cfc1d5c7586301f2" + }, + { + "href": "./BU27_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122092de1278074ca2287070b88b5488f1674a64a325d55a49b78dc3ac7ea5cce3ed" + }, + { + "href": "./BV19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bb30c07c5e9e27fd932b4d26ce1effd10774c32226f65ed2e0a13cecf51eea76" + }, + { + "href": "./BV19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220780f7407c3933555a1894747032955938f54bf79670e930bd6b4c48839a5e6cb" + }, + { + "href": "./BV19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209fb112319c7cb00d9461ffc47e627cf10afeeb0b29e79762655ea707be877821" + }, + { + "href": "./BV19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bc7d929c1e5153eea948e3bf51476acf505427ee146e94ad78be8f17fbc6f1c0" + }, + { + "href": "./BV19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122005f37517d50b04ee044f607716c459ca2fc86dbed0d59883341ccf57f1e44c20" + }, + { + "href": "./BV19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eacf91b11e8ed1cf8f8daa724fb7bb5ceb1ba9959789e9129c629900cd7501c1" + }, + { + "href": "./BV19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a311eee43255421dd631a7b88ef55836ee44b7cf533ddc9120544c673efebf81" + }, + { + "href": "./BV20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207397e8c82e738caaad1769a30a07da72ca910bd105c56df0fbdfcbdb1dbf45f7" + }, + { + "href": "./BV20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122057aa43bdeda40969148b0f7c6b605ff8f4cb4f7f6e19ad4c15bc13a16e4f77d9" + }, + { + "href": "./BV20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206296d38b6af519cbe95ec09e0517813903c273653e3c5516f2ddb73f6ec2839d" + }, + { + "href": "./BV20_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032db66b531161dec4250b22b2d65e5e6833d659e6aa11e067f6d67cc1d03e6f0" + }, + { + "href": "./BV20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122017d814c01dd7d691ab4d4002f96a0d2e90c220b00333d05d02d782a8107bc72a" + }, + { + "href": "./BV20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a3c8a299856532bef2876420a49bd9e20c33dedb4d571a76bbe63d394493406d" + }, + { + "href": "./BV20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f664cf2c84f0f28a11ffe66a487fcf08262961f5446bfd4089c04dd909c638e9" + }, + { + "href": "./BV20_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220268bdd9e35b443716cbecfaba4bbfffe20a055282e0aa2022195f611b9d3cfeb" + }, + { + "href": "./BV20_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202059fa59f8b9cb2ad7fa778459762d44dfdb653746f0f152727b04d54621b5da" + }, + { + "href": "./BV20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220518b48e2e9b722e39aca49b7d12234281216f814e001854f3404c2b6c268b6aa" + }, + { + "href": "./BV20_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a54fa562a221a36897d43884ce93161b4e24d9730352d29293218ab814d2636" + }, + { + "href": "./BV20_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201490882ab1e6df1f67d5cc1d6486dc59097d033a75114f03bc01aa09d3c72d1b" + }, + { + "href": "./BV20_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202fcf14642d3f1598c7ff597829f882b357db75f05b584f575f8a4e2aa4d0992a" + }, + { + "href": "./BV20_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d3dd8729775aead7d89985f2795a905959457bde4820e8f011de72b037361f2" + }, + { + "href": "./BV20_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122020d435ae12e9b72c3121c774a996df52d47a4b64cb6bef27c0262a3ca3ffef4d" + }, + { + "href": "./BV20_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e17060b53902bb43524105c08dd6e0fd62278458b4f6ff66b1db8234a2f58949" + }, + { + "href": "./BV20_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201ef8f2d8f6a553c31a5065460bdbbbcf197d1e46fd9013af2e15fda494a08fca" + }, + { + "href": "./BV20_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122047327aab08ae1fa308286376d7458f7c603513658f88ee685eaa38c172b29097" + }, + { + "href": "./BV20_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9e4d2493f704e305f42183bc19137c9333fa7cfea82658fe4d595d5b3f3cbe3" + }, + { + "href": "./BV21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207325270436d65c553ea9e9b23dc25bb3467ff2d5ae3d8156dc7214dc1b766e7c" + }, + { + "href": "./BV21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220367032821c991ca15e8b8d925ce5c036372bae2296e6d2215df3d751ad8f2fce" + }, + { + "href": "./BV21_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201009e56521181fdb637c0706ecc060e721b080655c80a41bc372a9c0f6677dc1" + }, + { + "href": "./BV21_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122024da1e1642a3ef9bf5563a56f4468a12150dce6bd76402c4ae88cbf19d6a6406" + }, + { + "href": "./BV21_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a26d1e2c0bf4c65c002435c0e5a52a7c145bace88af964944500f8a99f0c3256" + }, + { + "href": "./BV21_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f9943db7f9fa653f5a82c829894bf8ffb485975e886b641d4672501cb0ae0993" + }, + { + "href": "./BV21_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af664fe0259c74a64ab6c46536ca17086a60cadb88d0389b7abe7f18edf1ad4a" + }, + { + "href": "./BV21_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c82eff1453e1431ffcdb0e3ff32a5b3c5890fd47601639fc69e26fdd36030b4e" + }, + { + "href": "./BV21_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200a5c1ef82f16560b4f9c0f4842c2914368f497faf8016cb7dc606a793be5b0dc" + }, + { + "href": "./BV21_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204d5ba23ef457dc179a4058a042f3d521182ed21148af637d4d93df3fc21f8caf" + }, + { + "href": "./BV21_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208788b3bf8a0e047b7d60ea203d3ee966adc75fbed753637e4e237a82064ca270" + }, + { + "href": "./BV21_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b1f8d2c9aad10d95700f60a99f67e5666c897a6d2cdc89dfbcc78f143636dc7" + }, + { + "href": "./BV21_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db1f30876e0ec2fd02a6dec45e9c1a4640841b78c704b5812279fa93053bfd32" + }, + { + "href": "./BV21_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae61cfd730017c466de321350064969360d4e4b2d3b60f9846935ffe90b971d8" + }, + { + "href": "./BV21_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fed32552642a7c601bad8d6f245261f4b1fdf94dabeedbb69aae96f4865cd8ae" + }, + { + "href": "./BV21_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb94a66ff440569d02fa36519917d1823d5f35d419644c46a8d7e14920f415e3" + }, + { + "href": "./BV21_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205dacdce3453547712a83e7640c0eae7b9974b995b69d5dc6e428a68b4aae64c7" + }, + { + "href": "./BV21_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e8aa916ccaed870711749e4409948351b2ee9847c08f987890ab23f7f4e20b5" + }, + { + "href": "./BV21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c85b1439272142f8dc90215914f9aa0d8780bf0ae3320914cd481854f7dc5365" + }, + { + "href": "./BV21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201cb240eab7764876fbed25e1dbc607053f09e53850612374911d2b92dd3ad343" + }, + { + "href": "./BV21_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122000a6d9c9e5d249535ec2b02800d2bdf711f33d1c994dea53849c9585c2220036" + }, + { + "href": "./BV21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205221052e04cfeb09284c5f02a4801f5112f3f6b9a4a5b449474b23d85bf66c03" + }, + { + "href": "./BV21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201956117d664522a53e59923baaf84ec9877b81ad9f858c073e7c32445348ae44" + }, + { + "href": "./BV21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122024179d8176bf18e9d8bdb8c0266af00a8344683362f11e9a4806157d06c14c20" + }, + { + "href": "./BV21_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207670f810ceea6a443357443acbdccaa071d879b1dc26f9c9b873b09bdccaeab9" + }, + { + "href": "./BV22_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220afe8236f5f3b707d53225dba1b3f5a536a1c1cb3bcbd595903849790d92a825b" + }, + { + "href": "./BV22_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220387df09ffef2a5496eee9b2b0d35d478827db9c6743a5dcb526ef4a0bfb69774" + }, + { + "href": "./BV22_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209cbb1cefd9531fbeac425abc7ac1fa4f6b15a5499bbbbe0c99c0bccce7ddfe52" + }, + { + "href": "./BV22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220623928c0cff8eb59444e9123edc0353b773a7acc98967d84ce2f628fb888594c" + }, + { + "href": "./BV22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054a4d33936af5bae3f6019a73f86d966e83fa711508092f6000c6b88bdb2aa6f" + }, + { + "href": "./BV22_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b7358fc91fa4a9f294d45f37747b1c09b87b136d6c84bfa02468cc656240b61f" + }, + { + "href": "./BV22_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122076e3dba4fbf2237c1ae33b5261fd3e65c8f4493a284b165b2f00ed664874fa87" + }, + { + "href": "./BV22_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e25d981181c377fb09f1f493e9baea15b2ca2a7d64c2ff8a9d923231ee634481" + }, + { + "href": "./BV22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ee5f388533fb49422b4e77fcc07bbfcfb963a1fbcf4c64aac8670a1affca7544" + }, + { + "href": "./BV22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e94e4612787f48718ab4680a720c4525def51208bbe2aef0ecef1c5eb096c4a7" + }, + { + "href": "./BV22_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220748f73d1c1d2ae2d1687a58b4ef92e6f27769658606d846a856b0030754a0d41" + }, + { + "href": "./BV22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b915143543a00d602ee1c40f8b2010a6b30de9f934bdf5a0bfecf541bd391bc8" + }, + { + "href": "./BV22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e279c34c01247fa7db42a9e34043fa9880a01e6ebccd1adbc7fb23f27928d28c" + }, + { + "href": "./BV22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c26338985e0a113ed05f3e95015786274a686ca95760a951f87bb1ff3f2ebe59" + }, + { + "href": "./BV22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b30f18b1de25becdc088ee4e150f54ae49250eb11bbe7b45869ad4a305f6fe36" + }, + { + "href": "./BV22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200112a261f629eda37083ed158ec73f25081e2e8683e33eb50bf566800035a2aa" + }, + { + "href": "./BV22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122016877051c2ff5d6e1bb6707b5df4d54dd82c86fdb27b67f0936da7a0397c07ec" + }, + { + "href": "./BV22_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d3708b4ce5828b35cbea6f05e80a6bbf53780c0364caec5fead5a919ce482291" + }, + { + "href": "./BV22_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202284ba8376de1fe630500a677410f2af697d278dceca0c13a5920f9741527ed2" + }, + { + "href": "./BV22_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220101823f771778050dfbceb1898fad80a1d974e1662ef8aa3140c9e018be6a355" + }, + { + "href": "./BV22_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce7545e6e362203bfeb62d798254ad15e7bc90e7bc5019659cf7873a586e8d11" + }, + { + "href": "./BV22_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b727877f7941faca2605bfbea2666db5ac23c0235d078bae20df83db3c8bf9c4" + }, + { + "href": "./BV22_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b695eab75bca6fca81753f7cfc9790821dde88f416b1a19fcd2bec2253e63e3f" + }, + { + "href": "./BV22_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208cb1a4e5361496efdd2965156707213f19bb8101c6c7432fc375d5a5375fd873" + }, + { + "href": "./BV22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122009e666e13336751bce5b38b2ce3a9ec16bed9733b40e8d678712eadeff5678df" + }, + { + "href": "./BV23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f66db0a4fc4bd39e5185f7c99494802eab2d1c06f473161f469faa5075f97435" + }, + { + "href": "./BV23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205609fb8dfce5d47bfd401262c987245b20c2280e233d70f5f492fb89e07c9529" + }, + { + "href": "./BV23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220161556d1f00fb6e8db2d92e0b9ae8ac08660a7bda4e1cb94d4aa22355d2abcfe" + }, + { + "href": "./BV23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201e76a36b2b04fb3a4d3a2f9f0d1f9570c0fcba3117656050ab0d86e48fc7deaa" + }, + { + "href": "./BV23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220715444639a6c4d43c9db1e09350fe4fcf75d58f2935a5ccd0410ad06dfbf7eb2" + }, + { + "href": "./BV23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7474f59509806463b9b90bbae81b877fd183666491087d00abc5469ac371202" + }, + { + "href": "./BV23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207e2aa9348ab90016345c108331f04eb821fdf74b119ab95e1df21e0bf7a992b6" + }, + { + "href": "./BV23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205db463b4f0442969f72bb4b1c0258c3a23ffe2510389aa4d1045ea11908bf9c9" + }, + { + "href": "./BV23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122084c0c80ceb6c30761e82754671854cf74b49792a8433156918376706789079ad" + }, + { + "href": "./BV23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f4b2b72aee0030ecaae6d10038eafbde8b1ce79ffc95b4e3f95077086f95a562" + }, + { + "href": "./BV23_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b99beb26ca5b867df35a019902be79efa6ef5dbe92449fd9b434c265a0952c08" + }, + { + "href": "./BV23_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c87e65739f0c3e2af2b0b02d441e0ec0fb10e48debc120b80aeb1e6b638b478c" + }, + { + "href": "./BV23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209b319878fd1661571c3999b7edd271fd152d3a5b332175e4b5184f0734009f6b" + }, + { + "href": "./BV23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a78d38fd7a906c358804091576d433076d7e17b48ca282ab13d82effe4d34419" + }, + { + "href": "./BV23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039741ddee87388879ad6d6fb9460892ae72a4523414a5be3a0f061e310dfd759" + }, + { + "href": "./BV23_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220540cb497b82fc968590261a5b5cace59ea2ad83d848ef71fd7a3567b0697d50e" + }, + { + "href": "./BV23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e425e5b0e9cabae9d47d8d3d787ae003c92261a99cb5bdd39111010010a6299" + }, + { + "href": "./BV23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220554e32ea7c8be67a9821a212a3d4e34acd17ee188f73fd4744c33d67f6513240" + }, + { + "href": "./BV23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122059a97bd3bdab2fb4e82bc66bd53f7825778aa98dfc01781fd1bbabaf826640fb" + }, + { + "href": "./BV23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a8582c90bdc96a841b702526be12ebc6d27233bc51f1fba829761983929f3128" + }, + { + "href": "./BV23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d8ba730302014c393a7aec3019eb49fb1605df296a69af2ae3f43bde7f956128" + }, + { + "href": "./BV23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af6b7b1f4bba84c55d2bb155eb72f8db072f925e57a000e9e0786aa61797bb16" + }, + { + "href": "./BV23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a0911f35acb909d2415c45729455eaa7b96e22ee98ad4df91376a69c9fce0f0c" + }, + { + "href": "./BV23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200c1b99a74356b6f6abc929dd30facbf6b13ed65a8db197b743fbcde588417d14" + }, + { + "href": "./BV23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208b02b7e41b3ce6a645de8eb2da59783803e191778b89bc39f5e8613c037c98fa" + }, + { + "href": "./BV24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201854ca445dd85ece78c8b36a152afe9e04708419b714e649733e475adc34c765" + }, + { + "href": "./BV24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ab8f81adfddbf900f6a18e1f9a43e737db7c0bb0044bf145a890f2616532c2a5" + }, + { + "href": "./BV24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206f07895352ddf350079374d182a3c933ea24a19095da568069b599a48542cefa" + }, + { + "href": "./BV24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db0851e4a4d96c6cb8c5907833f08f749324449d6dcaa77b28c554936a88193c" + }, + { + "href": "./BV24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209fa33c0db42c416c9b58863589e905f0147c93cde7dd2d70996a245187d945d0" + }, + { + "href": "./BV24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cf2782b8939b3efbf00ec023e40567241b3c701413fb0683fa57da0734ff8db8" + }, + { + "href": "./BV24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032af05a86f8c0630b66fc811c6345fa41e8b902b21be9fe7be3cd7b031d09f37" + }, + { + "href": "./BV24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122005d429dcf06d8de04ddf68e7d0e185999717a7a95a67a89f1d195dd61d033d92" + }, + { + "href": "./BV24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200faefcf84f95cae930cdbaee94109ca9ace4561cf99f86450ec846bcc00e24ed" + }, + { + "href": "./BV24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fd70c8d7e337c5b350e16d36394f3c15e5998889276cf51a969b222c8b6a93f1" + }, + { + "href": "./BV24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220512db43f27d72fddfebd4f200d364c1a4005e26f05dddb3c237574258d77068c" + }, + { + "href": "./BV24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205a7c1bf2672f2dad7051608c7f1d54980f0c00e3bf9fa8fa225b97d621c10c14" + }, + { + "href": "./BV24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122045049223eec42a48d90596ad37f26d18f0b794fb491b378d7dd49b5180a9dd83" + }, + { + "href": "./BV24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122022bdab7a344cd07faa988d1d735ce9200713117f255e6beb1096858d1b40ea80" + }, + { + "href": "./BV24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209735a84000a982594d0ae0140bbd1dafbf8fba2357676b68a6ac49b699569953" + }, + { + "href": "./BV24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203ff5d335b9e99b25ae810ed572e7506d02d2c8823591d1a204ea272c0a611204" + }, + { + "href": "./BV24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae4fb788a5e1d49606c5ec430f09ab2c877fa3f0f2b7258387885f9ee254dd75" + }, + { + "href": "./BV24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023a41a666a69e1690e42eac717ba1e4c1e66bf4a434d113932f16340cb141546" + }, + { + "href": "./BV24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b734a74f31fc1ef52000db213cb0c3be803578d609ca60674fb4118f1903e0c2" + }, + { + "href": "./BV24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e4750950afb26283751e2016163dcf3999846f029afb267720728f92e62fd2bf" + }, + { + "href": "./BV24_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a1ebd75bf51f289fbafdca5e62f076f986fcbfe0fbf410787ab4d1b5b00f4e1d" + }, + { + "href": "./BV24_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032300b2793246bd0c678654a58ed9b6b0ae186caa1e9f0ca0821bb1675922169" + }, + { + "href": "./BV25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e17b3bb23bddfcaece90b4fc30452e80fb920767acdca5a247e9589379a9bae9" + }, + { + "href": "./BV25_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122003deb78d125f7340e5b9b94eb4e56837090b57f33a165e162eb304468dacb1a0" + }, + { + "href": "./BV25_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202da8bd2dabee6ed3396c87d380d74e6d913770a203e1f3cdcec2fe76110de94a" + }, + { + "href": "./BV25_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dbfc356c8b4d0e6723739750e8dcdc46a89fef8830c56e6a2a36839061a5c001" + }, + { + "href": "./BV25_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079f73659ff09fae6ab1a96abd39b702ff585bbad39dc3d7e8b6cfa645a680627" + }, + { + "href": "./BV25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b84b048d9978278d56c8686e016d23a06694a8e430c13f680671fd27b95cf265" + }, + { + "href": "./BV25_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220703387aee803739ab39a958ad93146f2274ea0ac28ea21d4a17e012281ac4102" + }, + { + "href": "./BV25_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dc266bba095cb8853c9b3a047a3df6ef91752a31d5f88f585ab62ae9f6e88172" + }, + { + "href": "./BV25_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d597d40c7d6f8dfca432fd54651c813e464bbff2df10f17336a4440d7c321bfc" + }, + { + "href": "./BV25_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032cdccb0f9e0cb95c2ace79ea956566e434c2749da2a8eed3f8a26d3d6962a22" + }, + { + "href": "./BV25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220de75998e97ba32aa144a88018c00e2821092462d8fb9fc0ebefccdf4ccfe3f19" + }, + { + "href": "./BV25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023a82dd4096bbd4087882218873eb94bfa46af61ab60e3e98f44017be885102c" + }, + { + "href": "./BV25_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205ea66465922f14dfa072fff94f93b7d754eec80f63bc58a58be8d2d81eeef498" + }, + { + "href": "./BV25_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e0bfb3a1c5d46ca4acdc86e54528045664063d2555baf6b0705e52f187d7e6e6" + }, + { + "href": "./BV25_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122034e052b3ede5a4a568661d2df943c18bb55d6b787075cc8ca1c41399db984d1b" + }, + { + "href": "./BV25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068ec6a4c0c508d2441b2ebc4394275bab7d84ad229bd6478baef984cf000ae6f" + }, + { + "href": "./BV25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b11f94c0ae6e185e34b410a60d59eb0e57c534b6387012cb8ac2dcd7316fcf12" + }, + { + "href": "./BV25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bc8ef05d76b67a71a32cc3a43f624d079f37305588b88ba9a9a9def9b642ba2e" + }, + { + "href": "./BV25_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200c8ccef910f98b422e9180654e386d85821924d344c464b9878e1a379b7209e5" + }, + { + "href": "./BV25_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dbe2ac521b79e7a88f6a8569ac9b85c52b7c26737035e65c7751ab667e451b05" + }, + { + "href": "./BV25_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122002766cc360db65845c62f032b53ac63cdd3dd678f26d2b168574205774d6c148" + }, + { + "href": "./BV25_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122024dfec46c90dc7927267e9985db20e3115b5bd9f6b4c8c99df94e1b98a16fff1" + }, + { + "href": "./BV25_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122090cef7add174e7e2727921d3a2c748bd2b738008f6bf7c2aa74add327b2e35a7" + }, + { + "href": "./BV25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dd6d31efddbd4cf058a28e51212cb50783220ec46944f5ca3f4fd0e9305a6875" + }, + { + "href": "./BV26_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d17c45d64e62b65f712d4a3dff9069ad198b24a760898d7b38ba2cd211da9e1e" + }, + { + "href": "./BV26_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122086f81800f6085899864b4cac1542e70b2370a095bdbdec65c008c27a38eb1173" + }, + { + "href": "./BV26_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203631d206918818d30d9f19b84f2d417c59c891dc6e6fbb1e9920bbfc13c85cc4" + }, + { + "href": "./BV26_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203d86d142a2aa6f44c98c29a2587d23f3dfaeece61e096625ade035d097c18930" + }, + { + "href": "./BV26_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207fc82bbc61893507cf3fae25dceb7d27d8ae25b69598acc8168abb59f1505503" + }, + { + "href": "./BV26_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e4d6a6554710d2ccea15b4d2b818056443c7585d0363131aa37b6e8d59047391" + }, + { + "href": "./BV26_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208b7cfd2c6d6db1fb116c80a808c7c9aff2af5665cfb6d152ee5a05fa353a6feb" + }, + { + "href": "./BV26_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220694445ce4dfbc7431a6b6911d9396f644c39067d55a1f8293a33326d3b7ede21" + }, + { + "href": "./BV26_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220086ad8218e10d4439d4728c0730b8676d1dd2cb50912274c06ab7c20db50b872" + }, + { + "href": "./BV26_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220229131e25a43154662cd518425890a053aa4d98e2078e713a613608d3c84d2ef" + }, + { + "href": "./BW19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad7071d96f179f47fcafd38400a137d6d04b9e5c5b4ea5ac21aeb74dd8ee9803" + }, + { + "href": "./BW19_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b177c9b2d046ef3d3a42e8f255bf8fbfc6dcd1381043df2434805908f67cada1" + }, + { + "href": "./BW19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae04e01606487286f3fca527953cd275dc317d221ef5c60f5b70308f304402e9" + }, + { + "href": "./BW19_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203d27464b9d85fcd37be6df5848ce9861dff04700c77e9756eb0c33c158717eaf" + }, + { + "href": "./BW19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206a9bbac0808fd75b0cb6b227c461ba254e07efc430c8f759e9ad0b679a97ed3a" + }, + { + "href": "./BW19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122094b75b7dbc2149a55a3149e065a558d8a240406ad7452dd2eef709be503efab1" + }, + { + "href": "./BW19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122025f6a431b1fdfc4d2f0f930f9f663878b4c98ba153384e794becaffa319063c2" + }, + { + "href": "./BW19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122083b5196bd2ae682301b3391c28ccf13ee2ef9f4d6efed8d2e0451549d17af219" + }, + { + "href": "./BW19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a75bbad38448375b2c010b32b401911b95222fcc7f124f0de4ee1258eac5a6e7" + }, + { + "href": "./BW19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209140ada1f591cc8bf512ea944b28b0949bbe3ff3778aaf48f1d389decf37a478" + }, + { + "href": "./BW19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220679badd44a572acb36aaa1e80950aefe722d9c8789040cf4aa12e80e3d222e4c" + }, + { + "href": "./BW19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122034bb7bb818281cb681061e13f9d6b966114ec95c7079db9f64e4169ccc3c87f8" + }, + { + "href": "./BW19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220088cd4f53d9b4a910de2b02d320d5386a64821bdfedec114a1032f73029916cd" + }, + { + "href": "./BW19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208e6799148873bb192389e874d35891aa193de236c019a5400deef3e455a2a3cc" + }, + { + "href": "./BW19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220103460a3d6a787ef51e5c5a6cf0dd0b9399c240bed137768170d9a298020260a" + }, + { + "href": "./BW19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c898182371950a6b078e92596c78d9c18247164d268f584cb2b57dc590ef7f1f" + }, + { + "href": "./BW20_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209886cf0e2de4cc92e92b1ec39208fb5f0cccb7a284f1d862a5b6f151c98105a6" + }, + { + "href": "./BW20_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204777279ae97df5ffeee5cff67e557949b85dbef2814b67400e5387d89c05ec72" + }, + { + "href": "./BW20_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209971554d8a85446f40401a419c63ca15388d0d4d86bb84323cd08cd522065942" + }, + { + "href": "./BW20_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e6f7eb5da03d4042cd484834863be4e9833a706ea103532e977ba3fdd90b1aad" + }, + { + "href": "./BW20_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea86b9011d555e9050888e58a4b45d8d39961c4b5609a635bcf2e88116788a3d" + }, + { + "href": "./BW20_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205fd80d81f002eecc510d36c94325de8a98bc573bcf7ecbc53f46c286f65363e4" + }, + { + "href": "./BW20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122058989dfaf133e15f85e99d6cea6d5468f23d91c8536386c18ea9c603668f5ba9" + }, + { + "href": "./BW20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d305cf31994acb27c7c0d0f6d081e66d3dc39ce6692b247bfe9b4a8d4e82f64d" + }, + { + "href": "./BW20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c0ca59daa667a54f87ab047e89a2e9d709db68443e23b28a6485e0d396edee7e" + }, + { + "href": "./BW20_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122072460ecb035fc933ba37a22f5f1e923533f3db647efe724cc15321cce15a573c" + }, + { + "href": "./BW20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220debad00dfd07d9812dd9d7cfa47d4dd15303421d0371afc9194fd898fbb741e2" + }, + { + "href": "./BW20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f047b0f1758b6496302cc0cb7a31847f4e95e228d88221f4c6f7c04b18a82d54" + }, + { + "href": "./BW20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cd9ae20320d76b67bcb481e060ef1e473576b8850950e829a2a9951fed9c6252" + }, + { + "href": "./BW20_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203b23b253a0dec8d14c87cb7cdad5c7bbea57d602ed3e484b4b9d416f7d6893a9" + }, + { + "href": "./BW20_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202d9beab535181a06b611485bf08b7234e402b90389950fda0696c7207a17b2c7" + }, + { + "href": "./BW20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad72c4bac9373f989a5b94f56504f6769ec6c7b974b12ebd7972a29299cc64fb" + }, + { + "href": "./BW20_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220309a480e238c6976f49c060774f77fc0a59eba67733671469606c8037e30734a" + }, + { + "href": "./BW20_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dc7425a9e58ad7c2c192607c6a73defa001787ce42b3dad1f61cfd5e99404331" + }, + { + "href": "./BW20_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220380dd085599557de8bb910598f4148de173dbd360cef7a53b6deb10a44626132" + }, + { + "href": "./BW20_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac37e7f7133623af4b702bf3666f6e839c1c9f31d5be9db9137a2fecfed25432" + }, + { + "href": "./BW20_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220730b63b1f60ce8d2924ab649b87e3dfe5dca003600f567c7bd3d348be7b51372" + }, + { + "href": "./BW20_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220260e8d7feb0a1081332839734db44bbc41a1b0c9e7d7ffb7a1304479905eb7ed" + }, + { + "href": "./BW20_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207240ada807631f7dd418d68e121050248a6c691997893bff6d1161232ecbe709" + }, + { + "href": "./BW20_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a40cedd81b2567cefef417dd0acbaaea4aed4258aca008e096ed1e9ee33340e9" + }, + { + "href": "./BW20_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220444970836ade82b5129cd9f6f88b02222836e7d28284795aedec67bdf6541dfb" + }, + { + "href": "./BW21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a8554f499855f954b722152aee82ace363c38b9b6a5de77d436f4822b81d5df7" + }, + { + "href": "./BW21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085c3282d316210ed7492be70aaf8ca7bf702868fe13ba75cf85af1b72d48d4cb" + }, + { + "href": "./BW21_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1502f4362df903db5d947496312a67f5094505c330e4a9150ccd2e0f33033f1" + }, + { + "href": "./BW21_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad0f1febfbd9c5c7c27dba53382bae65c2858630027d9bd93c4487749e4b6ff9" + }, + { + "href": "./BW21_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f737bd665b862316257737b7a510423e1e7afc1e56a71fb1f4d35524d0b8952" + }, + { + "href": "./BW21_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206ca56349a3826e4d23c1eed91034281e66605502806213bdbed944f76a33e611" + }, + { + "href": "./BW21_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208c421526cbf7abf1f00b6e518bd050c1bd7f6cc3421786ede93095db7f15a011" + }, + { + "href": "./BW21_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b690254e5a0d7c4e2f9552c1b610f4f82f292c22f3dde3185279244cf1563b49" + }, + { + "href": "./BW21_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204309a94cc061084f533e68a35eb357b4f93833496a35befafa91513d7490d533" + }, + { + "href": "./BW21_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220466520acbb2dd64efc3c19ef0a844321c56be01af9a9b7369a1151ecf9b882be" + }, + { + "href": "./BW21_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fd65d2ba4f58d84bdc5eead074c5f30688d3a1b4053d0c31dd1153b6f2a79b48" + }, + { + "href": "./BW21_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b05ddf7ca762c5a0d1be94b9f558a7b6948bc3b5fb3c2a4a512da1c4d5730435" + }, + { + "href": "./BW21_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205f2e34e962c43b76eee2a750f0dce880485d897c5274605a311b23137322162a" + }, + { + "href": "./BW21_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207ad812301aaa57253cd2a76feb3a36a85cfebf4daedd4cc7f913f1bb58d8fab1" + }, + { + "href": "./BW21_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209fdc5fdc43863c74f082b2d364a1e7752a2b85e10d67e82bb8153f458018f32b" + }, + { + "href": "./BW21_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7678a37d525aa6f6024bff3aff8411499e1895d4031a9704009a9434b39524a" + }, + { + "href": "./BW21_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208aa7f9dc6a885a81b31bd92b62a0845e7e5121390af1294f8ebc9ca39a1f9997" + }, + { + "href": "./BW21_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205d34ce1adf0c4a292837a56e591cc9687ddea7973c3f8deea55cce0c0cb69c4d" + }, + { + "href": "./BW21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c56bccc6456ec2a6caacaeba1a54ee33e11f41439e70006a8e7cf9033ae5429f" + }, + { + "href": "./BW21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eabcfb7befb63fe886e19471c8bf7eac09bbd0ab33cb91ee426ffff459e2d2ed" + }, + { + "href": "./BW21_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ef13361e7a970abfa42f543be14eeb79cae3148a6235f358c34ba86a44fdbcd6" + }, + { + "href": "./BW21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d850487f2aa8aa3d35408a40513c1a0c1770085329f5810840a813bd04317c32" + }, + { + "href": "./BW21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220df764b42b3e2fe2675b5e905f67d63054113c203e92a512aedb1d84b3708f010" + }, + { + "href": "./BW21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c6e1bb894efbe1b442a79e772b1fdc395f2ad39c909917f2e3aa6d61e72b10b6" + }, + { + "href": "./BW21_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220203042915b1dfc6b6d5a4649672e5cec2527dc0d28cd8475626cff17665926fd" + }, + { + "href": "./BW22_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122058f12122004930059a1c8a535c65fa3a6e6f16d8244d49ba4764dc58b3147355" + }, + { + "href": "./BW22_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202eea37e8d940d87d3c0c2c8fbb02c03c15fbee395f733374dc11ee82eee072ea" + }, + { + "href": "./BW22_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205f23f92c1cca02e1d9ded3f166e11b39d2654592fed66abf1b9886a7906b32a1" + }, + { + "href": "./BW22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201cde1f9719e9b2469cfbd9d41a12bd22c3016d48efedcc9370a1f1bc73080174" + }, + { + "href": "./BW22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122080eb6a01f556547424721a01f494ffa495bd9b38cc4c5606d17702cf07e47f59" + }, + { + "href": "./BW22_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203503bb66de708119396e946babae3830bdc1bc1fe3925a000c384bdc142d2461" + }, + { + "href": "./BW22_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d6f8b0f4bd3c4fb62dfd8f69f66d3a98146da2bb34b8469ce552f65a2b369988" + }, + { + "href": "./BW22_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220126c0735b212ab762691fb2398e1c7d93a2fb9f555aa1624587ca9016805ca70" + }, + { + "href": "./BW22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122070e093452c05d1bc992a1af53e64f82a8e0c3a1833d9f5530e1c428fac3ea59a" + }, + { + "href": "./BW22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b347f9a8df21917732b2b06783819c833a44af24582714ad6f7f0262696c77c2" + }, + { + "href": "./BW22_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1d47f4886c017a85bd041898461bdbbbc553c3552538e36a934fe690ab77243" + }, + { + "href": "./BW22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a74552d28614c73e923cd5ce73324c6b994df1ae3b8cbb91c57f71d77ede3d37" + }, + { + "href": "./BW22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220be97b4f890df311b691b37eba038eaa892c74193ac064957aa523297c4e47d60" + }, + { + "href": "./BW22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220890892e9383e3fd96636163993d80ad3fccbd44778a9ed6d8ba4b045e365a7e2" + }, + { + "href": "./BW22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f009b82ee2fef48c1cdee1d58ee5235305b3e1fbf0e2153feab3564c62297ba9" + }, + { + "href": "./BW22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205db116f5bf6ea7efdbe4e2d89e7ca4ba0e3823f3224cac7f4c42fa75c7df4344" + }, + { + "href": "./BW22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a6527452d2239b51b3fed99aa6a03d38105eb454136cf571d963181e262056c" + }, + { + "href": "./BW22_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054b55bc6f4b16de524b17546503c17d7098f32830cf610d96d70666d7912df52" + }, + { + "href": "./BW22_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122028db372ce3c0adcd2da3ca366ea1721621303faeee14cbf2821de186f1615465" + }, + { + "href": "./BW22_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200a205a72de8a787447ad6380740a4fd3a43e97a6a77ec130ace2e9c97be1062e" + }, + { + "href": "./BW22_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ee9e656ad2650ff1972e2afd6dec1e5faed2c694312ab2188b872dad1e793492" + }, + { + "href": "./BW22_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023cdd6ad8a2c12115adcf69eda2b3bfbe6ebc9e6c178028c00a884a7cea33411" + }, + { + "href": "./BW22_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a5493b8842e648dcc71f4d6e16708e2335771e662aeae2a34e01a2f89040ce60" + }, + { + "href": "./BW22_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220407a885f238eb8a292c85d5664cc1f410e7c4559d95672a8010eb96ff3c12cdd" + }, + { + "href": "./BW22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122084ad62cc23d29735e564f69f2d9b0617723ecc68ec56ac6defe1dabe20025cb6" + }, + { + "href": "./BW23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206a30e58aa8afc48f57d4e4e070a148c38ddb9a18fd49e3acb39a1e5963a71c19" + }, + { + "href": "./BW23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206ba56e8372f8cae616afd08030a1b07021152118f24b135a634e41761dee1cac" + }, + { + "href": "./BW23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9f1411f96294128e9436e764869b79f261219126c5ec0b84fa01232bc418f5a" + }, + { + "href": "./BW23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201de6e9af78e6e74318bf512b13b1bf2d9455d5afdd3d0bfa7c63989aca364d0e" + }, + { + "href": "./BW23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205572fc41b917b44ca6a439fbd45fb4eea95bdd145ff6e47f4a1448f2550c22ea" + }, + { + "href": "./BW23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a3316f6271f2710cf400eafa8d76a304ac7a737935a6f25a9272fdbca92ec67" + }, + { + "href": "./BW23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079b6f29ebcaa9bc9564f530d38ffd279a5609ef9cee0491dd40754d16a7e5db6" + }, + { + "href": "./BW23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208816a80d4173f5ad77a35d847e7935b1cf9714c6fb1ca33d741de3fe8a42e27c" + }, + { + "href": "./BW23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122004ade07dc7fe5a643d03b4cb3f45ccca3256f6640bafd4ed985635fe282a68d5" + }, + { + "href": "./BW23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c3a754928a21ef4860d97ecf7e388d907c3848d4eac38e89851769f36f872ab4" + }, + { + "href": "./BW23_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dfdba1a03f6c8ca9dc066da3d6ea175cbbc5c53565f7b40142fe41dcc67fba0b" + }, + { + "href": "./BW23_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220054b6eb4abc394991551e6dc8b025e0efe80231364f02aa5d78589160e1b46d6" + }, + { + "href": "./BW23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202d35da1738dc59052197737a3a9d871bc2dbd43a9c262e2db4cd1199c1d58d30" + }, + { + "href": "./BW23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ed9389fd8bdbb4fb6392719bc10c95e6637183df4077f640a6f709782a51001b" + }, + { + "href": "./BW23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f91aec8bd2da3d456210e26d4bfcb9a2c68118d72101b93c5089e0f0027776d3" + }, + { + "href": "./BW23_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e0d3aa9f96866e54a05f2b4db8be08bc7e3f72f72e52ad864d93f6afcd8da335" + }, + { + "href": "./BW23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b601fa9789ad983269f5c7c1508cf57f9435c8fa9de41b33882322e32435169f" + }, + { + "href": "./BW23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122065289b0daa4469f526688e6f0da4549ef02e68ac55c2d28c95f35ad7bd0f1f8c" + }, + { + "href": "./BW23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208b6b61fb8da643bc4cd4e7948946ff7f4b99f055c6ba892299b414b4a782dcfa" + }, + { + "href": "./BW23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d1f2b1561bae87d35866d6633ff340482afa5a1139b10d3061b416fffcdf5564" + }, + { + "href": "./BW23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220323f4c8a38ae052794bdfcaacd51dba9fd5ccacb0a958b779ad4eda6aa8e8b5c" + }, + { + "href": "./BW23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220861bda75ad0e9c9569f7ead91bffc6901cf7ea0dea19555e351f6856d43c410f" + }, + { + "href": "./BW23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122091989f27fab99ccccb534217b6d06fdcb3035b7099a249f832fb6dc45e366e4f" + }, + { + "href": "./BW23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220196c6cf23302ca35c50699dea64d1f125df06cbdbfb20d37ddd0e36583192d60" + }, + { + "href": "./BW23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202448dd213937a35138e341b67c9a47784b82d19d0864b5bd5534a0a802506ce8" + }, + { + "href": "./BW24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f9e9ee20a509b4fd4b24642345dca0e7909ebfa3a1cdfd6c7c441c4045147975" + }, + { + "href": "./BW24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122069013eef1b9fa8ef6c99b439944e6e751de7ecc96fea3e61169637f1ed393f96" + }, + { + "href": "./BW24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204163bb6f203a3a74588124acfb69f25de92eaa54f459a9c68c90de6d149b602b" + }, + { + "href": "./BW24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209dfaa45387716f839a33624a4016146d1eea8ce95c2038da4777801008741dca" + }, + { + "href": "./BW24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d7fc792f7bda7f06dc7c77124765bd3adde4b89d9fb43dbb668aa988c0403c23" + }, + { + "href": "./BW24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202223baabe44eefd921e38c138e0f0a42af4e0ac65c11b13064916f3133e87500" + }, + { + "href": "./BW24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f52cd328c147475a6e1083291afa564ba8f1d834f05c8368b5b5eb11b8ad5de7" + }, + { + "href": "./BW24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122013d3d28d2fb518e3e54cc0a2409c9ab6e2f0acf59371fb9d8f81361f39534c1e" + }, + { + "href": "./BW24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207331d11dd23ac68b0c24f943512bf74def8b191338ccc05ad020b80f70196965" + }, + { + "href": "./BW24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220442b56dd7df055b3351d5e3fc189d0b0bc89dfd6c2ab198d0de627c261fb9512" + }, + { + "href": "./BW24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e81345c885643a01bf9439b30d7aaa2287bbcfc07e3bd5c7ec97e1f5744f147c" + }, + { + "href": "./BW24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202100c5d9655d2de42cdae04da0dc44256023b68e2651cdcdabb21544a5437702" + }, + { + "href": "./BW24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122063fa0b23ce4a0e0c5f2ebf61cc8711f58d35fe2a22f7f69612f7b75fab0e1341" + }, + { + "href": "./BW24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200d2efdc4f8ec68f131aa99b6f8c52c2fec6c2f89261c02d04fd5f8368b4aa734" + }, + { + "href": "./BW24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db2c1137079b993c37e72c15c3f19d3c2f42143ec4d647f6908d43f274fb6e12" + }, + { + "href": "./BW24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9ebf47a46bdb188835ccef5fda160e9cec97b1b288018ca87a7332e4070822b" + }, + { + "href": "./BW24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e65d442d80d3fb28e4008bf335158cdae162127dfe627a5581de102cd4ad8ed5" + }, + { + "href": "./BW24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a09d1dc8010f72d78aa7be52e588cdc13a1112c2c4370bbd357c4536fbe2e4b1" + }, + { + "href": "./BW24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e88425af19102e175da91ed6d95267640b4d547dfd68e532e9eda514b5a80b69" + }, + { + "href": "./BW25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2d22f60ceead4bb28ee3e5a5e0d92df71fed44e0c34d6cca12fb4eb12dab439" + }, + { + "href": "./BX17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f3e8a64adfda27895c5f18627cb27b707583140b6fac190c90324b4652e3b561" + }, + { + "href": "./BX17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208acee1589c168fad2f254e60aaee7050a569b4b154d2582a12c11b6a0a3a16d6" + }, + { + "href": "./BX17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bb7e94566d0eb865184cf8c28cce9f7671472887fe18bd43e272e351cbc3dd94" + }, + { + "href": "./BX18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f9c8622781b67e21f22ae872c1eaf2f65959dedcb080661dcc3f007cafa450f3" + }, + { + "href": "./BX18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b12c49dd0ac1d13f1c547810a355094d409252b19d12d62a0a0452232f0f0a58" + }, + { + "href": "./BX18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207839e0c0b5d9e7e8a5852f15f82412287e42328642c0cf18a9c3b494c0af227f" + }, + { + "href": "./BX18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b4941a5db9ed9ffe6a13f3f103ed3e91014b95b30aa99c4c51f4d325bf5b2327" + }, + { + "href": "./BX18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209cb8751642b2baadd74b1e101e0ef599c022d2490636a64d516afb613a4dde7b" + }, + { + "href": "./BX18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122024df683c90c1b8b6316cba8160251e6f927a25e52b338cf84ea7fc44a6673f5d" + }, + { + "href": "./BX18_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cff22ec18a28d1ebf0f3f50602b14c1dd248bb8fc066b72eab7b7ea51bed7aab" + }, + { + "href": "./BX18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122088d4b64beb431b3cb2cd062e34decd8b5b9b9dfa50053762bb7499c799269972" + }, + { + "href": "./BX18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d5c4d099fdae621b3797163dd63f5ab9701c36ec30f741bf1f27643c5637008" + }, + { + "href": "./BX18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fa1ef028c17726f03fd83e06e850158f425f4ad0b87e55d7716c3ebf7ed7c8fd" + }, + { + "href": "./BX18_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200f25bf82833e4af29b210042d515d9c6e60eca0af23ec8f274ab80338c08d431" + }, + { + "href": "./BX18_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fc88e3e486e79d3750f7d0bcf3d86c91d156b45462bec41d927b4be752467b2d" + }, + { + "href": "./BX18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d25a6ed7f0a10eb757aea240e14f734d666f53fa1e2d06d4bcb65cfe81afa596" + }, + { + "href": "./BX18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce78f2b6454c08076d325fd00752c9ed4aa58a64ad9a508b8e3220e5a552cd80" + }, + { + "href": "./BX18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122002ef8d72ba73c30a34e4808000511b300287e6a6620b00a9b57fe584b72b4d04" + }, + { + "href": "./BX19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ab78ed57159737dea7aa7009e5305d0bc468191f481db02d113d85421b35b639" + }, + { + "href": "./BX19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220acabd055f1b969ad3775f4b71d72983071a795b81e7b4ce7ad5b8bbe940b379e" + }, + { + "href": "./BX19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b976769434117a1540db4243cd4637bbd0c21f37f72107a547e5797c781d0476" + }, + { + "href": "./BX19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220773c08d6520a8726972c6aac720a4d356f7c35c1fbc48f0dc4c3967c542b612c" + }, + { + "href": "./BX19_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b97b9dddc34892ef221e2514176e7d215beddb57ccebf96f47b148cca1981fc5" + }, + { + "href": "./BX19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d47bbb3f047bb0540fb95af26ec76b15dbad6674512f17185e2cb1a9ea70e19b" + }, + { + "href": "./BX19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220750056a29da9435f2d0ff1e7dd3c1906ebc8ea948d40da54c07f33056bc2f369" + }, + { + "href": "./BX19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207f779c2ec5207eb5b13dd13f30ef68ed9d6e91b52309227f55903e32fb0984e2" + }, + { + "href": "./BX19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b59612f7a2077942686da28c307fce56b0aaa734354460d904084704c97e7a1c" + }, + { + "href": "./BX19_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208587a90a14067f7b510a74c98835a4623da7370d755ebc40e7c4a298b52b05ba" + }, + { + "href": "./BX19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a3cd384b14078076af564ea08f3205370bcf0368bc04b81964781856ac450a60" + }, + { + "href": "./BX19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f54f39234ba0461e8efc2aa40937346268348c723d5fb2f4d11dc748e3c120b4" + }, + { + "href": "./BX19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054ed3fa9d7f892228d4fe48eaba928150540309bd4547ce81cb61109a19bec1c" + }, + { + "href": "./BX19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200009e89d52175ba3f2c81aa8f360aedafd3735178e76bef8af442bc0963a522d" + }, + { + "href": "./BX19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122078e7135f893fd79013e35d102328a57e21a61b3ae05ae3540218b860a7c4a846" + }, + { + "href": "./BX19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122090257488a30debe77f43c23f7c786ab9e0cb544fa2d3775901eba442df372d57" + }, + { + "href": "./BX19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122005004135809797861ae29b21f24b8f2b05ac1a7f207950a6d1b9214ca23069ec" + }, + { + "href": "./BX19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cb56e37a8d7c152a52918df639ee22afb543f9459fe422172a22308ba41ca683" + }, + { + "href": "./BX19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f25767c7e02495682cb809ca5f6a06a729aa11d48255b3149209fc31b1960353" + }, + { + "href": "./BX19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202c142fd95c23d8365a3a143e4ab6dbb1a7623c42850dd8d1d1e58e83009ce9eb" + }, + { + "href": "./BX19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7ec4ee04c8b84d5e82d9e9f2ac9488cf0437cc6613f3340a18bd364eac28141" + }, + { + "href": "./BX19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b900c58be27f5ab84d7b1331b6b3c6ec1243bd1b010580736cbd7d53e348c9ed" + }, + { + "href": "./BX19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122073ff854add161de5af4e448608933d216385a3fb1d72ab85369aae580e173fa3" + }, + { + "href": "./BX19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206a910823f23051d4bb410bb053771409872cc90372bf3d2e9c72fe0385a27075" + }, + { + "href": "./BX19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aff1f3c35e10b4aa33df9a507e68c1384f6c8cb62d929f31697b1fa9e10ec6e8" + }, + { + "href": "./BX20_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e38b7f9817902e7bccae6af7563241847588aa27afb129136f4169445bd12b9d" + }, + { + "href": "./BX20_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122017b777158be00637a5321a62afdd8342c56756596a5a8301ab6752e8e318989f" + }, + { + "href": "./BX20_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203cbe4d69408d459a42a67507627cb919f2b54522a34e4938d1da3298778ef3b5" + }, + { + "href": "./BX20_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220782a0a157b60403cbd73ec259ae0f0c67f32554e4191edf233f4bd0a853208fb" + }, + { + "href": "./BX20_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cfa678fb496f31060d5a83347e2dca71e64440f31b0bf4c4ff3f1271d0dae073" + }, + { + "href": "./BX20_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206434fbdba4b68ba4ae0cbaf3452e39372cc7c29814ab2f787786926b43561a30" + }, + { + "href": "./BX20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220353774f11b968593fe1bc70645e3cd1ef5962d8be3543c5f4fb562165c177508" + }, + { + "href": "./BX20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220539892014c00f3b038e9b72ff7ce947c396cca38fa3284acd6bb7e49595e5219" + }, + { + "href": "./BX20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1aa8a2a4f117ccff2da1467d6cea33145f00df178cd01d898a3cb3d5e6e3322" + }, + { + "href": "./BX20_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122049c1cab0cb5d2810db93684dfca167c2bbcd158dd2bb23b8d2bd5caf5f0371e2" + }, + { + "href": "./BX20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d79e11e0e309137ff3385cb5a1f846268a0d3c973d3defa09211d537e4d4f41" + }, + { + "href": "./BX20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122043ffd0cacedc57fd2f2212ea5736ad95de5537b59ca8c0392993800cdffd34f8" + }, + { + "href": "./BX20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af21387f9271ca8c8ba11de6d0e8af9f9aee3ff1cdf53b31bd2b525b19e7b668" + }, + { + "href": "./BX20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e1f077b233e00e6a22a561e6df03477f32ab3105c49ad80f4a632c52b82e4a65" + }, + { + "href": "./BX20_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204cf1945b678d25839d1a18ae016949d974880573123c2c249265fc4429a57fdf" + }, + { + "href": "./BX20_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fd82c26455caf7fa8263842568de0f9a822d116003a9db1e20486b6cf79b3b7c" + }, + { + "href": "./BX21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202b54ae191cb1cbb23ecbb1ae20b7c88be7a63343abff7977dc282088023b6681" + }, + { + "href": "./BX21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ca10b94533122b90186e4e3c72860ef4b03246f51022e5d0e7e26681770836a8" + }, + { + "href": "./BX21_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122027d77342b1174abaaeaf74426aa27019bae14b390dd88101861e9ed5a9d28cad" + }, + { + "href": "./BX21_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220310402dd06d4f612e5a45f9d0c14aea5ffb502832b45a18bcd42bb0a32453fb1" + }, + { + "href": "./BX21_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c8dbaf3448f7f6817aabc975df3e261021a34c9a65b231ca30107cd0d734214c" + }, + { + "href": "./BX21_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220876f4a56a84a58ad83e688eb66fee4bf728ded1ee89e6bd94f0d2d4a1ffe7899" + }, + { + "href": "./BX21_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032877529bb3e856a1dca48bdc5e670322180a73bead1e4c0f59b71593850d312" + }, + { + "href": "./BX22_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220265c4d3ae5cdead6608d2b73874cce7cc6d11a5bd8ee7508941dee3cc4245db1" + }, + { + "href": "./BX22_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122012a421600aee5cecf9b82bb7451a939623a3d542a0b7af142cbff91aa944ae05" + }, + { + "href": "./BX22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f53255a835268417d52ee36a016aed9a79c22a0ff743ac741aeb6092a34326bb" + }, + { + "href": "./BX22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208d8e5b52a2127217fc220d83e0841e5854db3314beb2f5a29784fb100f266ef2" + }, + { + "href": "./BX23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220893ca42a6c1ad3d6590a5feea988af0fdc2b5552493a5e4aa1dd04260e6b3994" + }, + { + "href": "./BX23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122081d8c9ee431544183273672193f16058bca85ae2ad9e1e2b314ed00d4ea697bf" + }, + { + "href": "./BX23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122094353bb37d3f73199a8a3d49e572594834558766ef4809fc2fa0c53fcd7a1acf" + }, + { + "href": "./BX23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b35daee0beb524732e05141c5daf6f977bba23593a19285a25c2cb86b5db36d7" + }, + { + "href": "./BX23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200995be07b8eedd0af04041e676a9ed1ea33ca6312ac5610e2e4cf0625f89914b" + }, + { + "href": "./BX24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b8a081c583e48eff27e8a746e57e5e29b2bd7ee4556c3c1990bcadfc11d8ef3" + }, + { + "href": "./BX24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122092495c3deac567ccb3ed4adeb66cc69da7a2771cbd00596cff2c22da6283d90b" + }, + { + "href": "./BX24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122021705919544eb4c9f15cb0cc0b53d85cfaae79c78fe7e402a8405c958de3e1fb" + }, + { + "href": "./BX24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220de9368fbf76f108e373e4905f8c22f354614411172ed46c56a4f269a57c460a7" + }, + { + "href": "./BX24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220461efc9040e661b301f5c16ffb1d473161ab120b9b183894cb138bb958b06087" + }, + { + "href": "./BX24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071ae6fb9d56f5c218d90419eb44ccfac438c9bab68fee0804519d92d5425960c" + }, + { + "href": "./BX24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122040761b53fd510b3f0d6af0260a6b2b7d24dde800cddcc352c312c18813bf94d9" + }, + { + "href": "./BX24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ed25623d76224e4058765c57c6bb091506d892ca58074942198b48a8e79bad42" + }, + { + "href": "./BX24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202042988bcbe22108a24ebab4e8908f8a337d4ff3f92415078aa8978c6ac2c455" + }, + { + "href": "./BX24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200b5b39de3a5fce5b6941587cdfdf10076c3ceb413781772bb2957c6225851c4b" + }, + { + "href": "./BX24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c29acf472701090cda57138bec087ac33281adebab2073c52193974567aaa8bf" + }, + { + "href": "./BX24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ed1ec8334c466ba5a658a701504823c676c0d4e7e65c552863713cc0d3cfbd71" + }, + { + "href": "./BX24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208c6c7a5687c58a3b5036cf6b0ab86c0a2b2084c4a41e5fbddd3a233bdce9a305" + }, + { + "href": "./BX24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad6d2db36267391df441680bc577d487f69395ab3cc8c851912352a0999156ce" + }, + { + "href": "./BX25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c2064f21b8ada4941596c68a25d4a33ed112048919d5c6fe5f971751b1a54fe" + }, + { + "href": "./BX25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bf339f1e9ad5382e0b7c051eb2231c4d871c1338a2b6a2beb79dd49dee218488" + }, + { + "href": "./BX25_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a2abb17dca910304d55bcbb55e6cc58cd9a90282e0844152724d8633ec7f7331" + }, + { + "href": "./BX25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e27056853c83fa93f1a09b033c5a24a53b0abaa6832e27f7cdbded934be6a9c" + }, + { + "href": "./BX25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ab1bfd8164f82871c3587ce56a6a384907117f64f344fa37766337a45412f90a" + }, + { + "href": "./BX25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af70f092a36a69d928552b7afa16040878dc7417d4a1b8c92a110e13dc31bf9c" + }, + { + "href": "./BX25_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209f68cb7d05d7040b8f2016a9e8494ebb898b526920fa26782b4f3e1a1815457c" + }, + { + "href": "./BX25_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b2ccde4c0b940367452549b1af29a9a6c354ca4774d59f2e8b8376494c4f9c19" + }, + { + "href": "./BX25_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220399447920a60a8ddbfd4c1128db4137c2c435893af78fec086b5cbdc85b7117c" + }, + { + "href": "./BX25_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208d19e1ca4d33f8617388630bb8ca5cdb5e29e0a52a3e14d2338033a72efd55fd" + }, + { + "href": "./BX25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fafb2ac35448fcb048917e60fd4dcb9d279e1f21d5447bf3630ad7f57e22136c" + }, + { + "href": "./BX25_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122002af17ed7597f6e7e3d03a016d1c93f9e05a501a7e0e1bbc219e38ca98d81ced" + }, + { + "href": "./BY16_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220348c29418928208865019f9b886d7889e080449f72050c54fbc5e35002b044c4" + }, + { + "href": "./BY16_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b8e8bee76f28e801de23f4581b398cefe77d987a93ea45de75bba2c9c5bacd8c" + }, + { + "href": "./BY16_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079fbcdeddf059edc48559ff3efcb7b67ab401be8572577d44c59bf5fdd25ebd4" + }, + { + "href": "./BY16_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e68608546e44a7de8a43cb4c38c4bc023b25492a70e5949897da30190d1ea94e" + }, + { + "href": "./BY16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220da37a309cc3ce9e6572ef4b0fd61ac8c32ddea2c3b06a299ab4ce029501265a5" + }, + { + "href": "./BY16_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fe351e6ebc77ce1f7391f67ab5753962391c563bbffa90c49eed568104073b38" + }, + { + "href": "./BY16_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208bf5767981911985188f636701273f06bada47384bf5c883640d0eca18f95f95" + }, + { + "href": "./BY16_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f129249b574374718d7450b1802e5b40b4877d4fa27ecfbb4ced051771a45d5" + }, + { + "href": "./BY16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e3a4a25484ed6608b9eb56cb3bc28dda1fbd3fa6388d8b027f0d8dc3357e2f04" + }, + { + "href": "./BY16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200e4c58a46885e3d4e1cb39c34dc0f8e88b8c2e7a14c535aea036d766c36ccc1f" + }, + { + "href": "./BY16_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201a7bdc660a4ae1de37cc10a0739cc5a3f481944b325211c452fca639b91752f3" + }, + { + "href": "./BY16_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fba13034d5ee807c585a28b56b7480ffe9dc7da3b4bfaa47ebd61fa78f94265c" + }, + { + "href": "./BY16_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201ab7b572dc23f2449aab4bdefcda11ba2c3586f85aa35aaf09d32a7cf7a11d16" + }, + { + "href": "./BY16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201ef44b8d41309e7a44f3a7a29fffdfbf717c36a5375f40b46ead2dcd653720e9" + }, + { + "href": "./BY16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cfab7a4dc78bcb88d57beb26266661287e3ccc1bd90eab5d822c748ce67506c7" + }, + { + "href": "./BY16_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205cfa6a30e43d495f81af3c5284adbc31fe904abdfa4e7f92329ba44bcb35bb0e" + }, + { + "href": "./BY16_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206b93497e6657d527f83914dcab87ae55ab1938dc9b63fceb84bac625e2ec85a3" + }, + { + "href": "./BY16_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220419dbe828a011858dbd5c4f651713df101a0201e308d5b4df9ba65b468e3e958" + }, + { + "href": "./BY16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bc1daa61e5dd81fd57a72824a3770e4b4996a78056684550beb2732c4ab4b538" + }, + { + "href": "./BY16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b8b22cca6b4e51714c556278ebb9c682f6c0238235aca207597f4e26bb39cf00" + }, + { + "href": "./BY17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e09990299ed83cf6b22962fb11c05dc4482515c2049b79331539e20934a1032" + }, + { + "href": "./BY17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122086ec4ed6fa63223bbf27546ccaf86c3e38ce0c35b383b79cd30481996c5be88c" + }, + { + "href": "./BY17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201db8118d46dcd35811cd4bf641641832a865f865750ddb4c4344b7b133449709" + }, + { + "href": "./BY17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b055783d80f070b7c405a526f6075fe2bd38dcaed88112821ef733c62b6fbb7a" + }, + { + "href": "./BY17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e43bc5e5ff1fd97c83c3bc3fcba6fb42551a76dc7003cff4c69f7e4032414963" + }, + { + "href": "./BY17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200f33d7fb0f17975cf01c7d67f7a741b90aa3e0c85f2e92dfeebf4dac0ebbb15c" + }, + { + "href": "./BY17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220121ef20eea5055d3aea842b0b6a4eac7ca9751e8dc7f498aff1f74f712d026c8" + }, + { + "href": "./BY17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e472e93b2deae1816a85557f0362712986b2239d50430b32461e74311cd3f1d8" + }, + { + "href": "./BY17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220418355db1c71284a23458a56d0079567aa1438f97c4a23cfe7f1b40cb9ba2aee" + }, + { + "href": "./BY17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a73e8badbd83194d985768c0bf82fef82e1dd3650148013b273020636c3b6c1" + }, + { + "href": "./BY17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ba91cdffe350635e1d1143b362b3baed0618be59fa99536e69683d9af62057f3" + }, + { + "href": "./BY17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202c3a09cbac320c5448a8e05bd9c773fa516489fb155ad4be92a776dbd9583a56" + }, + { + "href": "./BY17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209000404118eae72bf7247401aaaad36f09f41b97bb234e2289b4f90583d73cb7" + }, + { + "href": "./BY17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af86607e1d7401498bc5ae50aeb568550bd61b94a4130b09f1d308448da8487c" + }, + { + "href": "./BY17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207abe0a36d90a233b23410adf404e7ea3c29647c8a44cf0d12b799e94e1e1b8d3" + }, + { + "href": "./BY17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d98f6c06f3dbfc5ddc06a9d8d8f680bf37772432c0e2d0d0451716a4754beeb4" + }, + { + "href": "./BY17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200b852ea05f6c3925ab92cb07a6ed6a83d4b59301e18cc1f3ed1c5849fe1f55fe" + }, + { + "href": "./BY17_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220efc848e8297efcac6efb2b09f27db464f143bc50afcf361f5c161807ae1a69df" + }, + { + "href": "./BY17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204908089065ad280463700ed7dd48130ff29dde908f667c9d0b1bb3e7b55ec87c" + }, + { + "href": "./BY18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208d882cbe59f660f3ac4453f9db8f5e21337ba904964d964f9409e6733e3a61a1" + }, + { + "href": "./BY18_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220464474ba0a1ba1806e61f976c560d0de878a0800f2305b1c49febd6ae832ca3e" + }, + { + "href": "./BY18_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200583d1c95fd31f217710fcf2e1c319dd64b8c4455179e3b466097ef3ba05735f" + }, + { + "href": "./BY18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200d75905738e4c870f206a485abfbedd1a693ebfceda4cb603d1111ff86142050" + }, + { + "href": "./BY18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205bab5ae7390dce2985257feb84315c9d31a53489efc4e2d65d9bd9855d33a1d9" + }, + { + "href": "./BY18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d07f8c81af2208fe0a9bed634de78db5a991aee2c38685ca0d467ab3d62f8ba6" + }, + { + "href": "./BY18_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aedec9f9a100128b0d4ce400b85b2e25dcc48d0e2182f6bf0331eaa855237119" + }, + { + "href": "./BY18_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d75ba2e65f23527343253a0c5926f14365bf7002923a2b10fa32f1d030a8755f" + }, + { + "href": "./BY18_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206cd53635ce8765d09655fc195f0d4343388e3744ba9280b44b92c0f05666efce" + }, + { + "href": "./BY18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bee4b2af5f6dc466eb40b8093fd1877188dcdce622bc34356cc87627758e160c" + }, + { + "href": "./BY18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220865c7a3801d4e61601df571bc51b4031f9545e07318ceec21e64ea6850cd16d0" + }, + { + "href": "./BY18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea68b2168321e4943cc989c9ad3051d59cd04bc573b6fa9e09d2bb009f6fe422" + }, + { + "href": "./BY18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122064b7f044581e945e4c3284b887e5fb3417e75fe271f4eec59ab6a9deb88ad15e" + }, + { + "href": "./BY18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b6e3e05d9b8ebc24332425e9b12fa319b1eed0856970fc3187512ffebdfa660d" + }, + { + "href": "./BY18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220790b5d1568063183ce4a85f293e7bd225e4e1451ad19d6c4004595e7445d73b9" + }, + { + "href": "./BY18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c175a1315d19e2af328ebd384c9254d98c8afc2f2f4602af34986c7301e79d25" + }, + { + "href": "./BY18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122052d8d80a690d15297b7be30f0ac308ddbdc2dc2dbc3a60911ac69ce745e0df50" + }, + { + "href": "./BY18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207289dffa9f37f5bc25b16d1b0e0d109ba1da967279a5425104ede39f38faa7ec" + }, + { + "href": "./BY18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200dd68e47f3c5a93cc06b61dade95cf78a1a951fed408dc36d08c4b720c9f7003" + }, + { + "href": "./BY18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d477146521c2075889ae4ebfe7f5360edbcce206e3f5de964cd9cfc3dee26abc" + }, + { + "href": "./BY18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202931e4ee7d1b8def08ecc71164543ddcbecf2f41dafd6a238fe7fe20c543c24d" + }, + { + "href": "./BY18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dd0f77304aee8d20ea76993d166a9b8c31b8445f0b085de8a2a431bb0fb6a13d" + }, + { + "href": "./BY19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200e0701bc48877cc4e3d2ef8563645008ffcc774fcba64bd58110fbd73258a472" + }, + { + "href": "./BY19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220081c8fc74e128c5349b5cde02791837c8f618b6f65488d84ba87417ee60409cf" + }, + { + "href": "./BY19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122033ab4eb77e5086976d2e2a7d4366745852e51f8eb9e705ce3387dfb5aa9aa934" + }, + { + "href": "./BY19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122012691a16403e194ca3358d3ae99a65620617c76228428671a27706e467874b85" + }, + { + "href": "./BY19_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce1c922d17597ba27b9a61f6cd000fd48e6f2425006e10df2dd4d679f9484913" + }, + { + "href": "./BY19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f14f2b55e8deb42e7a94d3b831102dc5b5f27742e2ecd6f7d2454b65e0019d32" + }, + { + "href": "./BY19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203678a0dde20cf64e4a2d70221d3d198353a4db5100bd40238f1279fef06fc433" + }, + { + "href": "./BY19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208f482f7634b5a71ad9cd754d48bfdca98d7a145240f5e54b98d145ba337fe5d3" + }, + { + "href": "./BY19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c9685e011206df743dc7b1b1eaf36a0306a3fde330e2a60c1cab05fc66fedc4a" + }, + { + "href": "./BY19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122057fdd0152f5573a6a4c60255382e511ba9f6f312eaeaa240b42bb482bd21e524" + }, + { + "href": "./BY19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d2290fe777cf808834770cd3fb0596c8c3efcd86d8e746971c07cf79ca9d6095" + }, + { + "href": "./BY19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c7e4ec06f042ab8636e4b75a5a4ac95b1fea3e01ef3ba1fb854ef1fc30ad803d" + }, + { + "href": "./BY19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208af01cff94ea36c720675d0a74829f7f5bfe0ad6fa058890244d65d3ca0640cb" + }, + { + "href": "./BY19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f513311395088ad0a0d8e8be5e263e835dfead93ee6d710bc9dbc4d5659e824" + }, + { + "href": "./BY19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087e97688d3b9b85f1c712acd1e9740ae0e4c8360c57c84363f097f1f1579cec2" + }, + { + "href": "./BY19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f23155238b7e5e36ee28b64f9771ba6f6a38c9fdafc4325e7620ef032dcca4f" + }, + { + "href": "./BY19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a6bbd4d70ccfb6263f5010c7700bc14cbac7aa2e92b507dbacd47603ee1cb973" + }, + { + "href": "./BY19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122080e73b06c1455d7600443c7a36fb5dee69b0c13b72fa3c5f005113aee4e03b8f" + }, + { + "href": "./BY19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201256012792076f1e32880350afc3fdebdee0e8843309b478b81781c06ef0ae47" + }, + { + "href": "./BY20_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209ec4b74deb727f6cb6e439f0ebbc65e51e01f1defcc65140aaaea16ad0d5323e" + }, + { + "href": "./BY21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122034433101aac14e8abe08c02788e58ac44b091ca6e178dedc12ed0a6ffb7d79eb" + }, + { + "href": "./BY21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202b47775798af8a172b7086554d67f139f23ab001a7385d1dd3307c87e5c3d0fd" + }, + { + "href": "./BY21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e00adabc2804897b1dcd4a791cdcba8ba1a11888343d4f7aef0b793901fe6158" + }, + { + "href": "./BY21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bd57a2c11695ae5e6b23350480e7fe7ea39162e25e81502bfc886734da061a55" + }, + { + "href": "./BY21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff32f84785e5f40bfae876581d5027c73596223d6ef4f99a8f55d3611b4ddcaa" + }, + { + "href": "./BY22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c19d4b5f80f9950f1b89b7dad1c24c7173ac6bff5ac3e7a836601de58dd29482" + }, + { + "href": "./BY22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a13919804f034b0976af8c2dfd514e4fba3a939189daafc3a8ccfad26320082" + }, + { + "href": "./BY22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122036696bd52568f5cf8d9c3cf4088f830c41e2924d1c8faa05dda9353bd8094cf1" + }, + { + "href": "./BY22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122059ba3a6ada120a35b2c33f7570b96b07fcc93d6228c05681c649df91d38e7b13" + }, + { + "href": "./BY22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200394102d5b4746ca8bb36054b66ed471b2aacd1211881532a9731cff32a0bf25" + }, + { + "href": "./BY22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a7f62a1fbd88d7426dc014942bcc4e959930994c234affc25bd91220e09d5c6d" + }, + { + "href": "./BY22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201b74b70b40c40f2605ed93838f47305c93b3d7e614629e9dc5932fcb98627bfb" + }, + { + "href": "./BY22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122017244b20b5fb9505811b6e1fa4bda7e26b385d62c4b6138a7d59fcca0372eddf" + }, + { + "href": "./BY23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b3a99bbf6833605fb6b4a1e46f53d13ca83acf92eb0121220a1db2f11821c37" + }, + { + "href": "./BY23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a4a933149786dcf1de9690c7ddd15ff8d8ab917be97d5e6bb5bd94201482db6b" + }, + { + "href": "./BY23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b66fcd1a91c65a20ec729d897bfcaec29ffabbfd4777457d99336a677fcb3251" + }, + { + "href": "./BY23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202847a5b9051f768def5433a40d7707543fd53be7c1101e83ac25ecc410430ef9" + }, + { + "href": "./BY23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202999dcdf3e6d9517d07075e47b12c96d850def7b7dd5f474a32a60433b20331f" + }, + { + "href": "./BY23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a6660f9711607a56ec3275909b8eef0bfe09cd6390b72ceefacee9bce9965267" + }, + { + "href": "./BY24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e381fee0cb6fb3c9d5e5283a74567bfabcb46071344c24f9cf0851e665b66bb4" + }, + { + "href": "./BY24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e0848adea940cae41086666aecd352c604f9b540f517d739029d826499a01eb6" + }, + { + "href": "./BY24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122064fa12a5d875a37ef94dc77030612bc92dbbe8a90044873d99cbb3ac5be74a41" + }, + { + "href": "./BY24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207e454c65acbb052dee1d958d8888374165fce9e20fc36add16c0dfd44af4672f" + }, + { + "href": "./BY24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201f9913076c4ab2074fbfb118de918437080a270101d707f161480272e3d35fd6" + }, + { + "href": "./BY24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b4ca98b9364cc7e6fef382c5bff6ee7c4291f4ef3ad55947355fc8fb7f4912f" + }, + { + "href": "./BY24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122031359755bb85d1884d713caf26b5b906e8e2f04fccf4a04b0f172a2658baac88" + }, + { + "href": "./BY24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ba90f60aa82c27be59abfc7c9cae084fa9d586d13b340e0536ce48a4a6cbde0" + }, + { + "href": "./BY24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d97b89afcdbf16944803d067c655702f3bfddc46c7367df5719c3706d30878e5" + }, + { + "href": "./BY25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cb6d5e0c475a31e533d71daa4932781a5c956d4a426ec1dc1fcc54ba85d0fb42" + }, + { + "href": "./BY25_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cc7ea5a113597f3835a846e2d97cdd970e3ff4e6430e54d311bca489fbcdca7a" + }, + { + "href": "./BY25_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220286739a9a2f5caeb2349144e53ee11b03a019d40abfebaa0615eeb4a33395603" + }, + { + "href": "./BY25_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e92072f0a01c8addf768e96097035120d75d8125beead43675ae7d9274b66b75" + }, + { + "href": "./BY25_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122046894e4bcc53f3575570d8112bdfc4c114594a70a3f656ba856c44ba39e7caa4" + }, + { + "href": "./BY25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb68e1936789ed44af6bab06d2b2a87f86c194dc2e01ae6f372252a202d532b3" + }, + { + "href": "./BY25_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f2e52326344376329fa4129ccd9408b617e43ca0039ad5919c83ab099188f83e" + }, + { + "href": "./BY25_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bf75073d821788e027da7de8815765e9da68875fb8f4231788abcff7fdf11e59" + }, + { + "href": "./BY25_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220439ba7987af1d920ef4ca06ff5bf57df9e1cf9c20ac08b0e9ff73fb2a0662838" + }, + { + "href": "./BY25_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220663df2767c6d95d1ea9d60defb3c3ae7a6749770c4d820278cd9e7db71ae2104" + }, + { + "href": "./BY25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202d132af19884729ef7bb229ace3d9ce3ea8f8f24b27cc2dce021d5a087515d5c" + }, + { + "href": "./BY25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203d946c660b7aed660e64fbf6160e81bebf849bfaeda6cb018e91334b351fadb7" + }, + { + "href": "./BZ13_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202d50aa6437fc18f4ce1e69be700c8854015ddfbb9bb84ab9ac7b6eeddacdae4d" + }, + { + "href": "./BZ14_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e17ab7297e9165497ebd82e39004e23db35e371315b810a1181a898b7f8c29ae" + }, + { + "href": "./BZ14_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122034fa2269dbf0f213ab8e54d8cb1c9bb75c59640bec38aa93fdd00c359835827f" + }, + { + "href": "./BZ14_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220749f214457850aa74bc73c0048897b1885226411cc420e67f03bcce38b69f8b1" + }, + { + "href": "./BZ14_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae7483fca96f10eec70bea5006692aac30c3b16d5594b0c4f056c0047c3232ee" + }, + { + "href": "./BZ14_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bd88f80349402eb9ce644ebe5e197a28dba2d8c42a69ff57569e066baaa5444c" + }, + { + "href": "./BZ14_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e55ea7f133d377483d85b65c2893d82f056f62fc14f9e59df92f76d0853fbb3c" + }, + { + "href": "./BZ14_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203015622b5589714a8e56c9ef4cb2cdeb8e418072310a2d8b919fca718b84d783" + }, + { + "href": "./BZ14_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e4807ff65b2ce007a0697a390d4028015eaecaad8ac966d885c479959bb4bc8f" + }, + { + "href": "./BZ14_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201a6789f374945aba3a41154f23562f4859df5f7235bca5bd9bac11399a4dcde7" + }, + { + "href": "./BZ14_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122043eb861a673bea7b09549cfabd0b9f0fc8bc59bee233107c883e6582758734be" + }, + { + "href": "./BZ14_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204aba9186d158118a03dc1d504ae328a891aef39b9587116944ff028f2d3af1ee" + }, + { + "href": "./BZ14_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122019c0c1c25e80d0507f6d31cd7573635cd9be7b1397cf85ca4288396e524d9c1c" + }, + { + "href": "./BZ14_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dacaf51b8be5dacc0b18ec740495831ab872b8f662e2e06866acef746ed54955" + }, + { + "href": "./BZ14_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202098c449a9204e83b52e576cf187e3e0748c28a0f15539e242a10b712fc49263" + }, + { + "href": "./BZ14_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac5a0b6475201b59e02dc6b7c924cc34c41d5da51aad016780f183401e35b115" + }, + { + "href": "./BZ14_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220396ba3a5977d6a269e65a92ed907cbf333e94a25634a60f79ab5c4801e689eea" + }, + { + "href": "./BZ14_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220697a57f12ea5cf7da6e001bfa09245be45550c2dbafa1f3c2d89b7921ffb7d10" + }, + { + "href": "./BZ14_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085d0128916b0f1be2b2fa4e5f320caf7d584b9f678eb677d530f2013afc43303" + }, + { + "href": "./BZ14_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b88b038a2134006cfce74856e93b53b0f9fd3fc2e3bab82b703d6007c92bad20" + }, + { + "href": "./BZ14_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220341f3e734a97dbf7a042292a21fc2e6804ad89f8f9e3f9e3285bd86b1c350fa5" + }, + { + "href": "./BZ15_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206af2e3f62668e5f4cc44e73a37f5563144b184d9b5f65fddb9ca7666b6ff5ac7" + }, + { + "href": "./BZ15_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7bf299db20c7abbd222be51d450644e5eb5265fcf263cf46222fce15ba3e11e" + }, + { + "href": "./BZ15_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122030bc3aa252062934305bec7e1fd36dd2382945d6420dc1ce1f034fab8c819a8d" + }, + { + "href": "./BZ15_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f9a6e96c7f0de56411291357cf2966927062d427fe72a5333104a444ed107fb1" + }, + { + "href": "./BZ15_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d052017f95508761fd2ee5743e111457a9cff150a91c083e255ae1da250ceefe" + }, + { + "href": "./BZ15_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202334487742279e25bafcb0c524c42fb7f8607a75bf7bcebb03214eda6150fd84" + }, + { + "href": "./BZ15_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a50bb01bd074cb003b38ded7b2d8d8e61ecde4a292ba58ebf32a9f497c70b71e" + }, + { + "href": "./BZ15_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a500a7ff99c59a2fe64c281e518af36c31bc22341b98b736496c98a7a847e8d8" + }, + { + "href": "./BZ15_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122052cb152f36098040db97a955a9c1219ac86338448f092e264eb9768e81cd8d05" + }, + { + "href": "./BZ15_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b18cc9f7bb3ccba2b7f4eb62f449a0bd3bcf6879af28ce44d276389f7acc6a89" + }, + { + "href": "./BZ15_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f5bdb26916cd9a0d2ebbb9ca01445d0b35bec1e806a811ac87601d3dbe5464cd" + }, + { + "href": "./BZ15_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220835469740a8f427e284a07b4c57cf4ad3c3b3f4ac047f4cc0f24b907b9fa6fcd" + }, + { + "href": "./BZ15_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a827506b8c4cb8e15d238a032501e0db11e9bf5bdd782253cfd81558c403a020" + }, + { + "href": "./BZ15_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203598d2a8a991e8f084cf59e9581d6a4727dbd67ff575d167b5a08f358ed9bc83" + }, + { + "href": "./BZ15_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bef48fedc582d33c29c7569e3d01d9a61093694718938a11a55802ceded01381" + }, + { + "href": "./BZ15_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122062dcc469d7859c2722d4801aa3e10e21a75d19514742a62ac1507cd00bb272e8" + }, + { + "href": "./BZ16_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204939258973e646b2ecff1febf44690b2b1d7292a30bea11f103eff7c4b356569" + }, + { + "href": "./BZ16_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122051a95edefdfea408123cc7f6f80d4e65223a26e25b7400a3dc6ecdff50974788" + }, + { + "href": "./BZ16_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122062c5e1101fee9e2a2e197e58fc9cc8f4fafbaa420cd179c2e459d24639fe5e23" + }, + { + "href": "./BZ16_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d10c2691032874ff598f7d053b8c060faf61ee9516255cc02825be4a730b5321" + }, + { + "href": "./BZ16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d1777ce05eaae60b39990b839c4ceb4a82ad28f65222740b6da70730b6c59104" + }, + { + "href": "./BZ16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122094ee40c9f1b1640fe64526adc9f05c8c2c540f22d2e24002c498c0dbda942c14" + }, + { + "href": "./BZ16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204611e0fe999dcae7df418657c345bbe15853192d30bf30d6ab4ec54237f49a56" + }, + { + "href": "./BZ16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122046c481dfbb881343c4f8ed436c5d31b44bf57cff7b9ba3d98732f64df8b3378f" + }, + { + "href": "./BZ16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202fbe9d33a2dbc0ccfd15bad919b59723d4c5b805af4f07779401f76693de83b6" + }, + { + "href": "./BZ16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220baf2d1273137e4be4e801edd91ba8d3c4e854ec7b35443cd0bc03f9ebca6bb81" + }, + { + "href": "./BZ16_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b8e416ec12a8e586af020e0b1a07e4fd822341f8584959639324359c74641fba" + }, + { + "href": "./BZ16_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f4b8732635314bfae30fb8d56a747ebdfe5ec57d17a332a94fbee4ecf1b3f0fb" + }, + { + "href": "./BZ16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122045cb6545365b1c1fe2cd14db078e90f6f641a4bafc734d8a68deaefb852e2553" + }, + { + "href": "./BZ16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ca6c2956989872c5f88b8e7d41ac8265881312b0c1585a77b16b47e8bdf7edd" + }, + { + "href": "./BZ17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b33bf3ca3b0b9736e41cb0ea499ed257f1ac0a49b675c44bbffabb2309c26ed7" + }, + { + "href": "./BZ17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067e2e6b67b283effdf98d4c592eb70c3dc9ae5469989d35b3f7b26a2c0bb43e2" + }, + { + "href": "./BZ17_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201ceb581ac4abcfd9483aeef382a166ab355b0128dccc7e0d68f707122699d723" + }, + { + "href": "./BZ17_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1dfc5ba7f1a059805af7130ec7d72231d7d1bd755a6af456c1b8c6c33d5e72a" + }, + { + "href": "./BZ17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220320896b039f96c7f0c51288789daab737c7fc778e1c2ee51764b39f7247f408a" + }, + { + "href": "./BZ17_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f893d39801c6c658c388559a2a609025134437e042d54456c47267b8ac85d873" + }, + { + "href": "./BZ17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fca282ee5c4390de107a45cb0601fddc58d88191c79074c1102055aa04522050" + }, + { + "href": "./BZ17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bf04020415abf8074c59d0b93a97e8d100d4127029964a5310cc8ef99e525554" + }, + { + "href": "./BZ17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205df91a08ba1b9202d3803e8f12b9d2f64985895e642fd315a64c5e4336368ae3" + }, + { + "href": "./BZ17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208705cd1a98772bbf3617704ed18e2563d8548c64c22a4ab1c9631e09f8fc6c80" + }, + { + "href": "./BZ17_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204482c7bdf20a389e7c8347a88873bc3c1a57332b20362d19202383a98053bc4c" + }, + { + "href": "./BZ17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e1718314c5c8eb72d02fba073d48f8e42bf5da88c614b67179aeb96daa54406" + }, + { + "href": "./BZ17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206c4780585c84730bf9c93f6ff214ee8e4397958db5c7e9c7111ea9b8772e3270" + }, + { + "href": "./BZ17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220043f1f7c927402331f2fc086cbcddb50c89bea11c5c1b5b3b2f1f85a3819e39d" + }, + { + "href": "./BZ17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205f983adad7c7f05bfd70f3c65514a800fca617c208d989861ba31a36b88693f2" + }, + { + "href": "./BZ17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c8dacd35a34d4568996d3fed9f2a10955b96c3135d1df8e5f0208d45d05a7c9d" + }, + { + "href": "./BZ17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209ce077bae2c91b20db5f13aa35d63a80f5ddf0842d940741961781e7a7ad6bcf" + }, + { + "href": "./BZ17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220779315026148990318fb89387ebd127251bc5ca564dc004dfdbff27a635002dd" + }, + { + "href": "./BZ17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209a6f727e8117a2eb6ed708783776bb0c90de7db1408a2e3e7c6b8003681c25ca" + }, + { + "href": "./BZ17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206772fbc78f242d4bd126cc12948a2d4931f42b1dde54bc07df6c508b550094b3" + }, + { + "href": "./BZ17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122095dc46dbd06b45d50ee58a0491da725b2c4281d3952574fa6365c22d11924cf8" + }, + { + "href": "./BZ17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209ffe70c1f12b208839690bfb7a18e5fc66a7a6b4f2e5512c0e637138eb1b6669" + }, + { + "href": "./BZ17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a7f5acf7f53962624a5bac2ab1dd6ea46c6b29696196c6f58e15b6d2f7112b62" + }, + { + "href": "./BZ17_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201a37db2d513c0ce622fbd611152f5300cb37716f0ec0afe2a6a4a61df56519ae" + }, + { + "href": "./BZ17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122027cb3280c312826fb4bb4a4d93a83feec06659074520df9b79bb387f7f58d184" + }, + { + "href": "./BZ18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079bf3cceb33d88bc2270a3497372a21e16b22977d9e28a1a8c73592272cc8d80" + }, + { + "href": "./BZ18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205cff9b07538994e24580ddc8de69de6ba674a2e1358ec2ed9d60aa00147db9f9" + }, + { + "href": "./BZ18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a23c383f004e342352c4de78f1f6b97c536b1509624ab7d89a8f149bcfd41eec" + }, + { + "href": "./BZ18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d45f82fb6b561e9971fbd150d30220c3cfd64a50a4032682bafdc8e17c145c4a" + }, + { + "href": "./BZ18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2f5157fcdb2d916113219d6377273d63e1237c2af288e0713e05ee51024fcf7" + }, + { + "href": "./BZ18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b24d23cdd0336c2c9c19ba37803a484412fcaf04bfa916a9a22122c51e61c9e3" + }, + { + "href": "./BZ18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204d95b5bd0b66717ed4bef46fcc117adbe57c5e710451919f532ce32c0aadef82" + }, + { + "href": "./BZ18_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201f14bae6b4aea659947714da7428e273b70fd4d455127e5feb6c91c83783b8bd" + }, + { + "href": "./BZ18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a34037725b0c4cfde523c4bb33b593da671bcef98f837c837fa0a15ecc70476" + }, + { + "href": "./BZ18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201e2fb579be83d856df28254c73636e7eae29d99ca23008bed1e4ff77ffd45b61" + }, + { + "href": "./BZ18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122036a88c86eaa99e1631dfa8a7df2ca0a56cb57b60ab47b96c0e89b04bcbbe07cd" + }, + { + "href": "./BZ18_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203456f90cafc9a10cc2ec1635e768a881bc8f585b0b1dee8823ad7d266a322beb" + }, + { + "href": "./BZ18_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b7001d2c85f51fc25d1077e38dfe84c2af70bec0d12cfdf47d14d902e942e116" + }, + { + "href": "./BZ18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220537a776879bfc7e79a7e2801b9461d209d34dfc57164445cb3bbea3e8e3c05d9" + }, + { + "href": "./BZ18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220adf9c87dc8ffaeb7d360659bb5665ed610b05769e4d8dd26932af44c789f3912" + }, + { + "href": "./BZ18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220327857a2b83f813a4440cc6607b2663d786cc3f4e4b2873f34775e05b6853b63" + }, + { + "href": "./BZ19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b0cbea0c907b615d0db6b217c25dcaec0d32a968043a82ca3448ab5e50f5445" + }, + { + "href": "./BZ19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d4d5217b8a0a69efe11a862669a09932d0f4e9389f818fb153067c3a222c4ee5" + }, + { + "href": "./BZ19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204649b02bf3af9ef0aa2dae9b45e01e8186ecb0469f86380b76e549f1893c3ffb" + }, + { + "href": "./BZ19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d28425e6ca1b7f26f8eb1c506f5518f8a689715083c1e48b3d7fa8c5d50b81f4" + }, + { + "href": "./BZ19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220194e57b999b3145bac102ab76f7fa59afb837d26112e70d24929ea386027f4d6" + }, + { + "href": "./BZ19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b3b0550d4cb39bccc04d1f98725f2bf5c3e40c293efacb43269a94c1d988b99" + }, + { + "href": "./BZ19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eb590c520bd379f528a0f4c230099f1d69aac69e7607ffed0420cdb7593a77d4" + }, + { + "href": "./BZ19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d4251b301407d015793760cc827d680787d8a81de611d523b88e3fda36761cd2" + }, + { + "href": "./BZ19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122083b0b5e8b4f7cf84f287cfec5c7b4fd301ad1e2814d24b4bb5e2c970f4f45d8a" + }, + { + "href": "./BZ19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f073ba728dd7268e85c54783d159252035f41cf786dffc1cd97666292461a8d0" + }, + { + "href": "./BZ19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e80556e2c6e507aa941954485afa933873134d24192dc993b7a8b2573786081" + }, + { + "href": "./BZ19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d5c3bb058f6e348d4099c55e4ba1a14f9aa068cdc9efd3221452dd71d7bf0a1d" + }, + { + "href": "./BZ19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220926cecf5475631a1f9300f9edbc36628aedb3156200069cad30f754dfd53b49b" + }, + { + "href": "./BZ19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206db33f17beaf349fc8db4c7073df6d23ec6df7cbe0496d998fd53f9a80fd5f66" + }, + { + "href": "./BZ19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cd8e72f86a255a68866e193c15657058dfd36c329c9757684ab4b40c58f69b9f" + }, + { + "href": "./BZ19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad8bf1f4196130efe6808e6a32a8cf438e9b57614b5e152bfcce9638d2c98d69" + }, + { + "href": "./BZ19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207c9c91876877a4855081bb822572e056f12546a2061ace31081c3a09945400d3" + }, + { + "href": "./BZ19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067ccb985b7c37fb470084cf635e31399a42b8b5c624aabc7d9d98da912796809" + }, + { + "href": "./BZ19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f4c6b036b505eb6d61559d77c0fb9624d80af9a74bb5cc13128baacf7e4a55a" + }, + { + "href": "./BZ20_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208957fd36d495a85c0537095dd53338b98c2cc8126dbe0ebd14d5df282b16b438" + }, + { + "href": "./BZ20_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204d3c3189bc964bbff683ea746d6c109920346b3a3eeb3287d3a618d385d8d511" + }, + { + "href": "./BZ20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d5be0ff3528552350760f348f36a87220248a21840749c74a66d554acf9bdb7" + }, + { + "href": "./BZ20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122095e6187bddf2f5ed2d2a81c0bd6f9cfebfa6041c6cf04df91be32cb5406d7f3e" + }, + { + "href": "./BZ20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122033df0f77ab4de9e742acef3a47b5c6af76b27a9e8ad6d4718d869a1ba120024a" + }, + { + "href": "./BZ20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bcca4572f54e319b797ff3c1518e169dd9ec5237858ad7fba10a568b31a6418b" + }, + { + "href": "./BZ20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201fd1a63aa3814858eb1effd3818346f5855c0709a76825fdd4ff0d8e35823d53" + }, + { + "href": "./BZ20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a9d9857774d1ffc69628309cc25f854f9b1cdce45a2ccba78b0ebd3d767fbd2f" + }, + { + "href": "./BZ20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae23f4d9541f662a48ee0e308affa603cfe7475f17e9bca2ddf9d8f426fedd58" + }, + { + "href": "./BZ21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220590ce1e16801d9c4115128e5782a3822ba10a710f646c5f8aef7970860543bcd" + }, + { + "href": "./BZ21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aa0dde227b1429fae733bad36e78bb2244c930af50f5c84f1ddb9b441d11b48d" + }, + { + "href": "./CA14_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122006c1eb2bc52391d32bf1dc7501b9d1b1817645cada84c465167062d5f349f009" + }, + { + "href": "./CA14_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204a653719dafe0d6e0b1f413ed5d3f51cca8bd5cdfb8358d518cdb5553573e12f" + }, + { + "href": "./CA14_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220851ec0bca3db3d4ab86c68e102f51d055e3c4eea573a0446901ad6550647f7ee" + }, + { + "href": "./CA14_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085c1358506894ebd7fbf66603ad38243c71c48dea3d8ddbd7ef2b284b6e4b157" + }, + { + "href": "./CA14_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122091ecfaf2febccfa291afe1d263af7a6fdee749747ff25c09c92409a3e9e0a74a" + }, + { + "href": "./CA14_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206ddc1f75ccc192d4a89aef0b22e7d1505c4410546332c02533c5c4d99b50fbe4" + }, + { + "href": "./CA14_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bd25f6eff4d5fd4e51072ba37704bb3ac2d52fa84601a3bb34f0db7ecf008c80" + }, + { + "href": "./CA14_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206cd87a38643192bfa90ce1e927f7d0a63ad7e0b4aec5016fd523d25e20c85c5c" + }, + { + "href": "./CA14_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202dc26b28d82ca054e8b4bcf4584a21f88a9e8254917d57b6b3aaedbe584b944c" + }, + { + "href": "./CA14_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f2f744285a6b3b7bed045d39c17ac752ac30ce5ffa61a6cff042a8c1c4305be1" + }, + { + "href": "./CA14_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122004a94d884829d5a49376d1ea8a02a674c4188f0260216bcc03f40993a339d11f" + }, + { + "href": "./CA14_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122014ea1d18df8a77a2d438dac6431c84e42b5331563889de8d79198ec8c3b29223" + }, + { + "href": "./CA14_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122051ffdd654e02a789e5c285da33ae96fe1eaec18adcd8bd550432b1e22fd1ae1a" + }, + { + "href": "./CA14_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a282845d9be1c1725a65b8086bb607aa6b65629142e5fe4d8137ef68525b0ceb" + }, + { + "href": "./CA14_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208fb88586e60c3e4348828397a109142185ef161c5ab1c8c0016a0c60666f9d1a" + }, + { + "href": "./CA14_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204cc89c59ce1a0cd241dab6b6088570021259b6f57d0fa5457adc0940926935e7" + }, + { + "href": "./CA14_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c3c360466b4cabaacf1f81c9cb19510b55282f551d8888d93e5a59218b1948a8" + }, + { + "href": "./CA14_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206b3a6fa00033937adf4824e5c325d397f708e4b7f2cc51d1c171cc8751febeb5" + }, + { + "href": "./CA14_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b12d59fbdf6762dc0f4bb0918555060b68d7dbcaf970a1b70bc5ec670e5fe4d1" + }, + { + "href": "./CA14_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb8bc4f768fe6101a197e7456e0b0ad7fd31e360f188f2e543dfc10d4c4cb425" + }, + { + "href": "./CA15_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cae211594e8a525b5da61066b3b6203cd8301335cccef8c2bdac0ba4b3dd2548" + }, + { + "href": "./CA15_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220067cf23d516950b325bc76f778744abd8cdbcec0ebe377b1204852c648ced5cd" + }, + { + "href": "./CA15_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202c53b6089d88c794d0bd804d74f35a454703afec43351c9453b5419521fa02a9" + }, + { + "href": "./CA15_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a363b760cfeecaac561cf1ca407b0d9fedb8b21c5ac28903bb29735b34c1569" + }, + { + "href": "./CA15_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d96c44721df6746586755ed46e3e5d12a0f88fa2482615ca64c7c1d757db80b6" + }, + { + "href": "./CA15_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220870ce608cfb85a04795eb4ef9c30404caa07a575be9ca47caaf741d998927270" + }, + { + "href": "./CA15_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206c7b47273d623acd5e55424206097cd6ee170d64ee397d9282cc92ad5c9e090b" + }, + { + "href": "./CA15_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208763d43c5595a4fb94ae40e2975462cf13b196bf12ae618f556929f99dc1bd05" + }, + { + "href": "./CA15_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a34ec01b9f8dfd7c2ccacfeb6526380911b918ac621b4c01dedfa3c460f319d" + }, + { + "href": "./CA15_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122036affeecdfeb9c5d77b8a1634ae1733a5369a2522d2e93193e33c664cdc045f0" + }, + { + "href": "./CA15_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122003be25fae24acf861288f0fa47823f52af5931207fdfac7a88bd742959a68fed" + }, + { + "href": "./CA15_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203130d27e7fb67d4ab07c3c62370a2730339d4d83088caa96ad9f0b4c1b0cac17" + }, + { + "href": "./CA15_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122043d0db0fa8d2dea4aa49cac21323211c0b639ad4bc5e1e7c5043e57828856a73" + }, + { + "href": "./CA15_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122017c59987dc42fca32874be620c3dcc586941afe4c3cbc4a6e23e8733223b87c7" + }, + { + "href": "./CA15_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220760c08bad5dfeb2aa152df3b6f70baa864f7750c0b18ce5c786e4aef09fa1e94" + }, + { + "href": "./CA15_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fdfe85602e3803cc9be54429c902278f5b400ce2ed4b21882accf3331fbabf68" + }, + { + "href": "./CA15_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122073df44afb4c7f58d3239f1b5a318708b6ba8adf8a32efe9c9d7aa6fdd8f594f9" + }, + { + "href": "./CA15_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207044ea2520f4f83bf03bb93a1d8a802a130ced8cc7881164aaa58251110b5f73" + }, + { + "href": "./CA15_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e26fd47106bdd0595e0ced1ddc485b48f4f8039dc15f50f5604c422b7011f53" + }, + { + "href": "./CA15_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068e574b1e8263f2637f1157e617288594f665cc430193113382fc8cf7ac7d4d7" + }, + { + "href": "./CA15_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204e6e3fdf6c22b3b5437f49d7faa0fb3abffa6aa903f6b86f9186e72f19a9a115" + }, + { + "href": "./CA15_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207fb6d154306ce551bc539f66f2f3e52081c70e3b913227adff1f8b72e636cfb5" + }, + { + "href": "./CA15_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220870f56d4a534f532a45aa38ad761857b233b024011d1f165eaa5371a8591afb0" + }, + { + "href": "./CA15_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200262c928b205f42c8325caf15535bd90a2356de0c1bc720b8202883bdee4131b" + }, + { + "href": "./CA15_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b8747281f758777ade08fbf92e08a2865c8cb8f58e51c8bc162ea617d6e1c79d" + }, + { + "href": "./CA16_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e5aa5d54fe43f704574b8e88a8276a02d5b3cbfaa3c94ad55c225ddb0ff599d6" + }, + { + "href": "./CA16_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a7be92e5d3c0feefa93143e7944ae727584e58832e3f73ac508bc8686ba7c495" + }, + { + "href": "./CA16_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cf4bc73960504344243e37616cbac9d3c344c4a66b977e9938664d93ebaf2ca5" + }, + { + "href": "./CA16_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b7dff7f085a7edc4381e7c24051d039c1ee9f8473663ff4d54dd244d36390a81" + }, + { + "href": "./CA16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202cb813e2c8a9e89cbc1b9ec3eaf4aa0f7f02dd356131222941bfabb76bb08ad8" + }, + { + "href": "./CA16_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cba7e34d51308aa5eb7c01058c856dd3f40a29d67a25d495b165fbf772a478a0" + }, + { + "href": "./CA16_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ee740e1cb503b5e628503eaeb2c6a450e4f6f2a5b697a99a0e582db4a5a7be78" + }, + { + "href": "./CA16_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220297d141744b90a21aeb36e5e94a6fb9517480afcd767589e4f207c41801a4836" + }, + { + "href": "./CA16_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea6a7bd8431708edbfab7734675190334657c52df9d5f868a3fb8232e2d2f6cb" + }, + { + "href": "./CA16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209b5805b51e1a3c1b38f91469b44e8bb8d05394a27877b74ae80a4e5ba275b736" + }, + { + "href": "./CA16_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205d2ad9d05254f3dd6a850c06b7c065ea77f92f2ef585172ff7fe9899aca8cfa4" + }, + { + "href": "./CA16_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bdf2fae0883d05638b5d175753afe4587a6d50c12edf71b7626ff45c61b3230f" + }, + { + "href": "./CA16_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fa202e4dc8b14d69988ed14fcd327abc6a6e491aa504d194e0aab89f8b61f45a" + }, + { + "href": "./CA16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220460cc17e80afd65c866a088336f5a61776f2ef29e6c8faaf3380fba3f72e931a" + }, + { + "href": "./CA16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e54f6ab27215291689b58d3252c86f844fa2fb6097afd823f29e662090156a0" + }, + { + "href": "./CA16_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202ba00c475a4f9e6b1e661c22fd840663aaa057c1335f8912e641392a71e671e3" + }, + { + "href": "./CA16_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220acd75cd52de9722113f7d181a013c651f7c7507820ae2774e3c154675f32bba7" + }, + { + "href": "./CA16_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a7422fb74a4f6af16fc6db002499f46d4441e8c13496fe2dead5d7f42330006" + }, + { + "href": "./CA16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e138b3b61156991e00202c6e33d91b0bc51e08f17157225bcf33bfb743696409" + }, + { + "href": "./CA16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206868ed0ed904c992b8bf79b53cdace2b55933e820af1a3f37218a07030290508" + }, + { + "href": "./CA16_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fe3c026073ec2e339b23441d6df3632b30ecafa33e6dde360860a7ed895eab16" + }, + { + "href": "./CA16_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bbeafe6e2471d5c8eeaf9304ba3f429336bd76c4599533bf47da4c96be44e569" + }, + { + "href": "./CA16_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122027c3dc349766c7c0df624608f897f8354a0efb88d9fb2bc1d1f22411601981bb" + }, + { + "href": "./CA16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a1e57fc7d06401332336fb9dd629799675bd32e8ed06be48f1fcd397d43ef544" + }, + { + "href": "./CA16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122073077735ad9f82f46c473379788006fbab2103f351969a54f5799ae08addcb3d" + }, + { + "href": "./CA17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220390bdab04c2062a3ee18eadcdc8d7e18fb79cd4f597f3ad8dc0f66ea2781c52e" + }, + { + "href": "./CA17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bcc970a29fa9fc16fed4f08a0ee2f1510d66625372d08fa30c9e8e7534d8758a" + }, + { + "href": "./CA17_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a47e0c178a35ae02be8857882587ad7cc6dfd62a90132783c1ac774d5a9e43a" + }, + { + "href": "./CA17_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fa13fa6523067eccda27bc8750561c899f69d42e9f6b312f4a56b525be213e77" + }, + { + "href": "./CA17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220860f48dd04bec3ba39aa338f8f0b84e7637cdf775d548917634b480dddeb48df" + }, + { + "href": "./CA17_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e911fe23f2942e4da3e1da14b6effe95f190b53894bc05410d027cae23c091a" + }, + { + "href": "./CA17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122045639b962582037eb11d370b53fc8403ac1c39f7ccbbbd80d8143feeb1649250" + }, + { + "href": "./CA17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae26fe3f9fb02191408577b32b9d273a225b351a2d71b415940712571621a78c" + }, + { + "href": "./CA17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d7a375fe5b8e362a3677cdc816d47e2096c31a6c5422d69b6809fb4a376f4cd0" + }, + { + "href": "./CA17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205da629c16850b2c210feb3687b368203bb2055acf43a705adc4f33050702407b" + }, + { + "href": "./CA17_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c258e5b2661a6d87474c049913889976a3ed219eaae571eb9b03479ee2438699" + }, + { + "href": "./CA17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206bc08ccd1688a9c4b01a4fe09c30ff4345823c486a02d8f94b652ddd367f9f33" + }, + { + "href": "./CA17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209c188e5d022c29665c44cd96561cf61247a2efe176b02558339fd9815f176e39" + }, + { + "href": "./CA17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122063b917e7db8edf08318f9358bfb94df9797c3598a68a0cdd9a0486ce43cc96e3" + }, + { + "href": "./CA17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208745b1539f35befc4383d65c860ae9d4335f69a9ad6114ecae74fdda7f0028ff" + }, + { + "href": "./CA17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203589be19fd4e4dacfda4a0962b8264d26a21ffacc8ecc3b29f406a01e1e20c01" + }, + { + "href": "./CA17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220301f8358c82d5afffcd24fa18773863a61aab4c0d256e7837fd3504824c31e22" + }, + { + "href": "./CA17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2b0204743ce4f3f5a5f006be492f5f3a0a20a8c2a50eb3dca09250638038e25" + }, + { + "href": "./CA17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e789b1dc81f33d8ba18112c67bee1e688f2428424a341edb2932417aaff9e88a" + }, + { + "href": "./CA17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a87d80c0b9eba42aca2bc7ca14a5426c25927264bfdcbbcfc9745ddcb9dab225" + }, + { + "href": "./CA17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fa9b4ffe1c3dd90b90b313cb257f2988b29ebe56e12e12f9620c16b71f592f4e" + }, + { + "href": "./CA17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220381f7ce55c6a470b0ecfc5e9eabd5548f6f9bfc773325dd313a59dcbb005c939" + }, + { + "href": "./CA17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e8a1bd7e345712067fd8ccda55cf4aafe5796955c9a4b24e85dc817e47bc919d" + }, + { + "href": "./CA17_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fef0fa28e01814a4531875b3d10938837306079fb7c5992404cf64ab70df796a" + }, + { + "href": "./CA17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c7e29f416bd16089457e063425aa7c3489fd8fd08ced2c6c446a24834ddc4c2d" + }, + { + "href": "./CA18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122064cbcd4c7a78274207bd174bab2101a7184cf83693f4fb7cf732d55fd2b8c83b" + }, + { + "href": "./CA18_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122015dfe6f379c4da0d111b6e84b93820a9264ebf7f304830d64c8522b15f53d28d" + }, + { + "href": "./CA18_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d1af4b30561c3a5cd32ae177072b7db15c4453a9e9c528219f6568aa41302f9a" + }, + { + "href": "./CA18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c8f1ae3a49b91dedf4019897282bd7c6ac94cbe9b8eab06dec75cae0911ee0d4" + }, + { + "href": "./CA18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079bca33463026b00afc37ed638b183a39f644cf918e414927afe2047ebd7a19f" + }, + { + "href": "./CA18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203bdc36f303edf295335af7fc7e3c549f034452319c7f26abc20f35551d169e1b" + }, + { + "href": "./CA18_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122099739e86dfb66272acd460a9c1d9d5f1214d5b924089b41088c8a68ffd601601" + }, + { + "href": "./CA18_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205ec7effd2f4193e8e9064b13f5e376e0ae9713d409424214b5240f87ef8c12f8" + }, + { + "href": "./CA18_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207978ee1391572c876f321a37bf2bce493b0c652a64e7347b030e00f44b308ad0" + }, + { + "href": "./CA18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c5c450ea9a92aa05c77c19b2a8b4312d1c603b88b1e9edb51a0a50a07ab05460" + }, + { + "href": "./CA18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122010cbd2868d64338109c4aa4c300ba0e549335abc2a6ba73893f9d907a07ca091" + }, + { + "href": "./CA18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220442314d13de445e6274f0770ae114a3027ebc6f3c907a3a5da5bcd0251be5b48" + }, + { + "href": "./CA18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122007e39ee6e0175ea27097ff49fc9d6a01e575ceeb1e0b7ae7fb87637695f48990" + }, + { + "href": "./CA18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220983b426fb1870f5ac7be3a13eb1a0d8ed1330be830a8f052ada82b55e98b6a1b" + }, + { + "href": "./CA18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f885596331499a7683c70947e23ad54ccef3b74bb0a28d11bf1f5049b2de1e48" + }, + { + "href": "./CA18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a863f2173ae0e237259c3474d30f7f6f51fb24f5d786065643fb5a911377b215" + }, + { + "href": "./CA18_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9b4ee366342a00a08c7cab8a81f5bdf2699d84450f9ba402a30ecd3bc33c481" + }, + { + "href": "./CA18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220173ec244a87e0e610b05c63fbad06f156fcd6a5a53033f5b80b885559dfa6b98" + }, + { + "href": "./CA18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206883446946729a3ba63141d68a8351decf0fcd054a4ecb7ff1a46894f9e179ab" + }, + { + "href": "./CA18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122047d31f983f379432cdb65e25666bc4300f4cb694b5a6b6bff6f6998ccbd0b601" + }, + { + "href": "./CA18_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122059a8ff4645aeea0971420b58755ad74cdb3ee4018572777dc2a0375385002042" + }, + { + "href": "./CA18_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205199cea701b23c2e68fee1b83bd4213ae44d91bc5b8b23f94f719c02192000e5" + }, + { + "href": "./CA18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2c23f40014db28a8a24e4b2a7a4928bd38627513814e184b7b531f929c14622" + }, + { + "href": "./CA18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208ffefccd1f1322f8e69ed508275342e9f3ee7a2e6dadcf1f5364b22584d6b36a" + }, + { + "href": "./CA18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e3e03e379bc1a583dd4c4b162c482176252bceb5e13ef48b199e99202d434b9e" + }, + { + "href": "./CA19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122037783904cada2d975bc5d51c22c5b2d99c30c5131e7b30610836555e6ea15a04" + }, + { + "href": "./CA19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220290891c8439ea832c9291fc9aafa08da137c461342dbacb90358840457ff7510" + }, + { + "href": "./CA19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207810f5d0583d438e13989db62a2369980aea04a56a985428844291e597cd6c4f" + }, + { + "href": "./CA19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db7d41832ba37ade73ab5961e103f7fd7470399422b11411d9727e51f8924d61" + }, + { + "href": "./CA19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122083ea34453328180a90f5d7e00c559dd2065ef7a57fff1abba3e9b40d9c23867d" + }, + { + "href": "./CA19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c53a48a8f6cdead9c0d2215332d739f4f70d01bcb8931af66a5fa1f36499b42a" + }, + { + "href": "./CA19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220586e39eaf953ef67da195356a530ae7932a0e78a2819d47dac3b4de8f68091ab" + }, + { + "href": "./CA19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220300eb442636ead0dcde3e668875ee735a7f542e3918ccf5ccfb94b07b2ec438b" + }, + { + "href": "./CA19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122061030a56248cc6824937279a427b5726a0e7c29173ced2dc0c221da6938ae061" + }, + { + "href": "./CA19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220360d2789c9e3afdbe41d430f7229166272c7a8c29181c49500a8f8a5767be964" + }, + { + "href": "./CA19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fddbdd183e1148d9bf54780f8dbf8aab8d5527fef8ef592b0170ee55a28daf7e" + }, + { + "href": "./CA19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220687e589f4398ec2020f81f322b4a94d92e6d5b56f6893ddb4102f43c0379f2b0" + }, + { + "href": "./CA19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dfc61901a536d001d186921853fe4927acb57fd666393ed076dad3a1a138f6e6" + }, + { + "href": "./CA19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b497a714a74c6f0e555e445dbd372778fd5d1aa29abafb75f15f712c19917585" + }, + { + "href": "./CA19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cb50e9f0b9e5778280e403dcdab53c6276fe88d2f593635fa8bc2fbb5bf50407" + }, + { + "href": "./CA19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122030c42c1fefa567a04f93b598c22fc2d254de857b85bd54bdbdef990e1264d4cc" + }, + { + "href": "./CB15_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067253c268f231fb512641c193117f5f49c57c11a2feb61734f0f8ab5d246d28f" + }, + { + "href": "./CB15_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ffe4c1561c3dd361c6bad571d69e227cbd72cb8d66ab36a5b91fceb29ee965c4" + }, + { + "href": "./CB15_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e875c0b3c8864d754fdeafac7a05d7be4146e7dc3486e8046a3ed44bf6abf35" + }, + { + "href": "./CB15_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a4ff30577cff4bc1323e3baab8bda7e0679c5ddaa337e0d26e55aa73ccc6b210" + }, + { + "href": "./CB15_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce7a4214a6a5965e57200113bd9e17709adab8b62b21ece700f2729c6a5cb653" + }, + { + "href": "./CB15_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c8f663bd6e9f5e733666a5642eb41562480d4686390b52569fb43acc8a39d827" + }, + { + "href": "./CB15_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122038e61e7416e1f875df8311c195fb3cc560a22960043ccc86b8c2f5ab7fb3f7cb" + }, + { + "href": "./CB15_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fdad78dfd61e84090474c60c8e84dc119e4b1660a06f4e54a8dea157b667b6a5" + }, + { + "href": "./CB15_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e6b17f8aed18d28050ed057aca2a81c4ab7e23314adea492c17112a714d708f9" + }, + { + "href": "./CB16_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220137e2cb9a9214aa938caf2eeee02976db901c24c808ef99e3fb271725fe25e26" + }, + { + "href": "./CB16_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f0a2b384cbc084418b63fe295934fe07ccb14a06888888ad9a0724f67f0b09e" + }, + { + "href": "./CB16_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d30f95ab5730935e916154e9e968f9cc8555169c3a28ae8af22b587bd5372b3" + }, + { + "href": "./CB16_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209043c19ef74706e376261eb54e41176f83e5566d25ce1d7d7a3ef3efb2f8bc4b" + }, + { + "href": "./CB16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220112bf71e0ddb50b42fa03e3060b67303a119163ae540d453a4587e07efb3e43d" + }, + { + "href": "./CB16_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d14e766de337df188f9736d23f83237de98e2c3bab1bc6477c2c1493b3692dfc" + }, + { + "href": "./CB16_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c4904ce3403deec332baf3d8702f645f433ddc67583b4ff0476575e0a76a1dfe" + }, + { + "href": "./CB16_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a49069b340b4141852c462716b9065a56661034c12068fcda8bb74a3603f1026" + }, + { + "href": "./CB16_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a1d9dc9921652f59ed57e663287bdac67634d83b19a551c3d0cbc3a81ac1c296" + }, + { + "href": "./CB16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aceee159e4a8b1806929c863c12f4dbcc9d5a9e4bb94d8c7e4221f7ccf752189" + }, + { + "href": "./CB16_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122052cba91db8bd02e7e5230ed28022a48f1b299afbe6da589ad54d6f98b94b4eca" + }, + { + "href": "./CB16_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e5dc39235a042698e1cdbae18571822044a870ec1eae6cc3ccd5f9c63bb7389b" + }, + { + "href": "./CB16_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209d832e19fb4fb532115361d8754501e0174c4bda4508d69707c673cb126b7c33" + }, + { + "href": "./CB16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220509b897600c41c627f9d2ce35d8de38f84d4c274d0e9623d8e466ce3c4a7d0fa" + }, + { + "href": "./CB16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b6f07c85a8878633bbf0fab1eb7683c25f32b701c1f51deb728dc32bcb6c5cad" + }, + { + "href": "./CB16_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e12b3784a779d68159c46e3dc31244da8aac1a266f3262fca06490ccc20ee42d" + }, + { + "href": "./CB16_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220759c2a4caeb34ca719167c331369afaba23d5346f44f892e4a0c01b52f914639" + }, + { + "href": "./CB16_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079cddf32320f356b35a13cb3e70a1c67e7e9400c05efbcb99e7c04069a4c93c7" + }, + { + "href": "./CB16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209196214305a69fe28f19fe5d9d46622d5ab59ccfcb449b107560f4dac1916417" + }, + { + "href": "./CB16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c35776d896620d4fd420ebb03775b87f673c1c5af52e14194876e2486529e424" + }, + { + "href": "./CB16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208d9e03590af18b99c6039f795916395d1dfb29a8a609b3f237ca5913403e1b06" + }, + { + "href": "./CB16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fab2c8aabaea79a6b8c599bbced66b2dc006d7d43df9f0f94dd5bcecd77d4e99" + }, + { + "href": "./CB17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122049387f640ed6761baf21ac6dd9da314fa401528b22587be51cbcb3267aba01e3" + }, + { + "href": "./CB17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122027752e6f6401b35b5d4b8b518dc9aad8fa76600e2d0dd84e537ddf2958fdf7bd" + }, + { + "href": "./CB17_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220abc5d690ba89e4ea0719f4c243f091ec5d7c4496107f3dfe05b25d4562f1b4f1" + }, + { + "href": "./CB17_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d5f88c1e97f0a840c95badfb13d8fe92e456b06f48a6542512b490c9c4efbbb5" + }, + { + "href": "./CB17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200becf0a77c47f8eefdd7ae1f0993f7147ee99be11a61f70086c4255b1999f771" + }, + { + "href": "./CB17_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220883d3c6acbfe9d25766b68d7b9378ef70c2d8008edfd47f9623089c282c94b45" + }, + { + "href": "./CB17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e7c9ad4c4d576e830307ccdbca9253314bd6ae6b093b4a170f8cf722df0c73f9" + }, + { + "href": "./CB17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122045e31cb26e351c3b62abf7b765e92f03d4194728667b0b5251d52e688b504d5c" + }, + { + "href": "./CB17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122061cbf6f111c1bbd708fd51305a532aeedf68bcc55cabf6ea93cc5eb8f491a433" + }, + { + "href": "./CB17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c1470f7c1879501924d3a9d9ff14b9dffd2cef269ca92d4ba209c8f18f3dbf1" + }, + { + "href": "./CB17_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207bce32d282430d9787367ea595cb5576b4993c52aeca4d51f0810764ded5fc8a" + }, + { + "href": "./CB17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122014d185e5afc3af68124241dfab3e595d7a01e7ede19b8d381b2efb8e7c04f3a8" + }, + { + "href": "./CB17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200c9ce919e4f5d4d652a5f972e0acf58ce626f994e02dd31dcfa000b17ae85960" + }, + { + "href": "./CB17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b303f13468a80eba6ada1b1f0392efc084e7bfa71ac8ac09825abf7b4d957b77" + }, + { + "href": "./CB17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204fe369ff2afad732bc2479de2256f4cc963509e4a4a5334de10278ae0a5ef553" + }, + { + "href": "./CB17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202d71b60bfa474a47e6af86fc6cc872f0d4dc999e2db3cf78ee29831e525b24fb" + }, + { + "href": "./CB17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202ace039e3a461eac88b0ac1b578240e7415fb6078ae1079459ab94ad8fff5a81" + }, + { + "href": "./CB17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122000424ce0972ebf2070bee476bf3c9035dbf6dae4871a90c936a5ef2200d378ed" + }, + { + "href": "./CB17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204198fe2e3b7fafab612661b7e7911a4f44e93ba6f2c874eb36f2b217c2e91879" + }, + { + "href": "./CB17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122035465d4fd0b507d1a150a7187e59e46d20520fdfd565331f14c39c386d1ba8f3" + }, + { + "href": "./CB17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122035dc8fe7d794861a5218de58eee5a7fd6fbddc0b388b0aa0d51771e43524c156" + }, + { + "href": "./CB17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122009828707167cd4533ab36f21f58af68ac2ff36f52cf91bedfc64a3847925f1da" + }, + { + "href": "./CB17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122051ae2b7fcb8e460db7775fc5541b73f523849ca39646fb82da166a0814051f2b" + }, + { + "href": "./CB18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a4608fe1ed2fb6da75510e080a7146c9d1080b63c6726cbe6463a8ccac57f892" + }, + { + "href": "./CB18_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207e62e18edcd7149069a3836e9d8e70ebfa0c163e0613fb41d8a86d82c8c9306f" + }, + { + "href": "./CB18_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c551cc5f4344521b92c4763c19a23e44c5243bf5a631768f3ac9f8f6af6fddcd" + }, + { + "href": "./CB18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220295757681e6bc2d5810ffbf4d2fb3e05f2848a715e52e89497c28eb3c7d496fe" + }, + { + "href": "./CB18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e0702d9469fccb392c45eb6f59bfcd1ce812276c76cac5da4f46034681d625c7" + }, + { + "href": "./CB18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071c0b835d994590bde781d25e5b6a136af79fbbac1cb814f005ed34f392c3900" + }, + { + "href": "./CB18_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d1dcb1b59b54d510b73dcb371a6930dfe3714a81d4a28679e549cb88b52735d1" + }, + { + "href": "./CB18_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203caf0a45213b59e53dd0506366ea4a7a121d1713375197bc13b67143ad62288e" + }, + { + "href": "./CB18_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122076032ce4a13bc509de0b5696cb0e617abde9e02d2e607ab10914a33078c00faf" + }, + { + "href": "./CB18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a0f5e645ee287c28f521d19cddb4ea8204eb8da412fab631fc4f13651c70c88" + }, + { + "href": "./CB18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a759c1b03d06f909ad874fbc86eb5d6fd02f501e20736b257b5e152c8c069afd" + }, + { + "href": "./CB18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208147a7a6e0c34a27cb5b7a6ab3b629eaf91af8baf7f6a53f2b2562bdad408be6" + }, + { + "href": "./CB18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220606a38cd78b904de7b539c4529140dffc00b2ff71bc35028881162cb58e0be1e" + }, + { + "href": "./CB18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220275c314b0643069b0a321e30fadf32a54efcff8a62fc4980012020daddbc10cb" + }, + { + "href": "./CB18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204764679d11c26c84567164c1c109c29ea4047b85690afae3586480860128c61a" + }, + { + "href": "./CB19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b46c752f3666254d1918523acecd8c0b53fd278d05f2fe9a7153167e4c1bef45" + }, + { + "href": "./CB19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a358419216973700fd7bce9ca4f81555362b5bb8966d82d28344374f0d306454" + }, + { + "href": "./CB19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220abc3bb10b9b29ae606aa94207832fb9f0be71d164b3bfd3422acf05fe8e788a1" + }, + { + "href": "./CB19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e431cd2c7e310d5e0f90de7778dabc5e89014667ec477fb1053ab8e1e792d6b4" + }, + { + "href": "./CB19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122051662d8eefd17301cf3d3499696ef4923c56927f8c7cb27e55263abdfd2b2ba1" + }, + { + "href": "./CB19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122081d091d94c80214744628a0a32a563433de48a5c64e44c3a1ad4f4df52336d2b" + }, + { + "href": "./CB19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c060e8e63355e7716b2b9949cdad12da510c2b13b5ff400499f1668c6e867ab8" + }, + { + "href": "./CB19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bc4821906a907175e88316e44ef4c8cfb7d4e8609207598dfedbae298b0b2da9" + }, + { + "href": "./CB19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ddcc3def385b1062ea8002c9d929b30735a5c291ba928b637386044132a3efa9" + }, + { + "href": "./CC16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209182f5fea12a89c001589208539c81d76863cffa0425781160872759c4a62508" + }, + { + "href": "./CC17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054897eec9a91b83f8204926cc934cc4eae0e5bdac1a10fc7eb529bd7a9f04777" + }, + { + "href": "./CC17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b45dd8ae84862b8cc40ed6fd7b81f1c11763dac0e75b5bbce6253daf75b94442" + } ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], - "linz:lifecycle": "completed", + "linz:lifecycle": "ongoing", "linz:geospatial_category": "dsm", "linz:region": "canterbury", "linz:security_classification": "unclassified", + "created": "2024-09-16T23:45:44Z", + "updated": "2024-09-16T23:45:44Z", "extent": { - "spatial": { "bbox": [[170.1504557, -45.1015354, 174.0724206, -41.8817418]] }, - "temporal": { "interval": [["2020-04-30T12:00:00Z", "2023-02-03T11:00:00Z"]] } + "spatial": { "bbox": [[169.4839839, -45.1015354, 174.0724206, -41.8817418]] }, + "temporal": { "interval": [["2020-04-30T12:00:00Z", "2023-04-27T12:00:00Z"]] } }, "assets": { "capture_area": { @@ -796,8 +6742,8 @@ "title": "Capture area", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "1220084c80e9fb9e75c2c5778c20aa1b72ec52f9d359c060cccbc4a1ebf3b2097c24", - "file:size": 107330 + "file:checksum": "122098efb60103ecf74f84e1d192007e624cfcc63f917935b1cf0624623b12284cb6", + "file:size": 131656 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From bbeb347953f0c2f0ef03dccb37778e8e8b94697a Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:16:23 +1200 Subject: [PATCH 298/309] feat: import Canterbury LiDAR 1m DEM (2020-2023) - Draft LI-1553 (#304) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-43.5015645,171.8125066,z7?style=16-es-canterbury-2020-dem-msv86&tileMatrix=NZTM2000Quad&debug&config=5LN3whfVkKeLNsVzLzcXYshHpHvKjwN5vfjfk84WAn9mPSznQuvRWz4Qmo3J5MAaqvKKE9tupcF5zB9X5eAjkxhAHN7AfHkCB6VCo5rpuftHA5AE4NKEzcZpgdpYtevVaoJtEqr4jfHcqh16wSFMxM6HntP2LzKMgxe7SCWSEUf8j6YAzvj1w9JLAMFZz3C7s) **ODR destination path:** `s3://nz-elevation/canterbury/canterbury_2020-2023/dem_1m/2193/` --- ...QRJG560KWTF0Q8YKRY1ER69-1726530399899.yaml | 8 + .../dem_1m/2193/collection.json | 7486 +++++++++++++++-- 2 files changed, 6724 insertions(+), 770 deletions(-) create mode 100644 publish-odr-parameters/01HQRJG560KWTF0Q8YKRY1ER69-1726530399899.yaml diff --git a/publish-odr-parameters/01HQRJG560KWTF0Q8YKRY1ER69-1726530399899.yaml b/publish-odr-parameters/01HQRJG560KWTF0Q8YKRY1ER69-1726530399899.yaml new file mode 100644 index 00000000..8fd0d8d7 --- /dev/null +++ b/publish-odr-parameters/01HQRJG560KWTF0Q8YKRY1ER69-1726530399899.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-09/16-es-canterbury-2020-dem-msv86/flat/", + "target": "s3://nz-elevation/canterbury/canterbury_2020-2023/dem_1m/2193/", + "ticket": "LI-1553", + "copy_option": "--force", + "region": "canterbury", + "flatten": "false" +} \ No newline at end of file diff --git a/stac/canterbury/canterbury_2020-2023/dem_1m/2193/collection.json b/stac/canterbury/canterbury_2020-2023/dem_1m/2193/collection.json index 647e049d..6550906e 100644 --- a/stac/canterbury/canterbury_2020-2023/dem_1m/2193/collection.json +++ b/stac/canterbury/canterbury_2020-2023/dem_1m/2193/collection.json @@ -2,7 +2,7 @@ "type": "Collection", "stac_version": "1.0.0", "id": "01HQRJG560KWTF0Q8YKRY1ER69", - "title": "Canterbury LiDAR 1m DEM (2020-2023)", + "title": "Canterbury LiDAR 1m DEM (2020-2023) - Draft", "description": "Digital Elevation Model within the Canterbury region captured in 2020-2023.", "license": "CC-BY-4.0", "links": [ @@ -12,783 +12,6729 @@ "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BS27_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BS28_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BS29_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BT25_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BT25_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BT25_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BT25_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BT26_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BT27_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BT28_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BU25_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BU26_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BU27_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BU27_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BU27_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BU27_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BU27_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BU27_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BV22_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BV22_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BV22_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BV23_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BV24_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BV25_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BV26_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BW19_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BW20_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BW21_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BW25_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BX17_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BX17_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BX17_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BX18_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BX19_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BX20_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BX21_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BX21_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BX21_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BX21_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BX21_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BX22_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BX25_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BY16_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BY17_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BY18_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BY19_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BY20_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BY21_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BY21_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BY21_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BY21_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BY21_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BY22_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BY23_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BY23_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY23_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY24_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BY25_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ16_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ17_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ18_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ19_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ20_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ21_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./BZ21_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CA16_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CA17_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CA18_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CA19_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CB16_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CB17_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CC16_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CC17_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CC17_10000_0102.json", "type": "application/json" } + { + "href": "./BS24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054a6787fd489ede66af4cf3280a10a59ae98306d0f7bf43c3d5b9782429125b2" + }, + { + "href": "./BS24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b605a13a3e5cab5a6bd73b7959b1f16a8a1eb53db7f4c9e90347dc01be1a7272" + }, + { + "href": "./BS27_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054e1f1936cc57de7e816b0b77c22b3d9cbcf5793a9900185dde18e87e5e541bb" + }, + { + "href": "./BS27_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087eb5dba33af64b283706bf827fab99db73a780b27a57a997aba56f1cb71627e" + }, + { + "href": "./BS27_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209dc974bfbd12a514f0a100466ba2ff7952a5a31806e6cbe51f119efe33048ab4" + }, + { + "href": "./BS27_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cdd8ccf01bf1eff51bd314a4dde93b4eb0664b49cddb7207d7c4038a07216dc6" + }, + { + "href": "./BS27_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122001373d17ebcb5233bdbaadb54d42a718e4415723b0c711ae2cdcef74942f7b9b" + }, + { + "href": "./BS27_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a038620e4e3bc477398bb3a98c3cc573fd604a72e807d23345be7eb8a6a4f369" + }, + { + "href": "./BS27_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b320c067fd4e551f3a49bfee375756532f74615b14956ef42679bb8bafd2e7ab" + }, + { + "href": "./BS27_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200eef660a2304c38c8f328b1a71a164f7d1c1c3b4cd86510bdb7b123ec43015b2" + }, + { + "href": "./BS27_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a5c053947bfddb074085c9e7888ec51766f648f8eb3eb3bb09776fed63ed763" + }, + { + "href": "./BS27_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122091aab06f989564faac73d47772ba8e908d00dd98a4219fdac7481a8c029de5c7" + }, + { + "href": "./BS27_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e02bebd65051a769e5d88c275550615fb24edbb1a69ad6bca6a81915b4c8cc7" + }, + { + "href": "./BS27_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220733bce593377d77e8406114eeac23be261504cb0abf9602fe00d82c86d9dbb7d" + }, + { + "href": "./BS27_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f0cb30f62c5a662d5157ce6765fd3578e19a93df0a8a6a75e7419f3e6caa2568" + }, + { + "href": "./BS28_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d660880d739d2eda3ecdb4ef012d61c0b0aa91deda04f9d2e8a123ff28fc1f87" + }, + { + "href": "./BS28_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d6addd383a94a4e002532b862093207a61879b9f88d2569a1f9e005386e25773" + }, + { + "href": "./BS28_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220abb47e8c3b7f3a557e1eadfe76c8e86f5696eb0be66c3c18870af1d1b9ea39e1" + }, + { + "href": "./BS28_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209659f86a8484618417db1c7a9d8d9ae37fff4bcf92be3c546b3b7f2d693c7cca" + }, + { + "href": "./BS28_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200b682a3ee24651d60ead6a122dce1aab25cc5c3f7222a1a52cf0e28fc530b435" + }, + { + "href": "./BS28_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206003d1acfe989b43e2c5db47f9170f28b147eb9925948fc84fb82b3f72ba3b28" + }, + { + "href": "./BS28_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dadbe217515cdb51129529832553b9d2bf02f7f03f96fa78f9b8670ab4f67705" + }, + { + "href": "./BS28_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ef02c6b6e661486335cd86e27e3a56cbd2aded844395a9d36c4102971cc4b47b" + }, + { + "href": "./BS28_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071f896df22242d868120625632978d4deeebe5d68c41a4d603a53928b31175b9" + }, + { + "href": "./BS28_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220efcea2d6063aa7fe4c300cfd6f55431b0ffefbffaca03e414295ca02573b2215" + }, + { + "href": "./BS28_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207796359dbb1454c280f9581371e2f893c7f6578c68a079a8bee10bae67f74854" + }, + { + "href": "./BS28_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200cae5f8a78d20a4abcc6ff1509aa16af120c29b49a2fbaac5bd2445d783053c1" + }, + { + "href": "./BS28_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122004345f8211a87267659214e7e9b2a985d2f58c9a5bd77ef7a039635b098e3236" + }, + { + "href": "./BS28_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a481687e4689f4c4c2a1479021688cb9a1690e737c01fd9af7bd2bc2665a1acc" + }, + { + "href": "./BS28_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220505b1f6d9249995cee7b1177017294089c4868a65eeb2013b91ea323729d2f49" + }, + { + "href": "./BS28_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206d489553bb855667ad2cb0ff7ba54a6d2398e3d8b98285907cee30383e80c19c" + }, + { + "href": "./BS28_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b71d2b481e3f356d2095960ebddfe956ec980cd725f376c764850c6095fbdc00" + }, + { + "href": "./BS28_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122022d62c73d2e168b6f3fc8ad250726181a3632fc6625e2c076fb9001f6ff33213" + }, + { + "href": "./BS29_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204181ce0df69654b7d607bbda77d7b9139b0d8d514accf67abb347e7f506ecf65" + }, + { + "href": "./BS29_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122070e874023adc178dc7f67e9a9ba8700343ce8104302c00ca91f0167947ea903c" + }, + { + "href": "./BT22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c35b1d3e07f5b7bf6d75645a94b8a441a64857b82f5d7da69cbfe29cce3d679e" + }, + { + "href": "./BT23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b3a26af4d722e37bf6798122c89c519357490cab57fc051593fcdd9eea272cf9" + }, + { + "href": "./BT23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ec4c5c60577102f3126eab78273946c8ba1b4f66bffa596681c047593905fa8c" + }, + { + "href": "./BT23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b53c0f20240a387ebbc1ec5c4f142e7ab1f6fa31051ccb792c34b08e12787008" + }, + { + "href": "./BT23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cd48f2532e532f161d80457641c90a50a28fc512ef8f81e081c7d50f04a92510" + }, + { + "href": "./BT23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ccc11e2ddcbdd90b708aebb2ef9a382be0ab87e1f148bac81779f68b1b100bdb" + }, + { + "href": "./BT23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220598d9f3740290b3abb2352b4542dc68585feb570781cac308f140b5e7f7c1c6f" + }, + { + "href": "./BT23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122095619eaffd774828b8230a6fb89315971c7e570b7ab057d186ef5c1ac211d44e" + }, + { + "href": "./BT23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f0784cea2ce7cb581d9336e8b60b1459239a7d960ad4f28aa27c39bd8a5a9fb2" + }, + { + "href": "./BT23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087b906d55638d5eaedc2503d4756dcb48782e209bd15da5bd8fb192964606e1e" + }, + { + "href": "./BT23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079b8325333ac3cad6b8f5ff1dccb1d40d701aa096c1ee2557a9503b5166b1600" + }, + { + "href": "./BT23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206bfcbc827fca03acd7902b2b0104050fa39635bb6cce48b1f8161f0f759ad5aa" + }, + { + "href": "./BT23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f8b9f54ecd00331810192f5692b8bf1c001d3893e04160f30e79276e28f0376e" + }, + { + "href": "./BT23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e0e5de63e556c5821f6b3ef4f078ebffabebc5f060709cd41f6dc2af99c91f23" + }, + { + "href": "./BT23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122013658599033faf4b3bf02584f226882e2682765376e75f7470766d8335beaa1c" + }, + { + "href": "./BT24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122097bf5df7a36c192f1fd7e06049b5cb0ba5546859c34c37adcadb07cac66545c7" + }, + { + "href": "./BT24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122059553b39cb281be9148460d3353ef2128c5fd2904d745a01496c6765167c5e3a" + }, + { + "href": "./BT24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e0cb6205813fcb9df8bf6cd7e47b822a12e98a70bfa34530655b1fd2f1d3fad2" + }, + { + "href": "./BT24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122019d3207fd5c91955aaa7b693a3dce98bff7206abedbe30e5b04ef7ca5d8abe3e" + }, + { + "href": "./BT24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220531e0b2456c512a1f350f891e9c505130a16e4398255d1feeed4bdfb72641400" + }, + { + "href": "./BT24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a15ae6c30a8f946ccf33e79df1c4533b3066f440ba1f38886576db7cad745b04" + }, + { + "href": "./BT24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f0cbe00654985cba9bf53ff128cf5c2b00f11a48ca97fa6505e5290e8521b150" + }, + { + "href": "./BT24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220028ef04b28e977c85343fe04d824627b8797b5b18251a7991322ed2d28921634" + }, + { + "href": "./BT24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad8a0e3147f9c66b2fda31fa97fa34f2130037cb7837f43459685c3ae21bb73a" + }, + { + "href": "./BT24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eae22438627c8997af45cd279e01ca0b9d1134ec33a1d03131e7755c96053362" + }, + { + "href": "./BT24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a05cc484ca0fb2e6d59f5f7f37ea5e0a5cb0121da0e603c96a4ef68d028a3a51" + }, + { + "href": "./BT24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d14b511b47b6b341919e323dd773ced4560b0422e6fe5c1366e99dda5df86f65" + }, + { + "href": "./BT24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff6063e0041561f94988e94b078099bb005ecc9f1843aa1d61c15ffaaa358291" + }, + { + "href": "./BT24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c8863ebdfe29106435f485763dabf2f5d32a59b0a3f4b88174fb22f070117be" + }, + { + "href": "./BT24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220123c1d102bcdd90f91414c965c3cce07f3b7ef1909853c8e86f13925809cf2bf" + }, + { + "href": "./BT24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bb4bee38b0cea1b1e6dc64e355380968c5252bfd47881ab8dbd50583ec743cc2" + }, + { + "href": "./BT24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fefbc4bc1d8dafc8eed6884c877262c17497b08c9970beccd4e5735fc1d7a189" + }, + { + "href": "./BT24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122012028174b9ff41b1f67a6cb702eb623036f3825db694164910924ac81df8248d" + }, + { + "href": "./BT24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122010b21ab2fc34e0ea0b3a37efee9afa9d7132b4691ecdd7d285fce9330b804b92" + }, + { + "href": "./BT24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201eaf43cef2f3d58077d109876a683291cea24302ae893de4a7e31b4e70e38ad9" + }, + { + "href": "./BT24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200cff1a678c5c087266d52a85a52229a9adc10db5d0c305bf2073d376615f9df8" + }, + { + "href": "./BT24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f964285e04e896949133b5514fd051c2fff98284fea774d40eeec7a3630a8019" + }, + { + "href": "./BT24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207617127606348da56ea21e0857a9554cc529a3b70eeeb34c8b6870ed1b4d96b7" + }, + { + "href": "./BT24_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054a9c9c495abe25e92d9c3f68b1a5cb83e3213dbb08393091896088f57c9a29a" + }, + { + "href": "./BT24_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220951455ec4cd9c462d603528e3fa28122144d57b1f85d46840717ac3a3e675f89" + }, + { + "href": "./BT25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce66a56e3f6cb3e7d44d35e597f92c3f200c12a831bd00ec17e24f2049ee2882" + }, + { + "href": "./BT25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220033c0e409ea15d1ab9ed9df55989beee33ab2636cd5d6e80d56d104c88adc584" + }, + { + "href": "./BT25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e1e6ad62c827fb26af838cf1dbadc228ba8e2f1b90466946843f1fff18164caf" + }, + { + "href": "./BT25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ee69aaa9322f680d4c9a9f7d2ba3e4af0cf6b5a37e72908462879ead9fcd6ac" + }, + { + "href": "./BT25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e4413b4563ecc72e35e7327888c2f71e32d5f9df8978e5aff1892e483dfb05af" + }, + { + "href": "./BT25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122091253a21e36c2245e1bd4984a5343f102fef2c002c04c886b71db03a78f667ea" + }, + { + "href": "./BT25_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220669de0bef37b5236966e484690430c9d33819328a9197fedf63013abeb0c9ab6" + }, + { + "href": "./BT25_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b26a5466d1d7a2b61f3b875f732efd78eb6d80ae21de97b98b634e13d955e3fd" + }, + { + "href": "./BT25_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a30958b236eacf750df407584c67acc0949a61d97105dba9df68374394762d7" + }, + { + "href": "./BT25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200a7117346ef488606ee8a50d45eb4c3006cd48403454e7892a12ebccc212475f" + }, + { + "href": "./BT25_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a18162bdb3e7bedc8de59c07c4169917896dd9b6500a422c52ca2fd618dcff05" + }, + { + "href": "./BT26_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122091fff8c524221e57d289792e8f537a4c3862b2d645d8e2f16c66aaac383a5bfa" + }, + { + "href": "./BT26_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220567b8bf13e7a608283ae1d09c3a79b83afd316fc6cd6a31b85df3e326e392363" + }, + { + "href": "./BT26_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220be04900bd4411cff2b6d7610cc4516193ccdd8120c799920e21786f7e25822dc" + }, + { + "href": "./BT26_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039144be650ae19e44909efa67e96c51c7a55b72982f545d46ea90ed8bea7cc35" + }, + { + "href": "./BT26_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c070cd24ff4e34a7a9656c8cec723f0ac2f86f19ab55d19661f6fe2222c1ce99" + }, + { + "href": "./BT26_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c84e4fe0edd160dbc67cd48be992db819cc8429fd45f14e783cef1638eedf73c" + }, + { + "href": "./BT26_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220da95ddda42d502618b7626004bab9a0c7d7ebd5d8485e2d8daa3bb93ee43ee2d" + }, + { + "href": "./BT26_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c5d7ff1668134a3b0e79c5dbeb77079a16956695c024aed5ab0756e52cfb2989" + }, + { + "href": "./BT26_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202cac1c7288ca4189cb17970e74311750209878a9c78c887c061c3a1a8ab9d270" + }, + { + "href": "./BT26_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208322e28613ae21d2ad8246269d62993b898b5defbba3117de61279b3b7d3fbf3" + }, + { + "href": "./BT26_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201e239dd098e298cbe7156a220be390abaee23fb2b771f1b73af058910788a56c" + }, + { + "href": "./BT26_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e1356c3bba4a8e599977215ea7843bbf4386796dbbc2556b7f5f2e6b1970f30b" + }, + { + "href": "./BT26_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122002d8eff59d9f7cee553a41166840a7f499b6a528577782e7df5db42e6e5fa3a6" + }, + { + "href": "./BT26_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cc5f94ab1bdd841eb5c24f7da8d2e96c6cce994c5d30a1b5fff1a46fc1055746" + }, + { + "href": "./BT26_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207174a0b71fee689c1a00ecb59e0778cd1aa878a37bb6ff49875dbb88899b08ab" + }, + { + "href": "./BT26_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122060c2b86605f2ce45380135d6d4b48004beae07d0d4bced5797eaf5114eb8dc66" + }, + { + "href": "./BT26_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122030f1749eccfa92eb10eee7be30876be3cb2b0dd81b152fbcf6ab556bd75ac003" + }, + { + "href": "./BT26_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122055d7303ee7eb759db1462e14b637a285cbbea1097cadc8150425c289c5f19a6f" + }, + { + "href": "./BT26_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122006eada2508a891da635c172c107144f9b92c6b4d3485ad507324d2d0649dadd9" + }, + { + "href": "./BT27_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205fcccdf88d41715dcb97bab31b91a87a736a21b58dcb2fe75edc4b12f561e590" + }, + { + "href": "./BT27_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205a9d2cb7abfdd23977bb636a0706bfd24e4ff8504d768ecaa0647ba68b32c843" + }, + { + "href": "./BT27_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220865bdc615f121fc8ce9cf8bc9507b7850663e3f91d096416a6a9c361a502bb56" + }, + { + "href": "./BT27_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ded4c84263c3653df8464c5d15aca04a3ed5d616cdc29f2626b9c2a69703aa45" + }, + { + "href": "./BT27_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f0285cc6add95222e9156532f350681e080032884d47b516971a07a8387fb339" + }, + { + "href": "./BT27_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122014d0fe3829150598b7454082d6802b9d8d36eb42994f2d37396957141995e807" + }, + { + "href": "./BT27_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fbd7dc44e965f50690bfcce8981fed00c5388d2cedf09790a60006a7615cd2cd" + }, + { + "href": "./BT27_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dd962fc1237d5c4e8a41e9df2df248838705d7de9d7f6d3ee5e60954e8457fbe" + }, + { + "href": "./BT27_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122077a869270ef1dd2ec80dae3f7311173db562044e0dfd2325b58be311a6f1e27e" + }, + { + "href": "./BT27_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac4580b005286643b4ac58319d455b7d804bcf786eab94d194b210ba207c4455" + }, + { + "href": "./BT27_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bdd20c4a124f402214613f623746b7f95d196906c075046777b3256b51af51d1" + }, + { + "href": "./BT27_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122095449cd8ca43a18c87422bd00bad2de356f37b3a9ca816cb33bcce70916e39be" + }, + { + "href": "./BT27_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220de93e25d1699749ce4c5c507e439873c66f2f138f56f2d527abbd02f21411bed" + }, + { + "href": "./BT27_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a8fda6636965566aa81d89722e4093c96d412c218b5469006873405ba5e5d98" + }, + { + "href": "./BT27_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c685a50becb7e4bbedac557163e43038b00312d4866cab4fea87d7a12710c663" + }, + { + "href": "./BT27_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207cc5984389f8c137bb4484a97f2fbc8d40086c3628c78e5ecb63c739d49d5bf2" + }, + { + "href": "./BT27_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bcacc84828299f5ce099f0df60a2956e03f6d5841da175eee52704ffda6cfd70" + }, + { + "href": "./BT27_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203df53a4642b4f1d0e859231e12e9b9f7049194f4110c53acfd69b7b8fbc6616f" + }, + { + "href": "./BT27_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122006d35deb6d4786bf502248a8ace56095991206f6fa899265c50ee695518af3b3" + }, + { + "href": "./BT27_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7cb1e4e396aab1ea127a3a962b836b29f92986a9083019192cd59a874ed6e59" + }, + { + "href": "./BT27_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122074e0c1e5d78337b77c1a59c6b4a1c93f77e770af45ec09c050b988d59f2d0273" + }, + { + "href": "./BT27_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d17d1f3ab6a3929ba3a46548b1522c160410ecef1eb304488212c53088ab4583" + }, + { + "href": "./BT28_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201b859d405f30775276c0b7083d925d08b350bb20feb104ff567090fc757b8068" + }, + { + "href": "./BT28_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122086c7ab4fff8f0194e93632c51806a0979939c236e7ce2de5d9a7ea970118a0cf" + }, + { + "href": "./BT28_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c5fb02d6438700950133b1e974384d8d0611130d8f818719e84ea1434b99a2f1" + }, + { + "href": "./BT28_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122041dec3158fcf5df40fe09880a670f4922a6b0da1a801753d67fd3df6de49888f" + }, + { + "href": "./BT28_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203cf4af410d1ba4b4f8b91f2f09102ac9d53a15e22658831074ae6107581bceb0" + }, + { + "href": "./BT28_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a8142f1b533b21af52b98412ce7f2fb7ddf965dc69ec7d4a4c0804c9e5ecae89" + }, + { + "href": "./BT28_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e8c040191b39f43335542376816557e65eb72945d48d37f66b1544c0eab5875" + }, + { + "href": "./BT28_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2bedbcbf7779f91ea2b69be51089a2e0dc136b0c665f702062f0bd3183dc833" + }, + { + "href": "./BU21_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122059e30f423d7d4eb4e423377f582ba170b7e36298d31f6f25d3b13df39b8973a8" + }, + { + "href": "./BU21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a42c22cdd8bf80dabd251c3c8be113815bab07c8c3517616a241300b41942ffa" + }, + { + "href": "./BU21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207fec663e5b01f3493e5aba9a903dd47308d8d550160f8eb643e1af01e291e82b" + }, + { + "href": "./BU21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eb4e72d7e79c1c88371df63c5f565538be7e7669a904709d9fb99d981b797690" + }, + { + "href": "./BU21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220be5885951ecfcbab5cecb1cd68d76a83b16bb54a5f4130d5e3ee26bb77957da2" + }, + { + "href": "./BU21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae5d5105d0179fb5f1a93103fd66c3a294553c12babe70b876ffb6f6f163bbf4" + }, + { + "href": "./BU21_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206203dd2412fc9da5837ff8d0c5aa2542d5a09194c86fcc50f4801f51a6920503" + }, + { + "href": "./BU22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ec5e719d2e63ed35ef76491660ddd0adb764f753a052027c2c834a1cb8f02528" + }, + { + "href": "./BU22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122078a669aa3c4193d2b6d566c352cdb9b090adfa59def719621ad427c30d37312e" + }, + { + "href": "./BU22_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d2e1813ff4d72ff3f4d98ba4e1db7dd36aa164d2c030afc348a5c2781c2a18a5" + }, + { + "href": "./BU22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122082fdbdc6a461d65aff0bf53e8c6b5fc56eb665f4fb94e22f57dd88b415fcf8c3" + }, + { + "href": "./BU22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207dbeaa7fc3c9e0348bf4b04fe851fa828e2d297a864af6854b50fb360493c73c" + }, + { + "href": "./BU22_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202e14039054e91ea2cdf9cf18d8671eb802ca9b84e65a634713c945ac5aebc06c" + }, + { + "href": "./BU22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c4dec04a897275d747fc25c089bc12bffd0a8f15fc37adfea64fd9a35d316ca1" + }, + { + "href": "./BU22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff5a40e2e8dc7984390321cc3918834be7eddfc86496ae36b6f3c1c4b3212436" + }, + { + "href": "./BU22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200eea02a82e1cef4be1b0995439b6de048f99043034d67839ff0a6334bd84e89f" + }, + { + "href": "./BU22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d59209f8504df562711255851d3c417211f465fd28448b7d27505e853204716f" + }, + { + "href": "./BU22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207590c0a07bb618dc7cf65a7b4cdde5bdf9600b2961e5a788ca9647be7f8c729f" + }, + { + "href": "./BU22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122011df77c29273f7c44d92638bd7239b9ac8deb02a13fc15ad054dc4631d1b7b39" + }, + { + "href": "./BU22_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c3c3b9b269e2263b3be265ff8598ba40a6d5ffc920fb2249316ef8d4f6c15f62" + }, + { + "href": "./BU22_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dd598c9357322957ac2369b218ff566d0fa60a9114fcb15ada72aa6bf83608df" + }, + { + "href": "./BU22_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220967c51b1d675ac91f88610299a2b0f085f5b843033d5b5d82f903a57ce751036" + }, + { + "href": "./BU22_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204d42fc66dcb704d3e4a17fe91a806ea384f4f022cc6ee79d719e3a45541ed17b" + }, + { + "href": "./BU22_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122077b7cf6c9a9fdbf8069f787c64cf8fe973a08c623d393b328c238faaccba3d36" + }, + { + "href": "./BU22_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aadd08cf39cff80016e6fe24fd050c6a064148ac28045cc8e2cc1cc7c561dfaf" + }, + { + "href": "./BU22_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ed36729ccca6d61886476938662df0cc096ff61288a401b1260a415426885c54" + }, + { + "href": "./BU22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7878eeb96a90ba16e74eaf5faf06650a447eb8e1fd5e0090068af2651478e15" + }, + { + "href": "./BU23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c165c299be85747ed3b19ab68dda309968c470f99091aebf9153e5ae8a1cceef" + }, + { + "href": "./BU23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220290c9bcd59a396458bcf05c5e5eaea66e4b523de2e6976bc107decc472ecf762" + }, + { + "href": "./BU23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c522ea05459f61ae1684a46b49c6e4fc42d0d9865cca75279650d735f790c392" + }, + { + "href": "./BU23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac8bcc46158d1e0ac253bb2753a134888bea8e886011f9d78f920fd65a8b3f19" + }, + { + "href": "./BU23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203403e0052ac42cc312f3790dc24703aa8672bbcf5e82649f575170e19136b658" + }, + { + "href": "./BU23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122010b8f0895321ec90d460e4c032e236b272780f2c02c19086f821a174ac74863f" + }, + { + "href": "./BU23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220100c9dd65ca58d121c897ddd137d1c5a96f747d1b481d234b3d8389167b0a0a1" + }, + { + "href": "./BU23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220019f9fcefee8cb2296a46f3783c6f70e55527e9f92cafc661773e5d5a8a59aba" + }, + { + "href": "./BU23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122070cc325c55a372f620bd163c89f9598628784d1b334c1c6aa42b5bfebf1fe55a" + }, + { + "href": "./BU23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202ea704c30689ad7a62d120bd11a7714ba6bd82897ee45e71560057a22e2e79c0" + }, + { + "href": "./BU23_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d990f3037e1bd5992e88e683be05fb267b96405306dc3b50b82dbcfe1582a5a9" + }, + { + "href": "./BU23_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e30e4e1880bfb90e35888d99164900d90063bd099a8e18f79a261760259d4298" + }, + { + "href": "./BU23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fdc4fea5c244c87aa4d8d2c1942453b5a02928655c5d4caf5683f0a2a8702df3" + }, + { + "href": "./BU23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ee48e7b9368193ab1d6112f13d3d9aa7b18eadb8e36ba19086001ea9f0c70d26" + }, + { + "href": "./BU23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203d7b6c43f6eafbb420d1fab7d337578964fd1f6b226c1eb2270a293a363d37bc" + }, + { + "href": "./BU23_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122031954429b848d3f9e8e2522ca50c2cd8d2f6280c74867f15fa8dcb73ef2e2d6b" + }, + { + "href": "./BU23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220736f4f4c2ba3949d37d8bc3ccc7f4ae87b571eabad11ffb669193e3e2547f448" + }, + { + "href": "./BU23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122042ad928a7f07ba90f2efa051d6699bb5bc84513dddeffd1575475eb0b42ddb19" + }, + { + "href": "./BU23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207c952ec8220b5a77bcc63d85f3d67a39a633752f5275479eb902ffb1332e8c50" + }, + { + "href": "./BU23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209fdeb1d463cdf1c0e2add51dc8a26347e152f42087560988c924686ba0eb85d3" + }, + { + "href": "./BU23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200a91778e74ea806eb2f30d13c56a031fea79c24a4e125566849386c4fda90ff0" + }, + { + "href": "./BU23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220069087fdfae5c23034c58f8a5ee2e02ed46eef7724d858c12c038ffdfc2e87b2" + }, + { + "href": "./BU23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f92403a71c82c52e9ec0ff41c6cd09cd51bf176e57dc4139b89820b713f3b4f2" + }, + { + "href": "./BU23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209f7faa8b673acb1d83c84821be60c044d15d4114e4018f283a9bfeb37a86e13c" + }, + { + "href": "./BU23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c603137e4a5a72af891b7627981cda13983ad6cf9f18467f17269034d4a2006e" + }, + { + "href": "./BU24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208eedb8a22d0fc0980490d216abdb8e2d0b9d29595836b63791266e64aca9b43f" + }, + { + "href": "./BU24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c69b2b22d6deedd35b868ecc8a2f029677789017035b36bd72c19eb3acd762d" + }, + { + "href": "./BU24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202e23fad14eaff57167a318f55f2f900703f4e537ebe82316e3d2afcc5d4001a9" + }, + { + "href": "./BU24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e8a3656baff5fe59f711c29bb971ee11445a744e099719ce798c4001aba373e2" + }, + { + "href": "./BU24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a98e91261a0414aee0f101f9e8cd9ec7ef967b224bec5b8df5e8f6db5f74ff37" + }, + { + "href": "./BU24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208c909b6f9f132584e5f01ab805d04b7bf26089ed99a93e19d3f6ae13d0e943f2" + }, + { + "href": "./BU24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d23cecb09f8469e3377a8dac3c62376f671c4cd902c6f5b6435fe4ad62e1740" + }, + { + "href": "./BU24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206c8e822b69e4fd8a96a364e4a19f503a174cdf0584dcc5396e4d3fe58bdb9142" + }, + { + "href": "./BU24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b1ff0831525ca86d49e68145f68aa02efe5adea0e8571d31cc0162e69efa5782" + }, + { + "href": "./BU24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f5f030d4218b0ce4f3bb5ed96bf4f0cc1954b310e5be73b9e46715522deecb32" + }, + { + "href": "./BU24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bfe84510975aafa83769d4e66f1fed4e43a9691835937921f983a256b5e37a25" + }, + { + "href": "./BU24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039cede85308833bdfacbb50085f2a43ecd35b861cb20f6f8ddc48d5ab39f153e" + }, + { + "href": "./BU24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023ac50790c1e171338b3c855251d3674f0b06b6ddf93b1795c1fe87c8a064c1c" + }, + { + "href": "./BU24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209275903fbb1facb7fd343da54c2560c663a09815b092a4abb4b7588cf4e00865" + }, + { + "href": "./BU24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122007d546b9af2ddeb70538b2a94aecd0b76ed94a43fd73385e80026b285da9f454" + }, + { + "href": "./BU24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a885c0bff66d02a5991e2d6806b07d41993f1437a4dbab5a7332dcb2967b2b80" + }, + { + "href": "./BU24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208d3ff411e715f55713f0b3539e1f35121f34126e4a0eff1b16d0c59c718b4139" + }, + { + "href": "./BU24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039dd330bcef03fce50630205fb552fd1aca8026f9966aa8c966d5806fc598804" + }, + { + "href": "./BU24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205cc822ed659a195b79a5a3acc27634697c5fe780bce826feaf6fedd4d983b41b" + }, + { + "href": "./BU24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c3377c60eaf9c6fbc1d5cfbcf3f5ce0513616485a1736300536e24b01aec2cf9" + }, + { + "href": "./BU24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dfca5233661899c5f7cefc4d832d77828257a43a401a925e861044e850265e7d" + }, + { + "href": "./BU24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ddf3100ceb0d9d7675d7f82a67df8b19265431493d6354de69bc8ac447888f37" + }, + { + "href": "./BU24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204879e0d57a559f0cc4e6bb400428f8486256afb725ca2017a49d10c7498cfea3" + }, + { + "href": "./BU24_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207b713daa009b7f7b42d3faecca6464bdf6d1e33de6d80ce7fda2220d9d7d64b2" + }, + { + "href": "./BU24_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb15a658e6f49d8c6f05e32599a8c3ebe4dbb444d4b493d25ea7aa6ee6553508" + }, + { + "href": "./BU25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203f4da753adcc5f9cbfaa9fcb60e7529b8ba280aeac10fe3b0fe5a993f7c313d1" + }, + { + "href": "./BU25_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122017e33fc986e7ed857bad9d28afabdfce3c734b0be3704a5f9b0dd00a3823846f" + }, + { + "href": "./BU25_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209eb76ff06fbc686d9f673990c32b9372482771a2fd4191d4a44b6c230d66e184" + }, + { + "href": "./BU25_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f834bfcc82f62f0fa19bc805ea057d0d52859c66783cda5ed94ecd1f869cd821" + }, + { + "href": "./BU25_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208dee6d320d9b393866e47bfe0ccd41472fd926018d1b908498df94e32ffe9026" + }, + { + "href": "./BU25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067721063143ffe2cb9a76e7b912685242ded536c31efa357d9f77d3ac4acfcde" + }, + { + "href": "./BU25_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122029cc8adff0f94ed358affa1c782d6794946b610fbf05e17cc4b1741571e29ac0" + }, + { + "href": "./BU25_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220219884756768817f50779a3a082c48dd7c2941fb8049e02ba68894ef01de6143" + }, + { + "href": "./BU25_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220808339d58820ec62d43e4b07904e28e8bdcb5ca4b6a8de937c8b0116059cda79" + }, + { + "href": "./BU25_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122013489b0f887edcfe733f8009f1d3ee6b0571005a9165cabca2703f8cd7708646" + }, + { + "href": "./BU25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200334feb1eac6ca9b68b7a6d6a5e5bc2914d19d6b7b9520294f811df4094c2075" + }, + { + "href": "./BU25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122034e5f2a3cbe8f66760a551b9596b384c5b0b29ac8b88b158e2cd35bd038a18cd" + }, + { + "href": "./BU25_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e37c13088438e03daca77454b342f666afde0631c5eb39133b665667451efecb" + }, + { + "href": "./BU25_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e7316a952be0b3c9c9100b9225544217fab31b5286ba6ec49f353c193d0ec56c" + }, + { + "href": "./BU25_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203f67c0da950c21f2b98c725fb53a94983fe9d2b785e128aed763912efe858235" + }, + { + "href": "./BU25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae3ef3592b80172eabce3279ee3ff28e04270ebb36d4f1807b67e21ff972b8b2" + }, + { + "href": "./BU25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220731879646b9a90e3003db5ae324c5058cf06777e580f1a06f7740e56c036396e" + }, + { + "href": "./BU25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1d9ac9783b2964eeed091264640403969088114ec128b2cc9378f17d0a931d8" + }, + { + "href": "./BU25_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d84a772a66497abe8df1725f62693ea91f79392f64b32ab16eab7a1cdf21d71f" + }, + { + "href": "./BU25_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db3a29cd398ec405e64da9ea34936ab35f22610c1ae34d9798427ca99e693107" + }, + { + "href": "./BU25_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b1f0e5d3507707b9a3233ad0f2b3caf070eefc6172ebc761b0e206dc9d5d09cd" + }, + { + "href": "./BU25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200e0a076394dd2dd9e3e9db2b1cbaba89f4e254fa6011431e7f45da8c1ce77582" + }, + { + "href": "./BU25_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af40ddd366f3f7ec12527417b8355db4621bf7bdcbfaa17333dd64c4b59e2609" + }, + { + "href": "./BU26_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206260651f5cba60830b2ec3c4a768ef192ead383bda9f965721ce4cdef22bba1b" + }, + { + "href": "./BU26_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202dee03bb7cfea0cb246fd1480464997e8a45553cdc75b44322206e03fd998c6e" + }, + { + "href": "./BU26_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f9d138264f92162ba570abafb376b65895f9190c748d40128537625b0766cb55" + }, + { + "href": "./BU26_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068db9ffc1db5bacc5574042604ca0ccef3a2166230d2522ecb2a5df42d3b73c8" + }, + { + "href": "./BU26_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206bb1340aeeba4702edd4b460a27f1b861f12f3a26941eb9a9844db9d299a0a0c" + }, + { + "href": "./BU26_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122098b0077f946672880a38d20d47c441266da02cd51518e8e036125eafb7553ea2" + }, + { + "href": "./BU26_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b0265badd47dcaa318ffc25e6d23f6818f6c7153ed2fe8076b5c158b84b17114" + }, + { + "href": "./BU26_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087029e0883c081668539144e0b03e2e76e684e52cf516d8f4e06c2f834c713cb" + }, + { + "href": "./BU26_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ba4e5a1d491c8f559bbb0e29ea0dc8334bc3459d1a229a70299ec4a9c43fede" + }, + { + "href": "./BU26_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c8192545056a7c07ad63442bdcf9681ccc4da2ca443f5e2e219a77860ca0aee" + }, + { + "href": "./BU26_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122058ddb5700eaf69774376c50dbc7856e8313b55b0db403d518b76beb3fb16209f" + }, + { + "href": "./BU26_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb77cbd39b997d44f29e9e0ca6878a17c9a0d4e8ed3f3ec15e4cb524bae76f7a" + }, + { + "href": "./BU26_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023390e36d8dd3851bbf94bf80b665a4ee5b666273dd589b66fbdd0fead3e8fe4" + }, + { + "href": "./BU26_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207df3cb56616b39445af8184a38276ed16ba394e0d56211b55b740eeac1af5e79" + }, + { + "href": "./BU26_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e5b40c966a8134ebda117c21677f899f81e6aeed852c9116020cf2b8a1fe0e8c" + }, + { + "href": "./BU26_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122030c3b94d3557643999ee35bfe556dfc5e577c82fa4a87828905fdec476179418" + }, + { + "href": "./BU26_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122048d610e7e37527dd0a6def3ff61ca0040a7561151cede9d7689107ec30b21975" + }, + { + "href": "./BU26_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c58f3911999aca215d0e2949f0999ddacf3c4259222a380d3fcda072d79d29a7" + }, + { + "href": "./BU26_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202301703aaf195eaa9f3b5fbc96a1bebbc4cbc79acbe9622eaea7bcb2c4bfe5cc" + }, + { + "href": "./BU26_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a5fec28398e4f1cb48fcfb02b9217cc8bc7d740f5e0ad801a29f160bde6f602b" + }, + { + "href": "./BU26_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220859ebf2d340768788ef4052acc8f3a80b64e15de94d3486115cdbd0770b64527" + }, + { + "href": "./BU26_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a448edb2d8b5139ba3cdeab3c86b489a8b725191aad494d8c8c7846be966dead" + }, + { + "href": "./BU26_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205fcad8d36dfe5529194a137110c34f9846217fb908d1b41a28d27b03fdee5d91" + }, + { + "href": "./BU27_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bcecbda9c5127a83b729ffb2db7c1719953e51a91c5ab80dd1ff227c157b240b" + }, + { + "href": "./BU27_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ec37b7226df03ee48cbd77bc6c8defe86fd2cb2f445ed0325f20189395a93ea9" + }, + { + "href": "./BU27_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b9fa2265ad9788318bda5788c27213b7071f0b420a10ad3bfb98fb1f1852a757" + }, + { + "href": "./BU27_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071c58ce58118e4e7545ecf656a04f89b30925eb6e0e7127b63a2d9a1e5471714" + }, + { + "href": "./BU27_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e625766628eab1129f9a496b99d472554715c80a8c4e965920881e07ddf72766" + }, + { + "href": "./BU27_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201e56a7d7332cb163405a6ce7580cdaa1e4a09b030fb64e46323a8f80f1b7194f" + }, + { + "href": "./BV19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122095da360db31f9c70a376e382524c33d323f42c39bf30ad057f6c4a0697cda9a3" + }, + { + "href": "./BV19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c7a2fccf3293055e315727b50e67aab698490a22f0aafa63dd8455847f3dc2d" + }, + { + "href": "./BV19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c79e4f911d4c8e793679d4f7b0812332d5695e4d089b886192f005bfe63ffc8" + }, + { + "href": "./BV19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122015278a4c7b0668b89cbd6d85ac25dcc9f8ef268b72062e56d62aebf6d45a02f4" + }, + { + "href": "./BV19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207397de01a4cf45a436b15f626c439a32d8c30cd2b62a0d8d2cd6d6ae41976a60" + }, + { + "href": "./BV19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d70a6dc3dc4172b5117a3f8efabece8cc1f380c15bb16e0f83ac250a8a01fc0e" + }, + { + "href": "./BV19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220331ba3dcdb6296d1d8231240ab8a435365232b54d5176dd8e9dea70bade52d43" + }, + { + "href": "./BV20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208f079b360981bc7046c55cd42f1df2e2df89b06542ce0a3d1bee0222c3faed56" + }, + { + "href": "./BV20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220606da1a56a70b8edefa0b1fb0bc854f76d7ea8c51bba7c085311fe47534923f7" + }, + { + "href": "./BV20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fecc22fc007644129f50de16b8d1acdfd4c9ef91b2a33357a38b5ecb755064a5" + }, + { + "href": "./BV20_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204bccd6b1c13387d1454b59180df3575d7992f91ea556eab5fc3774a6cda07189" + }, + { + "href": "./BV20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c55629cd5b53fac2a18a675b74bff200a7752a646b01ae9255a096cad7c813a" + }, + { + "href": "./BV20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204415b1a3ee448f0348350104fc8f81f423bc3331914255ea3b40f18c7b50add6" + }, + { + "href": "./BV20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad5e730a3b14d92ad076533298b113f1074906940a74e2d2abc6a962d2f36a64" + }, + { + "href": "./BV20_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bfe33c888ec2545ca6c9fdb4e406fd1b5ef2c0aab3abf3bf47552db298d8f4ed" + }, + { + "href": "./BV20_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122053d0c673eff720fa6144c6b8b76ae648902b69768d93bba214f2ddd427fef76a" + }, + { + "href": "./BV20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209dfcf2ec3bc742d885fecf46c50ea1d445db26d193c3f3238c7e3cbedc1d700c" + }, + { + "href": "./BV20_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209583d646f878be7dbcf7a5c591cc3e2f51e07a856387e2426354cd8c7a43b1d9" + }, + { + "href": "./BV20_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dcc35e9c60aa2a490bd1108480e4809f0227397d99e82dfdeac2152dda0e8b36" + }, + { + "href": "./BV20_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203981ccf03da755fdb58ac96fc391a6bcd5e095c2a135c5529da70a0f4279caea" + }, + { + "href": "./BV20_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bcdf291e84cdab67e6d8a65462b71fb5b6f5e7e5923ca2679264ed8ff4ad41d2" + }, + { + "href": "./BV20_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206225eec8a9baa7b0751c79c80aed588e5c329a8131352552dcce406adbaada31" + }, + { + "href": "./BV20_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b4990ac4079015ec9ee5f68fa582e79b976c0a16ac3fa271aa1f40c73cb8f37e" + }, + { + "href": "./BV20_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122089b26008de193741888fab6ef07b42b22cd5a7a66b468d1e4b5d8d2fdb665858" + }, + { + "href": "./BV20_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201523891bd017dd0f7b97ac14df0b904051e9cfb99059861227b4f63269b158e0" + }, + { + "href": "./BV20_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d01abed6ceff279274e283643c9da6757dcff2d76f6728eda729ddb4f86a7147" + }, + { + "href": "./BV21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220170de939b26955f180d5f320d1a4395218d86d7490985357267a04f8697f9790" + }, + { + "href": "./BV21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122033d4bf4d9ad7954d41dcd5483b7cb07f283209375df641ec5d41f86c0cecb98f" + }, + { + "href": "./BV21_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200c3f828eb87af944353c06b4ddbeeb8d3d0629a03e3f407599d51cabbfec4ae7" + }, + { + "href": "./BV21_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff0d579ce2dfcf3816fb9c52ce0494e3ef54b2863e15bca6da0f11bcbb53cb06" + }, + { + "href": "./BV21_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c5b6bf88226f163ec94e1befa08e27e95aed6c6e58506a37e2dcf8172a10ece9" + }, + { + "href": "./BV21_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220414081e1399af40f37e543f8d7c0415b910860b9eca31b3a3ce55e307699865e" + }, + { + "href": "./BV21_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122094e32cde610a9739751f49da8fe499b1551e7a386865ed681a03f6dda8ddba76" + }, + { + "href": "./BV21_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209fdfec768a8aee167817b221cfefeefaee03528aa6cb715ff3f50a1765dd70ee" + }, + { + "href": "./BV21_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220890f92d4702bc300c9ab7eea2d21f9805f62237e0884af9d4b57f8d060b62a1f" + }, + { + "href": "./BV21_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208eb6eea7dfb887c665745153e2c189b0cb0e5ad4545045a1fd6fe3ec4581865c" + }, + { + "href": "./BV21_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122058ca5fbba7e812f86b8b3aa68b9958828536435476ee3f342afdc81878740a57" + }, + { + "href": "./BV21_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122062f7ad1f39f95fb368ef904cc10cff06cd9cc70debff2df68e63be3a84e9352b" + }, + { + "href": "./BV21_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db8dca410a67603c2a6e7a9bf6c3aaa682a56d4e784a0adc101558063e658a22" + }, + { + "href": "./BV21_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ecf1fa295f091bb30ab60a2f3c7c10c71368d2ca46b8c5e2aac17b85168c57dd" + }, + { + "href": "./BV21_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122013c587ef83b69f766d84cccc5b14615b36ad3578402e6131cbf32183e3cbbef1" + }, + { + "href": "./BV21_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cc963a2932606e18f0c3f76eb6c5ded87962fcc86428380817ad7addbace012e" + }, + { + "href": "./BV21_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087c7efd38d140242c03c3251173b9e2317db10714da3882a4196c66a6402f7c7" + }, + { + "href": "./BV21_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087bd4d7f4c88e3917d0060e848eb5ca834d189a5bbcdc80884b2e52fb8534fb9" + }, + { + "href": "./BV21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb5e487d381d9bf77585df8cec8a9bd370f877421248137f8ef598c1a3a41809" + }, + { + "href": "./BV21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b2af3fca5d3be63b313a8f21bb6e2440b9d07ddd018d97603056482246123e31" + }, + { + "href": "./BV21_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204828ea0ed66b275fcfa5f7e7f6f7d3af59f2a50dc4d1b14317e0930208b3f6db" + }, + { + "href": "./BV21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220de6fdd8d7c0bf6035566ee4c914fc74e5cae9b0da334e685cb2bb7792303c4a7" + }, + { + "href": "./BV21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203f60303ba6a98aa7702645ffe68e7dfd324234e0d1b4f77ac94afcd7148e2aa1" + }, + { + "href": "./BV21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204afdcc287e818d194d9f721cae0a8f6fa994e0bd7f50c3de636d8667b28483b9" + }, + { + "href": "./BV21_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122012d4339f43dc1321bf2ef79b974864f512dc3cd5a1457c2abf028d1d8de5e819" + }, + { + "href": "./BV22_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087573b2ee42e0581a0ddcfbdb00533b8ffa51aaa70895530c1670f345f78f459" + }, + { + "href": "./BV22_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203abcd2235c4ff83dc8a2ee0e147ba5cd522ab1b657d115c9b0bfb2c071ecd909" + }, + { + "href": "./BV22_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122007bff41c0aaa4c4132888c04a3aa8412f9253d2153b0974877317ff13e7b3f30" + }, + { + "href": "./BV22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e91fb157d3f71faadd900467e2f197a60dc3b0f601bf48a10781e88ad3806175" + }, + { + "href": "./BV22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220992c76d361ec41f56c1366e40b7de3e72db64e600af15aec48c0f5b69ac59245" + }, + { + "href": "./BV22_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208b7c5bebf5215da843b77176aa51f3f4a8c97af8e5fce447c3b91a8084533f0d" + }, + { + "href": "./BV22_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200cb0286803314c31119425718447995cf6dc21f689ff5660044fdd6d10adedc9" + }, + { + "href": "./BV22_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a8500c60c7890a56d5d1ded29c291fdd52fe9f12d21077e85a6bd1a3ea2a953d" + }, + { + "href": "./BV22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220deb98779ee2487a053f834a82274ebb5a8753c853cd3346b8d730f0fffd0d4be" + }, + { + "href": "./BV22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b13f8c3fdeabb1305a8334678950d2e447d6ed2a995e195bf0cbe115fbd442a2" + }, + { + "href": "./BV22_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b530ee803251e9b213a5b960f71b460152273c9e20030cfbec140e94d713dda" + }, + { + "href": "./BV22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220afc0887312198d29b68898b8001270e89f10364df59fdea5466206835e4cc0b4" + }, + { + "href": "./BV22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220abd84b58e05884f96fdbc8e07791df18ab4ae9d976c134d9aa400273a2308292" + }, + { + "href": "./BV22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b53c2d3bf6f9ca970e13db4b39f57d3f142578290f73a52581df8c9c0a299734" + }, + { + "href": "./BV22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b0d46d331fc2efaeede42b61b895ee20a781ebcbbc8a8f87a2ced06d73da0c32" + }, + { + "href": "./BV22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220814452367bbf20880c803f0c1054f6cd9bee275b3b27af06e320b8f7e5897b6b" + }, + { + "href": "./BV22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cdf1a3d41c535f42fd568f499f1459479ae65d6289fa49d386712bc65ee71f0e" + }, + { + "href": "./BV22_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202251241cbce867d4cafa297e424b4a684236ea38f70279c47c0a0ebc0ddb9515" + }, + { + "href": "./BV22_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220edf57d886a725977f1d03ac574358808594b24f270f51e06bdc48c8c2007379f" + }, + { + "href": "./BV22_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207208735e78bf6050708a68a6b0858bc7fa813315bf75568db12186a4d37a0728" + }, + { + "href": "./BV22_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e20bec894c8e8ae59a1588aeb545952e794c7a998e1be2ea975b87045aef166c" + }, + { + "href": "./BV22_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204aef1585dd483bbfe20722e10fa52e1d7cd9434026d1cbb79ed8797ecfa69100" + }, + { + "href": "./BV22_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220282294458c3be1c9a0088991f374c02de578b0e4052af68c8e8c5d540e83e471" + }, + { + "href": "./BV22_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220398a08fdcecaee88fcb57cf32557746ecd433b629f234b2128df675d4f1b84a9" + }, + { + "href": "./BV22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220074c5f6318f6e7599105ff70adda569c23ebba0c8f914cb022765b2e31e75efa" + }, + { + "href": "./BV23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d5481e7b51bcf7acc9ac1bf7850a3a87cc783e1f6d254ec0042f980227119c73" + }, + { + "href": "./BV23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aecc6c56eebae72124c72a1510a7aa702c4b687209af21cce6376f27d10d3923" + }, + { + "href": "./BV23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220921fe51895a4d85185d34a887569168bc79e463d0e1c370036db1a4d48559c2a" + }, + { + "href": "./BV23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a2b3121f9e10d274992b5aab8bd692951ef61a352c04127be631c06b472bb13b" + }, + { + "href": "./BV23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f915c0155b74dda8b2efc51f1953722c5e21a09a877291a2fea35375f3bef43b" + }, + { + "href": "./BV23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220deaecbc01c3d929e3bb6e6d73c0f0577773011b9a8b645003820f04beff35370" + }, + { + "href": "./BV23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e0860308a3403ee718d027b5179dec6adbb1641941ffaf529a0032736ed88b7b" + }, + { + "href": "./BV23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122046829c7d0883aad24746f6669842a082254e70494280d57519d2754adab84217" + }, + { + "href": "./BV23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c849bc223865f42c59bb43110f39ca2925153192f43e08e0b3b63f1c7cf6c52e" + }, + { + "href": "./BV23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f8aaa534c949bce0f69f7c04de0a2e8c49372d60bdcf01a1b5a02366f125d502" + }, + { + "href": "./BV23_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d670070b17a2dcf2e227ed43c7dd2f0b5f7af6d1d0772250a01200cc9bb28bf" + }, + { + "href": "./BV23_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b132f0cd4c149206e22a6f8cb7501bb3a8463235c11517394a5365e339fccffc" + }, + { + "href": "./BV23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f4b5973441ec56655897ead30d5801e3b2388cbe2be2236048a4e405f8206bf7" + }, + { + "href": "./BV23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122028a642a7504270e2bce018c745c3c43ebebea31fcebd576d821ca631eff10eab" + }, + { + "href": "./BV23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9cb753a6867534274aae5f8ebedd4e93a5f9a97b03c63885914ab59a07680c3" + }, + { + "href": "./BV23_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eec78d05f8ee89cc5639030ea8c6961e70f6deb518fb9ec8fa3f1816de293798" + }, + { + "href": "./BV23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206c84524a5cf77009bf2f314f603cfc7db0d9e147fa48654dae23b3e95a9299fc" + }, + { + "href": "./BV23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200caa8d014b7715819117dfbdefb3c90e1e4af148fce2e9d1768400316f8b8011" + }, + { + "href": "./BV23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209cadab21713298c557901f352f3d5accac0de1a0e9945527e837f70bc2713c78" + }, + { + "href": "./BV23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1eaf124a9bc457e4eb88c390106e11a2c771f4a98da71c85cc1750d619a0ddb" + }, + { + "href": "./BV23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122048bc6be575104279a8549b54a6094ac879353b8d853b284f6aa4a7c65980f6a4" + }, + { + "href": "./BV23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a08afd8a2e8899dbb59f60cb6041f363df966a835bb8cdcc350801c597757c1" + }, + { + "href": "./BV23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220903cc2970ef7a57a146d254437a998789676fada199736671c2f78c80f9c0377" + }, + { + "href": "./BV23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203ba43cb32d82fa71e477dcf6f869fc653a642c181765201d972784159134f4a6" + }, + { + "href": "./BV23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a48f787b3d2c0d2ef03262157196cf14ef1a93c3ed71ed855b2aa2579f105bde" + }, + { + "href": "./BV24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a157d8b5d1e1fa87024ed5e2514ce35c68be4e9d4c2de969b9c6cde3b38849b" + }, + { + "href": "./BV24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208158e3de473ac60c0b8c39d0df73c8e812c4f4cbd91a7d2dd8f7ea1be0641b5a" + }, + { + "href": "./BV24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122000244fd3173e0727c92b60b29d206d02451e23be715905db020f0085e21f8a84" + }, + { + "href": "./BV24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208aea36228602579432f23a7a738db0e11eab6a9bb525c450d7515fc068327fe6" + }, + { + "href": "./BV24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122024bd4efc5a64ea7c56bf95dabff91d48ad9bc349d286b6af675d780e6e48201d" + }, + { + "href": "./BV24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220103ee2438d38bc4e287a75699fbde04a2f12f38c0a757f44ec7d041e34dd7caa" + }, + { + "href": "./BV24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202870addba771b0334d1abfd3e886cfeb103de058365aecf0b2744ee9fcf52b3a" + }, + { + "href": "./BV24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122013d3f9973b2e83a81e886f195416796b288ec7a59effa18c923dc77c5020b96f" + }, + { + "href": "./BV24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff2d7dcc967eb170c6af8101bc3da02cdb708424a87180ef1b9cf18c9cbe3081" + }, + { + "href": "./BV24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200e82a7c4d28002acd0475a8a94436e6f9da524547efd23e46f7e3cf61629018f" + }, + { + "href": "./BV24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d3978eda01136a246518a890fc5194a9b0f832a2226bc0360a4e40941df1020b" + }, + { + "href": "./BV24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122016c31cf61a6243f2061be4626610279feb409378d9b10caa53a48563b165ccc4" + }, + { + "href": "./BV24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122064f286c00b7708e07e5d1699f4ca68a33209ace6212cbf59e4da4e0c6bd7367b" + }, + { + "href": "./BV24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c60620b9aab77875c11a3bb0fb6f9b0a868784bdbf8223202a32172d99332015" + }, + { + "href": "./BV24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d480c995cea2dd361f8b5d5a29b5770ea0d7627adaa682a1794262eedb2ce410" + }, + { + "href": "./BV24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207515c94e5028252c819a547146acab3f1ddfdba95c3f5e2ddfb5f6da2c1d6e4a" + }, + { + "href": "./BV24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fa4dd3680ffd9531693f2c90709450330a648c4945c4918f9acda51300e889da" + }, + { + "href": "./BV24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a50dfae09dcb9544c833ce3ec38ceab64f229767a2e25e425c3af4243240a15f" + }, + { + "href": "./BV24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ffe3f1fb562b6e1c6d6f780485c5b60fe56be7d71d45c2c88fc926d3cdfa73c9" + }, + { + "href": "./BV24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b507592eab064f399b498b8c1107d54dadfa5cbbde5b8a728b95f39ccf67a3a3" + }, + { + "href": "./BV24_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eb121ab6a23dcc642e7530cd0ba571a7b9544e51b8fbdaa64c63add34b1499ff" + }, + { + "href": "./BV24_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f847024e6569576f16572f44b0aa345fca66164137e90005697779c382edacb4" + }, + { + "href": "./BV25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206afabf96e20b4231f75cc0873a16895bb489fa8578ef8c7e9aaba8e1962783ff" + }, + { + "href": "./BV25_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a80ee8a2daf2b688b012ea92b4f9804913deee816f8ce26fcb89b74791bc38b1" + }, + { + "href": "./BV25_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122036a3a147a97935e480c0262a29dfb631e15ec0ee5a77859eddd51c0121fcbb23" + }, + { + "href": "./BV25_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122024af95ccae3a6def17baf53bc334f145d5baa89022b09e84759e320d455b77bf" + }, + { + "href": "./BV25_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f0b4a38f37572151498b42c676a40884795f8f036750bbb118fe6cb64f80736c" + }, + { + "href": "./BV25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e80977a76f4b0c2af2b131cfd325b7a216354a07585049452c84958e0147ffd" + }, + { + "href": "./BV25_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c870a28b1b2f80928c4969a399f01e1814cd08b6a404fac42bfdb712e22d760" + }, + { + "href": "./BV25_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023d5802598bc58d4f96054cc90bd4314c41180f553723ae589694da5d4783ef9" + }, + { + "href": "./BV25_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea419fc26cbc319635003fcd95b9e95dad515b8683b84ea155e312f8cff46043" + }, + { + "href": "./BV25_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c411acb1eb4ed594c8349bc8eada8a7ddfb1318e4d42ec6ae3a14e4cde4affa9" + }, + { + "href": "./BV25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220df4cd747069798e7a0e27fcd6470e2c54cdc605095d424906185f009a1b9d5ff" + }, + { + "href": "./BV25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aae2361e5ebd98c7947036dcd058ef1f1ff76e922f6e81a36f15b9082809fecd" + }, + { + "href": "./BV25_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122025353295075110a345890d009542ea6fb69decbb17cd2ab9ef90c89a201d3ee3" + }, + { + "href": "./BV25_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a248455bd76f145acd9c51ab3dbad9938c0cc9c751356f6dc47483a9ca4a539" + }, + { + "href": "./BV25_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cfc5a82b0286a3099d95f52ee427ecb34e406b114477d93ec412135d9aaf63c8" + }, + { + "href": "./BV25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122012450f2cd6d6d25497279f5565f1525e3e2186a06aafb3328c269aaa07578681" + }, + { + "href": "./BV25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f2e8f79347c4b66123f8a6b12e66ff1cd6b006da3613f145d5cfc9bdc14f1b43" + }, + { + "href": "./BV25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208ad14f93e05d2a5479b43cc13201982c5e0c921509f637a651a92d663f3059a5" + }, + { + "href": "./BV25_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204e341c13e3855ec17d7d22b7f04bb00cb9d701c4dc6a2af1c85481ae44aacb5b" + }, + { + "href": "./BV25_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205544238ac27f9d92b7076be5c25d6a62aafe675aa2077a17e3d126de77d4a35b" + }, + { + "href": "./BV25_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a0c692db05f6f8dc70e810e70b4641f4852482055e2fe42c1d0b7ad2400707bf" + }, + { + "href": "./BV25_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220473c3c696e4b1fc639d684105e325dfb71282b0cedeb39f5ff8bafe74a8e5f57" + }, + { + "href": "./BV25_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122056fa83c7721a7e94096a4ca4c828bf06ee487a13b5ab695cab968c630613fc21" + }, + { + "href": "./BV25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c39fbebeac5c087061b643a2ce8b866e2d610da91a6ab6d07704526b9cbfd2b7" + }, + { + "href": "./BV26_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e73205019aa05e0a94578771576c30fded0f86acedc47842c5c0579a7782d69d" + }, + { + "href": "./BV26_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203fb787fff504e07fdf3f0bbbb1c48cdb32dafd9a040314acd1e35ba3416a72a4" + }, + { + "href": "./BV26_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205f4e2923744d42ddc9dcd87df973fa9ffc13c901c3237a3b82bebe8bdd107466" + }, + { + "href": "./BV26_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d8888e8d3a1a88670bfb9956bb66183187d74f57b4bc9eb352fb05b55f991a48" + }, + { + "href": "./BV26_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220966a3b5259ca3167ec08ffdbd55d68fa93a999e03e06c3130912913486f98a30" + }, + { + "href": "./BV26_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204f0502e8d9f9707591ad12c3134c902cd2f9c6bcf88579d242abbbfc97113018" + }, + { + "href": "./BV26_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201686060d6ce0c4db6ea54d7d1310976384608bb2e269df057429f93bdd42a227" + }, + { + "href": "./BV26_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c0311ac43b1cc1dde90ce78d35b158ef0bbefcd840374cd153a9c6d4b0295817" + }, + { + "href": "./BV26_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220699d711c15578eed1e53b6ad035a3c045c873ba5f0bc0cf41f35ae154a1cd048" + }, + { + "href": "./BV26_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206287506fb561f46679cea9fbf75903e680db40447da577e6ad77c4e95e3cc86a" + }, + { + "href": "./BW19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202937f5b319066a9bde9299b41393582caa57ec779db020b4bc00c2db737605ef" + }, + { + "href": "./BW19_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206735d94d71d64848e6d5d4e99465b0583f98e25b7c7b37d3be2c5b99cfc9387b" + }, + { + "href": "./BW19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122058d98981552b6e70241f1280a8ab47b5b7c61a28ac6dfca6a75cbc2c64a93952" + }, + { + "href": "./BW19_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202415b7669448585d93813f37a325ac71266219c5f6b280b4f26b964596d7d521" + }, + { + "href": "./BW19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122006dd81fa845c08db8179de233964fa26195da8418c7d878252c95bcb8ccd7c4b" + }, + { + "href": "./BW19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206aad2069f1ac926531d2e3d5317f463a64a56cb5e187edaba59f99cf5fbb298a" + }, + { + "href": "./BW19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220035cf791dd7bbdbdee6c91302e4d62387e296925690300ab5244f5e4ee3e0eb7" + }, + { + "href": "./BW19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208e2243622daa126b55afcdb826d966c4498b45d51c09f88a8e22028f0cae1360" + }, + { + "href": "./BW19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122095a6e596cb82e0f33a7cfe3104bc5c28655331688381acab72e2416080cb7899" + }, + { + "href": "./BW19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209c7dade27b7b1c149126ea77807679373178f6bbf725c5937d6787b1588f52d4" + }, + { + "href": "./BW19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af08bd9883d6168e1c7a5a371d89b21fac2599a18c5d8d1003225e60629fdacb" + }, + { + "href": "./BW19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220497d2da44afc35012d35324d8c11f8cb54c7c269459b958ded4273c4d872d325" + }, + { + "href": "./BW19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e7de7fbe1f0ff5df07f4c833e14beebcf52a92589ee853ef12a21352fb597740" + }, + { + "href": "./BW19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b8f4b44328c293698c4c52be080285e50c1698f0a0a90463cabce30fc35c4d4b" + }, + { + "href": "./BW19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ddd866e09ada231aadd7223bf7ea6b9be04f35eab2b421565eafe607707bceb8" + }, + { + "href": "./BW19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d70f85a6566f4119dd64f2e0c93f0608f3bc311a405b1eb118c54b703b8897a6" + }, + { + "href": "./BW20_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209a9ab518604aa2a0e8c30afc8c7d038b01f16f4549ed9fe892cd62dea760d081" + }, + { + "href": "./BW20_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c26b4811fb4d86ee78d040a6ea8537263ffc9e1b0cb0cc59523efe071fc93040" + }, + { + "href": "./BW20_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f302ab789c8560788049b116de980e4ef647c5c512726fdcaa8c6ed0c908e977" + }, + { + "href": "./BW20_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201bb03676b0034cc8ea6a5f1af8671726e709e08ae4ae41bf812ee02fcaee78f6" + }, + { + "href": "./BW20_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122061ec09873a2da4c75f5d42668b9c3777b86be9c824dc2076cfd43f7ca70c07f6" + }, + { + "href": "./BW20_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ee277f243d30a06efb7af5537e08c9bd553b88f31cf83706581aae3b5b402142" + }, + { + "href": "./BW20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122084d7c9705733e14e336cf3d485993d2326f646e06bf300ad2f561dee4657e8a8" + }, + { + "href": "./BW20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209d81bc75a0e1c129f60c0d9aceded8a21a73c7801d0505277d6e5790e822fec7" + }, + { + "href": "./BW20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204a864e60462de053f88318a5eaed3627cd4903606b0e83f71450b5967e477578" + }, + { + "href": "./BW20_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202abc975e85ecc96d55fb29d25bf88f8283904ac2f756751a5377644a2a406f10" + }, + { + "href": "./BW20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205a9f791127dbe2b9a6f6f43a8958333b567a75b1a02b0ac489c21e4d85ea5e8b" + }, + { + "href": "./BW20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fe81e3052baeb169933fc5549a0005ba8fed3186620b7b83b34fe3da024fa229" + }, + { + "href": "./BW20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c4fd06f447b0092110ae12a121fe9af9c1f078cd5930efefddbd55828da4296b" + }, + { + "href": "./BW20_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eb536f64528454d0921ac2ebd5192862ea0eead35abbc7e5238dbe6dc184e48d" + }, + { + "href": "./BW20_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220813c2926b0adef769610a047b1b69f09ea662a27f80516213184c36bbeb7826e" + }, + { + "href": "./BW20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204cab4379ab56ec281942b093b4842eae2922ac09cb5caa3f9c61a6aff673a21a" + }, + { + "href": "./BW20_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220815c770219c1d44cc98e5cc0f1e2716a2b1a6cb05d8d36fd6000900622a50f86" + }, + { + "href": "./BW20_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122080cd67c534cafc927318e213812cacd89e8a18e20fa6ae4d1ce2c4c58aca2e6c" + }, + { + "href": "./BW20_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207993feb02fc8f2ab263a95c10e7dfbf334f3ceda41de4687e9fd42746b7f79b7" + }, + { + "href": "./BW20_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209a901d99815d0625311fca49a8db7778a6f5c62af07952dee4e19731e2d20929" + }, + { + "href": "./BW20_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122094d890f5864d845edd62d883dd982d2ae592cce7a6912581fa8e331a02c88a70" + }, + { + "href": "./BW20_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206cbef168dd2dc71bd8557085513596465360d6ef6b218d4172b11c7e6c0593a1" + }, + { + "href": "./BW20_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220957e81d15e87ee9dae30e534ee8a91a76fda5b18bf28aaa88392c87db73dde3f" + }, + { + "href": "./BW20_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203b6d434c14308ce5d16a4343b45059b6b28ada9277a5284d1de2921335389fbb" + }, + { + "href": "./BW20_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208dffe9b4cbf46cd366882d1d4f8a22dc49dcf42f574ef847f46cec9d593164d2" + }, + { + "href": "./BW21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f334648cfc25fbe9ff26852745c6c58a397d15c0172674e3f064d742d7ac9371" + }, + { + "href": "./BW21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d6bf547995c3cf12645dfaf669e6cb47d22f80641799052a25ae1ddb2b80a9a8" + }, + { + "href": "./BW21_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fe959f0cf329a49bdbcb46831c01826252a87d39832d7ede1ebec4f5262ba193" + }, + { + "href": "./BW21_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122015bdc86b9571c4b268e7414a3d8ef4581592b57f98a42d9bc354bc0228814e72" + }, + { + "href": "./BW21_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122028c120bfc1aaa72a9772d2293fb408cb491b294fea9b5d3212fe6a8969a00b30" + }, + { + "href": "./BW21_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122055990d3326328459b94074358568a78c26e6ab1197ecf03b0dfe661ce3018750" + }, + { + "href": "./BW21_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087c94e665327b6a63d848da182afba275f40c7acafba45df10e8b66152b7eaea" + }, + { + "href": "./BW21_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205eef654ed18a531077ae59c2c9b01cd5dcb99abc198434b95d678d0c491fac54" + }, + { + "href": "./BW21_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff27650c2b74732948f78f9c58ccfd942531aa48bb4850d81129d3ff95cc7f0e" + }, + { + "href": "./BW21_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201cdd6cc93674b2acc05c927b4c0d2e3d21e82897d2918cf9ff5987fbaf694726" + }, + { + "href": "./BW21_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122074819e4cea6ac2c1cc1488ee504bc5e195c06882e520ef06372a2d4acebc4eb1" + }, + { + "href": "./BW21_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122047efa73003e38306d6ffa6a16d340003753aea4671d319ec60cdadd9157fc513" + }, + { + "href": "./BW21_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ccbd95cb255a96823b1ff10cc59500b086fe9448e3987fad0daada56b09ae7b3" + }, + { + "href": "./BW21_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122062e5f5f7f8928c8a100e68dd55c2a3e5bb7c20b42c85dcdcb3fcd240aca3d8b0" + }, + { + "href": "./BW21_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209dbdea40e52fc5fce7e7ff66b0bcce713747c1cafa46d3532586340fdb747bf8" + }, + { + "href": "./BW21_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f41dd60ea06b8280aec795e3ba4e8fb6c68b5f1d40c774b0ec6ae2d800d14965" + }, + { + "href": "./BW21_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fcf153eb9f683da9091ed5b72366afb1cc31d407b3b90b8fbab15bc387a4b94b" + }, + { + "href": "./BW21_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201dec3aa643011feef2b26991077e1bdde1cd6d7d2ca58265149527f0161e6d86" + }, + { + "href": "./BW21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122005c378ec6113593715eb50c63f7953cbd40df8a20979c912b7defdf2544d5af9" + }, + { + "href": "./BW21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207b53c2fc8620a10c5751037f807dbe4a908d803ca77e9fb092608177d552daad" + }, + { + "href": "./BW21_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209be75a3657eb62c82d21b02bea7fd12db9a5746dee0f2267163166762feaa1da" + }, + { + "href": "./BW21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201fbca5d429e6f726656cf6da1361b305fd2ddb22f4c4b9747377127eb0e0fe91" + }, + { + "href": "./BW21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220982c0ee2b58f9f26cce4d96bebaf9212fa386642a6262a24c184926e476d86b7" + }, + { + "href": "./BW21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122076784cfa05fe3e75b74e5f6e5ec15356563656ba426bbdbf0b3c1e56fe8794c3" + }, + { + "href": "./BW21_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220629fad76bd9730c16b6b125316def96ac8005fbbce05a8921de953accaf632f2" + }, + { + "href": "./BW22_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d2f47beac4823d7938c00e6479ab97cb7ecb1b5c52ea29ac86b2585a82a5da31" + }, + { + "href": "./BW22_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039e115b623af9e687863bda7b0170cd9c0864fc4b5849a4d4f14d8d719fc6dc4" + }, + { + "href": "./BW22_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d86f048cd7f04f5bac72bce84a08345494c9436ecf9498f68316326d2cbd4cb6" + }, + { + "href": "./BW22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208b1836f8739d909248a2de888064eed511d2814d55dd68e8ceff479e4324bad6" + }, + { + "href": "./BW22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122053adba48df890a201a6ac456a93967b3b5617db409e55aaa2f9c7c2b19582989" + }, + { + "href": "./BW22_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f05f56f530bdc113d39a26a30c55d03e300dec606f55b285b5db33e4cd977cff" + }, + { + "href": "./BW22_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200c30621bf1114a8b4b81539807cdd11a2c0505a58a9f7f1e127722b7f92abd33" + }, + { + "href": "./BW22_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209d06ca9c1368d25f209a31fdcd0bf79f44231068bcee61660847ec16145f854b" + }, + { + "href": "./BW22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b80dfd02c781178be7fe4fc66ce7c49ce2b75f1b96151811fe3c2208c2fdf27e" + }, + { + "href": "./BW22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208880e0c5bc6bc73b61d7c482773482d60be607217edc73fe5e54d2f85a904861" + }, + { + "href": "./BW22_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205ca9995a64fc82a040dc3c81174190d7d262a5fed94e28c755b24cef850de89a" + }, + { + "href": "./BW22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af6e8ec688a8f10f35fdc200cc23a71964c2eaf7d376c55344e9990ef1d2309a" + }, + { + "href": "./BW22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a820c2e26dc18a3589eae00f8bf1366bf1a99f9a6983db0b7bf2fcc0d0451d74" + }, + { + "href": "./BW22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae249e7d88173169c18cfafa69e59288d51c868cc8148ef0ae65c120d295af7d" + }, + { + "href": "./BW22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209b4fa4cc7aa6fdd2352d27c949da23d989b8ec329d2fa1e1d6ea77836e52cf4c" + }, + { + "href": "./BW22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122004ed9772f980dee68f9facca9259081326c7c94dc8c65139d0039eed75d5f101" + }, + { + "href": "./BW22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122037254dbc27168fbdd0b741c48d8273ea9f37eaee5baf28ca1acf7f121f459a53" + }, + { + "href": "./BW22_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122082736265be7d88e95a7e322867311720c596ace263ec9233617149f8519f93ea" + }, + { + "href": "./BW22_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122028e9ad9a4be6912ede07e22812f50bf83c05230e15d147cc2836664a1d33e0b8" + }, + { + "href": "./BW22_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d012d81ef044d43d1005fe288a5447731112a9bfbf6ccac8199a7481c1086a3" + }, + { + "href": "./BW22_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220407395b9a3b9a423d7b9783ded4057e26e4ab93833e79c6b35ea664f6faae20a" + }, + { + "href": "./BW22_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071a049002124158e8d641e08a404f248154ba26d98c147794c6bfcb536c2dfe1" + }, + { + "href": "./BW22_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202c1c99a8914fe49ebe51de255cd2f1e96cefe872d2ca1c0a606afd5e9e84f6ae" + }, + { + "href": "./BW22_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220791c828732f11c8f693852accfe0e54754c975d9caf4e31c7ef01823d5a3e901" + }, + { + "href": "./BW22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220de37a67682720b50ecbb1c2b8eaeabeb1ff0c6411b5934662f9121e1fee0595b" + }, + { + "href": "./BW23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea4125bc8ae07dca3f328051674913b015761c16b10327e6a2f1366401512175" + }, + { + "href": "./BW23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206f9c257b168cc7f65af7b70958e427b2aa02ef96df44a7c604f5113a18d60bbc" + }, + { + "href": "./BW23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204350926b2f559c05b8a65023f58aba0003524a57fd7e7ff1a0d15df39409d6a5" + }, + { + "href": "./BW23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220afc87f1aad5ab4e97dc0dae7924cbcccf19aa012028d4d4a1f67582e0f7259fd" + }, + { + "href": "./BW23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220351a22881941c3f3c4812a0d32019f7e08e0fd34c153c1aec17d8b43c9c5ed6f" + }, + { + "href": "./BW23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220734c0a144e441fcb0ef4ba7ca376cbfd6b0fe81d829db3cc3727cbe5238e3be3" + }, + { + "href": "./BW23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bccc0e958cf3e44aef0da8b0b284b39b149c69d52b97016c9aa24e96d547b104" + }, + { + "href": "./BW23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad268405efd02ebc86e94150cae360247ca9c51ffe251643f21d03edeb7dd982" + }, + { + "href": "./BW23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122029418b699b45cd72e48d58ed9339bc9638a2fe6d38b13ad53dd11c7abe25d967" + }, + { + "href": "./BW23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cd5ed0f1eae175d75a538291fc79056a950349c0be76b80bd8a96ddc57f095f5" + }, + { + "href": "./BW23_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a76a426fef4dc7e9fbad744d4e78ce6220d30c42c15c432712090e802e678701" + }, + { + "href": "./BW23_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c659a56467bd172baaca83d206e20aeee42b9f8eb5e2e14b549a669b635f80d1" + }, + { + "href": "./BW23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200203e0a237ad7cc493867d929ed8356c232e9346bac6d8607879a3703a9ae9b1" + }, + { + "href": "./BW23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203c99c1bed5f3a93d580364e058fcf54e9a760aedefa50977c88bef035f3f7f08" + }, + { + "href": "./BW23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209869d57a8e9e126149da05fe1a7fa3f4b15946d0cda52289936df5d19c774509" + }, + { + "href": "./BW23_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220958c9d43d8b8bc1822f7e01efb1490d0f4caf08655e712d01d203ff2ac497e0d" + }, + { + "href": "./BW23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dbfaebe85602fb1c643301f24f5e236caa33f828c5733b47da0eeba09a029f69" + }, + { + "href": "./BW23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aa9bd33caa4eeae31c9339b0058371100499b57261bf7420e93db81a0de4b9a1" + }, + { + "href": "./BW23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207ab4f77ff1ac06ccf9eec5440210f9413d6fd007b423f18f88903b64c18711ba" + }, + { + "href": "./BW23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f972523ff9651602a0098bcb69c04abfbceac8c362f6939fa1b3ce64a2fb5646" + }, + { + "href": "./BW23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9d1310e255d681e20780a066db49c276e3b22025776693a980599f3bdc69932" + }, + { + "href": "./BW23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220242c0bb308512a8d72f11f4a0e32bd32a71c19ab2d183b8117ab6c049567722b" + }, + { + "href": "./BW23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202882c866b90589af5dad2ec9e2cc413699c134c5fb2e46f940d96f3deaba6eb1" + }, + { + "href": "./BW23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220173d0a65fa4f082ddbcffb0877e11e8a31bbd0d2fa875e55e928e9794eb0fc46" + }, + { + "href": "./BW23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032d222e227373b22c68909ff59aaa73ce6138bef456dd8c1892d187804ab3739" + }, + { + "href": "./BW24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220093702a89ad9abbef31d7726873a4e77cd2226b9a7b365f43d831cfc615657b5" + }, + { + "href": "./BW24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207bb9837872e10981fc996c43775546d098d1c8a9e1efcf51841faebebcf941dd" + }, + { + "href": "./BW24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e19b1b6e9183fa8494c46fa108f10e07570ac7764f0695395fa3f3caca36c01b" + }, + { + "href": "./BW24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a8bb641bc21946c3fcdbdc89ba9d8b3baee6bc7ca9f1005ee2bb352eafac9c0" + }, + { + "href": "./BW24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209993e6447d6f548277019901910f0dcacf3134c04f6230751d103c08e7e50f8d" + }, + { + "href": "./BW24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f953de76cec8707b0c9f3b7539c20a2d6c583afc41f695e8d35f589df27a8e01" + }, + { + "href": "./BW24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122061468afceff31deb46e4af04805ea684bd32160634c91e04468c32740a435512" + }, + { + "href": "./BW24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c1dfc5a12c29cd7f7299447495380ea784c46539f6a4c3d6375db8a346c7fec0" + }, + { + "href": "./BW24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205298e3b2453c50312d6026cde2c7bd0f932e48c0afe32a3df25cefbcca278559" + }, + { + "href": "./BW24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d384a62cc39b50eba25289cad696e8d74559654cbc2a77d4ac3530bfbdd49cc5" + }, + { + "href": "./BW24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2ece70e8831565b90ef15a9e0cc4615c3766425a47dd3cbaf236f909622507a" + }, + { + "href": "./BW24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122024838b87e9f11b503741c819240883857df08cc3b3b5de42e95636ad36f783b3" + }, + { + "href": "./BW24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cbd2933981e71a3e6ce7e41bebfbfbaafbf175d2daddfef2542d1332383c5976" + }, + { + "href": "./BW24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c4f14a00ae26736201e2e9246661863e50f4262d0cfcf853d952534aa067a569" + }, + { + "href": "./BW24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209c94e2619e6abdd29c114ef6801ce6c5d36b59c586a83cc9ee34be881cdf899c" + }, + { + "href": "./BW24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203c78344572c81102dbd22efb0ae88955de3b86b3d44b894f0d8f2e3c5ea4d666" + }, + { + "href": "./BW24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c3f1174a7e727e6d919fa7c64750169ef33aee32a9d49574ee908abd1219660" + }, + { + "href": "./BW24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209ee78fb485d8391ac9eaf9d090dcedb84e16d883cb15cbe749270bddfba3de44" + }, + { + "href": "./BW24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220efd2f4ad06c68783e5a238bbd440d1087ae946412f1d6c4511f84117bc8c3bc7" + }, + { + "href": "./BW25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201f05e1c95ff6eb55b4f4c60dc7c1a6d589b4e2a6127047617dd3d94a51d4dc78" + }, + { + "href": "./BX17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d92d5821ba27ef890616dc6e9846fa202cd7d4fac6e4a5fb11ff969264bd6063" + }, + { + "href": "./BX17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209aa07878cc2f0c3534ffa2c8b283d5c8d14af15be7754cc6e49bf6fdcd3d2344" + }, + { + "href": "./BX17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206f41370679f4804930705209a4a1e8f39b4a35bddc0139daf364617bca693642" + }, + { + "href": "./BX18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220762813343bfa0d4b5ec64ea58569e76c69864e007de8a1b1a907a0b88f88c635" + }, + { + "href": "./BX18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220089a28633c66e0aa526207afba214886c03bf3fbe9b1eef4fca7b9be4e7d77dd" + }, + { + "href": "./BX18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220383cac100d2861533d90719c69f5814427aeb09c75135c72ecf389abad8c6ace" + }, + { + "href": "./BX18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220efb7fceb1cb6d0ce9052a0a889aa5a474c4accea694f1f5db082f8e4e5e0962c" + }, + { + "href": "./BX18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122010e755150631786f54cf38b9951e661c94987104b744dd09025142636fc7b56f" + }, + { + "href": "./BX18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201be2ecd539370df3eae05ddfc7a8495c31d91a580c09c293399a02bec3aaf2cf" + }, + { + "href": "./BX18_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220955f1cec3574c418e6d304251f7d41f0993c7b5d39db03561300e7afda1eccc7" + }, + { + "href": "./BX18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea93c843c8124319a75a266422bb3887d2067c0f366ad755def86d045dd7e2a7" + }, + { + "href": "./BX18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208fd24f1dd6174bc5437dfbb8ed94a8e1960fb3ce656162f700f066d7c72e2313" + }, + { + "href": "./BX18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a17d507dfd5a94129285fd7b680d435b9fe7eebb1c24a00bde6678f1638259c7" + }, + { + "href": "./BX18_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068d734ef3a5c508bf95c5e12c8a94408032f0b4344bedccec72c91753d776f45" + }, + { + "href": "./BX18_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a43f30d55cd9630e251c360aee3cdd6bbaf11c76b5d6093672062f6e9c403c86" + }, + { + "href": "./BX18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208fcff9e28a1eabd0dd2af7b69c1b7086d38742005fed72327af9500191a3eca9" + }, + { + "href": "./BX18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205a38ff6cd3ab8573486f52389665aad3a2681cdf1a27bd0465f72151e13db319" + }, + { + "href": "./BX18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d648fded6b4f90421b80d192ea9b3ce303380fdf047ed45b9f98035c44f04c2" + }, + { + "href": "./BX19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fcafd4f89e6ead810e8f028e2fabe80f7bc5fbdaf6c8de411d625c0641d92d3f" + }, + { + "href": "./BX19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208500045038b14e595744041c50f73e5ef507153d264ddf1478ed6cdafe082e33" + }, + { + "href": "./BX19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122084aaaeebf5c31622751281e2c62e727621fc1c7e9689732d80ebece9a8bc515d" + }, + { + "href": "./BX19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220853750d7f8472a802336f4c8667de4a10ee576416d0c14947e7d40ac872120fe" + }, + { + "href": "./BX19_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122026b2fc7d1851b04b7ac101acf36119286482cf87586b6f40ca724ab0ba74701a" + }, + { + "href": "./BX19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208cd482bfffcf6667531579fdb87e876fa90b4af24654a980beba23b79ebeb1c3" + }, + { + "href": "./BX19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204bdc84b42ff608d681ff09a647c79749dd8f9d28089d43dea992c986c1bab003" + }, + { + "href": "./BX19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201324cd604ec975c33deeba300fdc75ab5e8edb55b828ddc4acb5c0b5040d4270" + }, + { + "href": "./BX19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220baef694bb9f27d15bb384800ea61c3c6c412512cda7093e066e25f8870070b2a" + }, + { + "href": "./BX19_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204fe70371e8470991c032f46a907e1eb7b7d92507d645372fa54de30625324711" + }, + { + "href": "./BX19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203321c33473d9c401b77b0a3389cf0b0b124410752f0a116066395349ae7ca664" + }, + { + "href": "./BX19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122061194ee2c818efa90f37cd66763d85dd7796fc16cd261737a1397146aabcae8f" + }, + { + "href": "./BX19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d58a2abdd296a2ab24efd6bd3c60e7749d8b12fc93752ba17530a64e7a4a83b2" + }, + { + "href": "./BX19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208a37d50d7d82a4c897b1d292402c78d21db435525db96c5eccd7beb07b50ea21" + }, + { + "href": "./BX19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202730aecff1edbf8f2e8a49ae5c7d6b58b146a6cadf14cccee8104ac68cb22368" + }, + { + "href": "./BX19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a83c1c18c95805721d4d90fe8bddcfd81d8a8354247ddf92331fc7b90dc1d0f0" + }, + { + "href": "./BX19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a086e68f39d0c5ef3eabebbd3cf68bc04c08726ea884940ec2d6948ef63edefd" + }, + { + "href": "./BX19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e8ed715efaf770cfeb4bfbb2fe17e4ec4cab9b343f835bf9106e493a70836fab" + }, + { + "href": "./BX19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203cead394d38c4b50909945d37fd753a9f566e5d7220bf2c64a13fba0a3bd2037" + }, + { + "href": "./BX19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f9975894d4ee1db74f44f8395e0e0d9b7a26727231734af272cd187fce103782" + }, + { + "href": "./BX19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206145914da7403a3a0486b1690b864ae799cdc480df0a49550abe0be75c661d74" + }, + { + "href": "./BX19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067e41664805a6c856a94a06e2c5aefe55661f16bfaa2da2a20cf94f4bd27cb6b" + }, + { + "href": "./BX19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a0e4ae8d3d3279c1282c287e2a7e589230fa6107aabdf5015f7e5a69bd256616" + }, + { + "href": "./BX19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207b16a58056533eff5707e771b0d48ff7a52f684c9f61d71c457d0f926e4a5677" + }, + { + "href": "./BX19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e77305fa3893c7958c94ab8d83de9f2b8da3c2114fc858fd01b43ede50c988b0" + }, + { + "href": "./BX20_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200497e05668e6b531ad15b308130f6cd001d241f1b2d5acd06d24541fdb50cc6a" + }, + { + "href": "./BX20_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205681962e3fda3b715c957bdd91bd130ff17bf9f6bfdf586f96503b43da2ea451" + }, + { + "href": "./BX20_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209f60de63a7032284f587c0ef902c9a109555e65290ca17a2a056c4e1eae2c5ed" + }, + { + "href": "./BX20_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209b70d80c02c1914e4c7ba8d3204138c8238e5c1d5e02e02256489508ffc4dbff" + }, + { + "href": "./BX20_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220315657493ebbdef992362ba37c1051f70c01e602c368f786d9ff4d5ac70aec2b" + }, + { + "href": "./BX20_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c8e3accbae5a8bb56770a98e79c77280936136b5e8ffebc9e15a094b13576a6" + }, + { + "href": "./BX20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e1a276b074f4098e46fa7ab20d4aaa258302ffbdf65139c5310b27e502f4e51" + }, + { + "href": "./BX20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c7f5e616191fb6cead6e76879b01de26e84266df2735b2ef0fcc6b24ff5e5cbb" + }, + { + "href": "./BX20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e8ca68d7ae8b63672ad22b405a8830007812141ac99a7589f37fca17c3f3112c" + }, + { + "href": "./BX20_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e7089acd421eb3c5b76cc5e0951cad52daba8e16f8a3c43171a6277598e1e2ff" + }, + { + "href": "./BX20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122055f89c3a03b7dbdebd0e6910796b77209ee187aab477e4f1e6fb8dab474abfe2" + }, + { + "href": "./BX20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085749314ae057c7dcfba59c69e0c1844de2db52246b475db332c32a53bd878bc" + }, + { + "href": "./BX20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c9cdbd77337cf5e85651633860a1742610e5e89cf4cc4273eb0b094f91b3b81e" + }, + { + "href": "./BX20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220675ba213b1b0c5010cc1aba47efeb16f52402be624151042a506ee23f73c71f2" + }, + { + "href": "./BX20_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ff89996dba393284a76a33baac572fac7675ff67b84584b6fc6ec820daa1370" + }, + { + "href": "./BX20_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206148e098f33cef95fd118acdc6c4e9bf3d3bf1d2d636f6967b90f5959d755842" + }, + { + "href": "./BX21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e803e2e7e153e96af8b55e1be4f557ecdf6e6fee1831e8107efada8e255c25c5" + }, + { + "href": "./BX21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d41a275c7b3f56f991dfe797dd59f1c4dbfc82dae52d378b912a1a3e625f623" + }, + { + "href": "./BX21_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203286bcdd52c2b6671d6e9abe79850d52a78c6a94e3cb30cb4407a911e6ad4d2d" + }, + { + "href": "./BX21_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206bcd6cb51908d00357b1c0584ffc511976180cf504cbd4b019489d18928cbdc3" + }, + { + "href": "./BX21_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb2086b9595fe9330470fc43f923de403ae3daf649bc1f04944a3e003c90f0a8" + }, + { + "href": "./BX21_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220958a15dd8e5b3faeb967dd4be91105bd9d100a74b5eebcfbd81fc0d323b20b92" + }, + { + "href": "./BX21_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220852ca7aa771a98979fc98491ea35a317cd35eecb5436aaf3d069ab7a79cd09ed" + }, + { + "href": "./BX22_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220568f4798550354e45f6c189a6b4e72f3d315682fc7f5f0c4dfdcb69d250b2a14" + }, + { + "href": "./BX22_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d0c8a91e4d9d6428fa3b2527c71246aa65e2c97e1ecd93bba459c0e363fa5bf9" + }, + { + "href": "./BX22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122072584d7cd634f9a41200fa341e5483b9b9b3cb885164a2f6933014d5844ee3c4" + }, + { + "href": "./BX22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206c5c4f29ae5f4aef70385e8040302e0b0f8590ba8382c8d05dd38b5595db1652" + }, + { + "href": "./BX23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122005d5695123afcf7aac6ed080acdbbab2bba630cc24e02e3bbfe6d545ee8b20e1" + }, + { + "href": "./BX23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205bde2c6b916c2e559772c94e63ea64ef80851597ef30b26b69b67bcb59056357" + }, + { + "href": "./BX23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205f6c2d41d6f3bbc3365b0fa749e37d5663a75bb75e62854bafaca597260d2344" + }, + { + "href": "./BX23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122012852fa721d3a5789d3fc1a7ea5505e5d9f09f41c17fd7b39e66f9ee53f2feda" + }, + { + "href": "./BX23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204478d611da45bfb3e5434dfbfc707780aaa05625803fe416321c91db9c47bd21" + }, + { + "href": "./BX24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203300c868a97d3b7f969690b7a985c0ff664cc24e25dae06e61872be6764704f8" + }, + { + "href": "./BX24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122018337910eed48bc7a364a67b4f15c43c0be4f6dcd34aba35e8eaa7a9c3d9438a" + }, + { + "href": "./BX24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206a0292f585b0088e5151d83c75942cbfc40501ecfa604f56b9540594faa223ff" + }, + { + "href": "./BX24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b2dd14a10025765beb29ffa5df1487cd06905ba67d51f7ccc270bdd4f743fd8e" + }, + { + "href": "./BX24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220859314f284b7c5f4183ebee2a4028f44e862746d6d3fbb9cb8678bfd2415afb6" + }, + { + "href": "./BX24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122070dd180ed0afbaebe64016f28c839746a49815868ea5100867bc1895ac11baba" + }, + { + "href": "./BX24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200a812cec720c9a2c2651e323cab17414b5e9a79cbc94b23320c81b2b55960384" + }, + { + "href": "./BX24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b8dd0c7dea6d8b300a84e735a4abe8568310feefe982777af513b0a409642585" + }, + { + "href": "./BX24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fae203a31c424331fe9d80192b6ee707c76ea441366ec82df5052ee35ab754eb" + }, + { + "href": "./BX24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122073a7c3df8c90e2a86e9aec3aa57e11d1128b450d3054306fbcebe8f2f6f92ba7" + }, + { + "href": "./BX24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209d7cb1001cc3a123e222edfdc054564b53eb82c5ebf01bb5b184cf3e11f3ceee" + }, + { + "href": "./BX24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122060e6fa38cd82e6349e890c2cc3c222a752b286f9c1fd90bfd9c45d21488d6853" + }, + { + "href": "./BX24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c33baeb5b02779a840dfceae5477af7395795cc1c0791a5f05cc15f72cca0a8" + }, + { + "href": "./BX24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206d201589467c03bbf4f7e582dea93ec1dec42ff210022fb8a33cc8289e6b2788" + }, + { + "href": "./BX25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200c2d6f0ac12843179f4b13e468f7d543f3163a048f8ab72fa2bf33bd021ffa4a" + }, + { + "href": "./BX25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff15688df76cb2914daf7abb90e2383915d24645823faee0a0fd8badb6c82ab1" + }, + { + "href": "./BX25_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220271105e7035c224518c498f81cfa2fc2898b919a916655edffe0abd79818135b" + }, + { + "href": "./BX25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023f6f891b28c9e9adba8628248c74030168331d5aa0356615b03399700c8fba0" + }, + { + "href": "./BX25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202d2021110f992fede098f08e7da8dc0966de4c35edb4aed2d808d43dca8fa790" + }, + { + "href": "./BX25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e81fc15669412848781fd65e834dca535c1fd0679b0c96fbc48733be12f8270d" + }, + { + "href": "./BX25_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f6c1dea489d218f19482bebc6181aab61edba6f6f23aba8afbd4858a87e9b30c" + }, + { + "href": "./BX25_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220514327007c4d5f0ac4cac46d6083b761a0d05d5ade71991956af72869802ff78" + }, + { + "href": "./BX25_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202166d3f61be5270939642d9d0a9c5942fbc5b3a6f2796a512b1e2be57344536b" + }, + { + "href": "./BX25_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b6ca194a37131cb68ee67796ce3b3d3b15c66cae74e0be44c79baaec9d183b5f" + }, + { + "href": "./BX25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2f414d9e4a126f48e0a42493e07b7b1eeee3b1d7c92734e21419c26f9dc64d8" + }, + { + "href": "./BX25_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d7168a1535afec488864b8e5a70f56956e7cf1e58c824cea23134a0781f37b02" + }, + { + "href": "./BY16_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208385e9cfa17d81c53a6c94b99124ed80a2558983a640b5d4e0e375fb6282852a" + }, + { + "href": "./BY16_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209fbafb9496971f0d54ae8870ffea4a8ee70312c320fe19a34554ab54474bb8e7" + }, + { + "href": "./BY16_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a3b56cd7a5a6ac338a9e0953f3df3fc9ea9a18afd99f522e657b404c46d0f7f8" + }, + { + "href": "./BY16_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d5d07106846a1f76331c4ae59368ab40c4ced3cb0714c8543c16244dcb4068bd" + }, + { + "href": "./BY16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208bdd148e09fc3c583fb74ab757996305b19a5f3943ca0089d77972f924d78389" + }, + { + "href": "./BY16_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209f9b86a7b9af9ab4ff68dd0b88f3404aab93446c97f546e01fe5b843ecb63e0a" + }, + { + "href": "./BY16_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201571ec32252db69202c3f4c9db748e07bed6ba168b4572b1024f796e7c8f59b5" + }, + { + "href": "./BY16_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208cbd5511e19fadbe534a2a26fd653aaa58e4a15f59902b49dc2df825dbbe5a3d" + }, + { + "href": "./BY16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206d3511981060ebc4f7ee58bda480d041617c96ae4a0c431ff433e5e8a82fb430" + }, + { + "href": "./BY16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f93a903e487c66d2b1e97751fb31fe10f0af401edde41c4ec4413edb47cbd1e8" + }, + { + "href": "./BY16_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dbe56ef1ee24c47d753c2d8c95d46085235e34640b15088c28d8bbed4acdafe1" + }, + { + "href": "./BY16_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac5bac0c78521283b92fcfdd835529dcef2a69f89f94c7da7576e3a1f1d56aee" + }, + { + "href": "./BY16_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c8721c8ea183e9d3a56c1ee0d0a4563217a8619a08e11a987c543ca51810c25e" + }, + { + "href": "./BY16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff4aac39a96391461c15d375d3bebf61b81a415591e30eb26c00236535234def" + }, + { + "href": "./BY16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122041c99cb88d43d979f5bc5866d4d0a8b1a4b4d96cd6405be737a776fd14dc5805" + }, + { + "href": "./BY16_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122086d1a745d3a8567ab48f16841201d20c0b102657cbf879b1ae759e856b0785e1" + }, + { + "href": "./BY16_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209077e4648caea144b059c2f3de0e73969554cf2d2e4e122b2d934fb64f419911" + }, + { + "href": "./BY16_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200128e0a3d389e49be06f961bca5b6a65125fe50a5c6b7c64f78b9fa9bd5c6e9d" + }, + { + "href": "./BY16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202831f027f9f08e19b535b93278583d82e84a91a678004b04f3fbd794a383a0d8" + }, + { + "href": "./BY16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1a639533c66ec49a1eeef1305f154aa253044534e2da8c421ba9af98d2a3c5b" + }, + { + "href": "./BY17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220be701fd5a5351872cc51de075ec0027d04af04ad4910a12cd481322822cffff1" + }, + { + "href": "./BY17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203feb7d03a6310de1b44b382d662bceb1cda4fd9d11d4b69bd9301613d7ba4081" + }, + { + "href": "./BY17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220538fda05a5b877f26fca61028ca4fb912657988dae087071ddefc7bc7e40ed4d" + }, + { + "href": "./BY17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039bce63d6ec9c49b4f461c5c136b0c90fa3267d68a94f58669bc4b9a98c03504" + }, + { + "href": "./BY17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122022ed5a31a08e956b5de30c41381377ebfd0703338bcb2d84f49a6efa50a4380f" + }, + { + "href": "./BY17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122028a57fd77d0ecbe928cf384ca87bbdc61aa76f6c6ea4c5bf6fa9eca736156070" + }, + { + "href": "./BY17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122089c81a0564b6053dc3cf4b414e3119f8d8751d967e21ceb9eee7a00953bec813" + }, + { + "href": "./BY17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f9ae902cf865225f2636e19c736e7f77a9385a413f19d9e312149245608e683d" + }, + { + "href": "./BY17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e3e37f9c35dfc9c014bf4cd413365bc5ff58e75413b252e478c635ac471f8ea0" + }, + { + "href": "./BY17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203849d064e87ce3191a376ae6b948f6c6bc48f677b877b25c09d42688f90bea94" + }, + { + "href": "./BY17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068e7ec21221d9657d3d3b43b4d7f246459efc993cc8a4714adb72b349edf7402" + }, + { + "href": "./BY17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d79f84d4e15f0851a1d61fc4e1c13b7e8cc442aba53c863c0c9a240496af69b1" + }, + { + "href": "./BY17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122007d8eec6a3e16c27ead7e6e9f7cefa36e0cce8d5689e3ae63060d5c0d488fb0a" + }, + { + "href": "./BY17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207338fc1ecc4be45e42fa2093d91878ad9d7754bdf3cb9e352db90a8f63415a55" + }, + { + "href": "./BY17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e3b84588ece82fd1e70b618ecbdec19b6053b66f889e5da34b033d477aa4f9f2" + }, + { + "href": "./BY17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a8113720354b6db0336806986b57ee63bc78090cef1431ca37b1e4b73b446f08" + }, + { + "href": "./BY17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202399b3c7f21acf8877b54bf07063c9614394db84f1f2b17afad697f2e7e5d899" + }, + { + "href": "./BY17_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122014065f6d7789fa00b32e7fc32829ba351222837bdd5f9837df17cece2eea8cdc" + }, + { + "href": "./BY17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220119064d9f80d2df333645e238ba5588493af06dc44a59bb90de7af8b80fade2b" + }, + { + "href": "./BY18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208280eccf80f8f267825929ffd3e1d3a679a609476980ba531786676d1d60bcdf" + }, + { + "href": "./BY18_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039bbd301350ecc01d0b35503b3976cb984607eb4123d63acb235c06b674ed0b2" + }, + { + "href": "./BY18_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c5bbe4e089e03c0c18a7d9f1ddae464db6b1352c7b70d67814fdf005aa635d16" + }, + { + "href": "./BY18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a375c0ab7fa89885c0dc3d3ef8be62a0462c3c0bf20c22369ff246dcb314602b" + }, + { + "href": "./BY18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205dac3df907abba650deb9cc366c1313d913221dd1bfb469712fd683b5493d681" + }, + { + "href": "./BY18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ecf5c873c8f9d2493597d8a84d6932fab2ad1646be5e31a67d46b51deb7f840a" + }, + { + "href": "./BY18_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a41947ae7c9f11faaa0f095fad2ea1d4cb63b9644fb17b9f1b4f23b83dffe830" + }, + { + "href": "./BY18_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cbe0972df857ed0bff7ac0c6b5719187e9bd0b638384ed2d875c7518c34d122d" + }, + { + "href": "./BY18_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202e008884c3b2d39794704839aa107c69e020f9c11777469b3cebdee6e4a940c2" + }, + { + "href": "./BY18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c874cfd5f3766d938d7d82fff191d2fecf0396e161f15dfe06284f75d58b2d08" + }, + { + "href": "./BY18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201a804a15ce638af6bd107ab7d75f43c95f5b06180a03a795d67e63ba5a5772fe" + }, + { + "href": "./BY18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d517820eaed6483785178b3fd94771f50b2de40ed944436eb0be9186ba46bf58" + }, + { + "href": "./BY18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204faf4c64cbc038da17156312f56f131c28876b5c7e850e7734fac7c5bb08f5ae" + }, + { + "href": "./BY18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201b6174dd84981f41b39f29c8465ac2a57cd5322526724c72f229ee7828aa5d52" + }, + { + "href": "./BY18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220408cddaeacf2164883ff0bbbc118884cfdbf3c1d3334e609111715725a3c6d25" + }, + { + "href": "./BY18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d4cb3b2d3f59e77ab2ae16bf1de16e39dcdc5ecce69eb5886f5b50a60113c689" + }, + { + "href": "./BY18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b3c7dc8edae637c2afed51c54cc683191626fcdbb5947a80b57381e446f4cfe2" + }, + { + "href": "./BY18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bf3216dcdb3eb1133ed8394f7e0243fdfdf57639cdbdf78614136888d69bbedc" + }, + { + "href": "./BY18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201659ec4aac2bc67d8e526d3fc511285bdc6054e3bab7d71d8af48fcec0e2d4a2" + }, + { + "href": "./BY18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122055bd0d19ef39fb73f219adf2af6b01658d70c7e21f5c095a187db34644a187a9" + }, + { + "href": "./BY18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a475aa63f97769bca7780307db944f2c617cfe70418a77415934a0e239ef6a3d" + }, + { + "href": "./BY18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204eaaeeb914704390981c46b7f89cb4f83d200c7a4c251e88ea1ca7e03e46960a" + }, + { + "href": "./BY19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a169fba746c4d41480a3ff099446fe80e5a1784c3538b812f9c372b364a5255" + }, + { + "href": "./BY19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d862adaf1e185e0a3cf7148f67c1b4a8668ba699317b15cf4ea70402061fcabf" + }, + { + "href": "./BY19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203cbf29f016ea54fe1d965b627ee165b62cb5b00b1f29b03e8f498ea0568167b0" + }, + { + "href": "./BY19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122022720b7a3bb9a46f316dadb747e408ebf4e219fcafba83ba4e95e8ef493562f8" + }, + { + "href": "./BY19_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122089d715cb6971132db6677529754ea784f4acca4300f7622a25b0ad4b1a5670a1" + }, + { + "href": "./BY19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220afac360c9f5cc42ebdaf151faa8bc9847366a9019deaa35e068a8696b352658d" + }, + { + "href": "./BY19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032083f7b03572b64fec42b4d555f9329baade7c368b2efafd91e95d2a480e876" + }, + { + "href": "./BY19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce82fbd61de62fd573f62962dbb428acd4e318e5ecddefa0377ed82aafc7f53d" + }, + { + "href": "./BY19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f59d35d54485b7139cd467ff29f28f8ebdb0c64b1061d858fc780a923e45b16c" + }, + { + "href": "./BY19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f2622105ffd45c4bb541a5959b4c60588f7bc9e5450c83ce2ea4a21e979f0152" + }, + { + "href": "./BY19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e9f628386371691f958af14edfad61a34d962861a25c9b7e7ed923e44a5ffa1e" + }, + { + "href": "./BY19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220632b7baaea6a019e818c0649ec234cb2d09d1cc6b6c77021c68afdf533a44eb1" + }, + { + "href": "./BY19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205ea410fef51f3d74456910716c785a52b30971e026bd1176f1ab42d5c6f28d4d" + }, + { + "href": "./BY19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220580e51a48a14ecd832740d1690012c07b98589135a376c895e10fb82873728e6" + }, + { + "href": "./BY19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209f29759b01db22d29601b161c9fc6d3464a86be2fd831872370cca2240369250" + }, + { + "href": "./BY19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206140ba6fb22d6f1ce6576b77c1336d4e48536ae48a4bc5f5e4cb8d9f78f5bc38" + }, + { + "href": "./BY19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b63499cf95d587d61c868a0d60d7a998dd17f6ac1a3c213c6a86d4ad0c5cb311" + }, + { + "href": "./BY19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d957dd7dd0cd12992eb639bb8adbc753126a673cdd1d6d367d76b3f028c65cb5" + }, + { + "href": "./BY19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207ceeb2586de2a700218dd2a7fb43c895173a78232e7148933293aca3bca8fcf0" + }, + { + "href": "./BY20_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206d454ec5f77395bab95b9450ca8aaf31ce9b6a196961445b7632248aa5f925cb" + }, + { + "href": "./BY21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c600b6592319c20598b6fb52c16d330af147e150b6fecc8a0e3650b658a12d64" + }, + { + "href": "./BY21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122025682602f774dbe4f68879c052a92fe5c2750f6b25fe1290af7df81c95956cc3" + }, + { + "href": "./BY21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d1068a781dcac77d755e927bd1ae994c69b89082539ce8b69a5f514dfa6da314" + }, + { + "href": "./BY21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202521bbbe8dc289caf452b0ac607abe3e9fbe6c02825b15b0bd33d52fd8eb1ede" + }, + { + "href": "./BY21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205816c85ecf776ab386907bcf927f30003e0983fa54f2a894e383aabfd250ee27" + }, + { + "href": "./BY22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085a63e6a48c61c9c05378c7803b6182fbc8b876eead24ad326416d22d4f31eaa" + }, + { + "href": "./BY22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db18d650cab5458920c0af930f3606cbb92a225a9090da89b609f0b0d546feec" + }, + { + "href": "./BY22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207acb80efd875fdc83f8b9bd991b5fa77782883dd91bc463b2baa848ef0396ee3" + }, + { + "href": "./BY22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fd8de87f49109b967db2fe072b64944d321c82374df39bddfda2a6cf7769079f" + }, + { + "href": "./BY22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220faec432c3477f2215da3bf12b7c0de86bcda2e5e1f2ca5e265254d3753132e4a" + }, + { + "href": "./BY22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220214a5266a60d3c787881eb7aa71633ecad0c4295f6c098fe50f6d01ce192fcb6" + }, + { + "href": "./BY22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208a8ae3138d06cc58baf541cf9d574ae6fe310dfc3f1d985f689bf75d4e025610" + }, + { + "href": "./BY22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220579301c3a894d5b746f73b249d5912722048101c68e0ec33c2dafaae6afab319" + }, + { + "href": "./BY23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122056c2b6d55b2d5354a0ebb8cc627c3a7c848f7128fefb79e49b29126f27bf5f04" + }, + { + "href": "./BY23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200a3f0b81987396de92fefbbfce948d05bb78a828a1f2d7152cea7d89059911b8" + }, + { + "href": "./BY23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220250ee895ea7cc964a83a2d530309dc797254ce06227ddf56c165c3bb4ab24b6a" + }, + { + "href": "./BY23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a505236738345a7a29898d34673d1c0e34707cf0cca65f0d0d9990b96eda9595" + }, + { + "href": "./BY23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122099bd6ff986c973b5b3900c7351d9a272b0c3a4df46cee7f12f11768179f561c8" + }, + { + "href": "./BY23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f8ead99c7b2d3ef1201ce890aad4388d3ccd4d64ecec6f9f2441bbd945edc86f" + }, + { + "href": "./BY24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c3317115a46a5ada3a6b72fc386a648e014a85e9a710aeaaedc3032876e9f03" + }, + { + "href": "./BY24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204f3c2f886ca62dc1e55dcb0ee8778d58d9518b5ebc3d0935c52e203fede2919a" + }, + { + "href": "./BY24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206d9f832f91f1c308b85e0f988405944fbc732717e4ad1e05ea59820e01d20533" + }, + { + "href": "./BY24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122059b35ee73524ac82f094eda2a258ccb4cd7eaca59e60d42453ba9590a0de1d18" + }, + { + "href": "./BY24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122078d31482db48ec7f7a184e39f39dd00ab9c80e96500803bec013cd5525bb484d" + }, + { + "href": "./BY24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208f31c07f12160f46f620fb14c78f01646eff1ba3694beda5c69d350c04d6cfcf" + }, + { + "href": "./BY24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200724ca3858c59566c5057c2829f0c1461b6d874a634ae031cade85caae199206" + }, + { + "href": "./BY24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200e55a699d1695a9ffdb9b669f00cf401d48bdcccf51aed2b39bc05b4a30edd76" + }, + { + "href": "./BY24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122075e5b24ab22e30a7aadd4a01636091ba2a4f55e7d0df363923917671826590c2" + }, + { + "href": "./BY25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b226647cc3f070718eb22d6997e300c04cdf31b7fc9d004b82b2414eaa9b2b4f" + }, + { + "href": "./BY25_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b0f7dcdefa3c7ae9cc44df214c4e36333f8a78633ad43d28ccc4c0723f041f4d" + }, + { + "href": "./BY25_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fba88c322e051d2a6d7bbb672de265fbf7bc4dfe035954cda0c2e0adefe492c6" + }, + { + "href": "./BY25_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203717d94743e164af78788ba383f056fcd09f51d5e91ec108a668c16ddd4bfd54" + }, + { + "href": "./BY25_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b71bb1e1191a73063fc0ec060f54b300d988b6bc0026551a94441634fb74ea2a" + }, + { + "href": "./BY25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dd9cf28114f6a7082363cf335ee0490f13741cd9a507c117bad72c256075ffcb" + }, + { + "href": "./BY25_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d7ac8a2bb790900f6b16d9f4849be80904009b304570395b4ac46ca6d68abcee" + }, + { + "href": "./BY25_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aa118db7b8505b4621c5bb137b597f07d5c8aadb4ec758adfeb0325d7d5a4034" + }, + { + "href": "./BY25_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206db815f3c23fa0796c927836441d58ac4bd6a6d941f4c78ba632100bc7e2048b" + }, + { + "href": "./BY25_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122072fae68e03296c4620c7227b0b4668fb5c61b15fbaad59be76187bb1e55ba49e" + }, + { + "href": "./BY25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a1efe6e1f8e3e0e7cdee7e4b97447977f43bbead4a54fa196235e717fc9d06e" + }, + { + "href": "./BY25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220de5b4f293c7c1dbb6d61f9aa67db9483d927f104201d95415443b29b5973074d" + }, + { + "href": "./BZ13_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f8a00f1eb91814bfc658de6b18e88581dfe9bc210436f5cf1e5b5d7f901bfd0f" + }, + { + "href": "./BZ14_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122037fc36444cd84b0a26100c3f7d3b1e2bfd425a1c1794a04d20cda7c22e9f2eec" + }, + { + "href": "./BZ14_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e9d4081bc46f6d27271a3228a6b7ef85e91c76beb5cb0106a5d8a522ccf94c35" + }, + { + "href": "./BZ14_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122088c32e93a2dca871cdba10d2f13eb255a94a3a626607fa0f90e0befe7e9394f4" + }, + { + "href": "./BZ14_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220327692915d796854d1e4d76042185a32fec042b2fd0ecead5ededa6c54111885" + }, + { + "href": "./BZ14_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122015a4580ad5545d2de7f396d5a0fe8ac569462da96856d07c069c6dba520c8eb4" + }, + { + "href": "./BZ14_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122095c2ace87a24b6ac6aabec48886d42a9ccd11ac81f70615fe998e78236d6d1e3" + }, + { + "href": "./BZ14_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209122eeabbb525ea203543c59ee0b3b7768332cdd4d633c2f5853d8c8eaf49a65" + }, + { + "href": "./BZ14_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220301f6e41f9c0a8a7ff838352a826c98e0af2d442a7a30528df8533ff4a7a7113" + }, + { + "href": "./BZ14_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202edcb433e8189e1228a6421e53bd837ed9d1d3355417f9f09d52256511def82b" + }, + { + "href": "./BZ14_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201fc49e0c6e4411e8dc926d48b7f2af6ce146a137c6d7b171725f952495ce34d7" + }, + { + "href": "./BZ14_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206b7c6733dd5cafec67421a049be9ffb477640e63810c8e4f3e2fd6e54382c48c" + }, + { + "href": "./BZ14_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207ca994942a2d09a55362dbf88ac9e9e0e8d0b50d3fa416d36f60ff465f7beb0d" + }, + { + "href": "./BZ14_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205d942d18aed1557efa85b27c94dafff429e11e3203edce4806532cbb346ddb3d" + }, + { + "href": "./BZ14_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e7eab644a7a35fc5fa68c5d3392f0989ae1a3832e44cb45322713bc75d3b734" + }, + { + "href": "./BZ14_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220496d709eb99d911ace9804962e25fd58d0e3c32ce3819029ccadfc4e97c3d647" + }, + { + "href": "./BZ14_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122017e45ab8ad43d19f563056236e718724536427ab1d96a23accf1b5eb05d31d88" + }, + { + "href": "./BZ14_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220006820ec50f9bb4dcd4b14bccbca29bb3c54106397c4ffb25e4b3c3638479118" + }, + { + "href": "./BZ14_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bcbe97ac64ae08589ebb6a32edaf02347d904e1b53eb5263c8d28f7e52d17f42" + }, + { + "href": "./BZ14_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ed0be69b0e8677d69821e524ec066a2fecaf501e94b7a2a3c0510221d760b03f" + }, + { + "href": "./BZ14_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce77f3d7d43f704b5d6963002ac300e6dd865d803c9b02b520177ad561c48b7c" + }, + { + "href": "./BZ15_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205f6a66860a55ffa746c353bb052c4e5f12e8ec90faf87fed9fc1a7887ba71764" + }, + { + "href": "./BZ15_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220586230f86599e53b52ebdcb1496f0543f29f5be5fe2fb0a9ae35ef263cafbfc7" + }, + { + "href": "./BZ15_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fc6a267cc2e20cb683dc8008b6ece2d77b506f9acfe6c16575d8c54207290e69" + }, + { + "href": "./BZ15_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122026d53ca95bc2c2938e3e8a6c3994dac5b34677a0be9f86dca88dc20fd2c8fb3b" + }, + { + "href": "./BZ15_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c8b5caa61823654e4a4f4a0b23055a7558403ae98b6faeb11374d891f2b127ee" + }, + { + "href": "./BZ15_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122086bc206c332fe33ad0b31f0ea2684a9dd369f2d74001c3231ce6ad019eb13b75" + }, + { + "href": "./BZ15_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ceff02de730cef6d4f375e7982bfb049da06cde3bfe939d8200aae66313e93b" + }, + { + "href": "./BZ15_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200aaee111b66304ceebe70d2ba53ffe0ad464d01a19b87d58d61709c36a8a83ab" + }, + { + "href": "./BZ15_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ae5e4678f502b8d23545db712bcd36e4896cf1d5cdda3349d5121347ca9fad5" + }, + { + "href": "./BZ15_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122055248685471f40410d6ccd20ac5e29b3946ce152f665b465df805c646d4c18cf" + }, + { + "href": "./BZ15_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122035f911b8f0c725bcf87a897b8bd8518065e184053cda9e9195db329ea4b06bb0" + }, + { + "href": "./BZ15_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a9491a221f294ad394d254eee036825855fbe96dd3b0ce81a8fc5ecf2d92ad5c" + }, + { + "href": "./BZ15_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205ac49ec2bca075697a77a0f8dca9cfbb86b43bcac6ea04d439bc102694cba019" + }, + { + "href": "./BZ15_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a7978f547f8c4cbd538e17fab5896f55a97f0ef06919eddaf6fbe396953b59ba" + }, + { + "href": "./BZ15_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202b9b91a3c0b0091fc6e306634f38d1106589fabc67e487e5d592f61a457bffc3" + }, + { + "href": "./BZ15_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202463d78e479076f0852d70b7f978e42bb78b6f885cac33f2dcf4228d49e5b78e" + }, + { + "href": "./BZ16_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b05da06e1037c7af6f03f88b7945811bccda6de13ac875e1fc810b56346bc5c8" + }, + { + "href": "./BZ16_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d1cef0e7d7916ee128df5ca3bb81164b03ab2d557f40e371b8e631fe846fb10c" + }, + { + "href": "./BZ16_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205ea57bf0ee7f4584028b4cb16421079fda5685ec189a388abf2f8710e97331c8" + }, + { + "href": "./BZ16_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201e22699f19c9b50888981b50dd221922352127ff73a65c179d7d816d5f547bdd" + }, + { + "href": "./BZ16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220508ae59d1e159616f2858e27216bc6d6e934d821238246eee876938b551a351f" + }, + { + "href": "./BZ16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202d83082623cc7231377d1f781e4f5e0b875d4d7cae1616b983b0ef3ba3979229" + }, + { + "href": "./BZ16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d94ce4f5c2f84535ab90e325cbce65c14d1ff426da9abc24b95514c0bf8e67b4" + }, + { + "href": "./BZ16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d62bbeb5c90b47cb56a5d7ee91ed765f43c88950e8abff5bbd018673dc1821b0" + }, + { + "href": "./BZ16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220afb5c8590439d103573c2b12bbcbe91c3e14b748e11bc819941246f7abf9cbfe" + }, + { + "href": "./BZ16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122082f84556c980c56409786a5ffa62f2ef20b1bb53af65679f722ab3cca1f523dd" + }, + { + "href": "./BZ16_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff8fc18a7e02207e8599a61c55d42825bd2ae870c6304b9a85a8e50466d24e0d" + }, + { + "href": "./BZ16_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202993d46bd2886b47aa7c96fcd18b2da9bcd8fb824ec03970f314b736dcbdc867" + }, + { + "href": "./BZ16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202af5721ae06ea4c9cd881caa4c5f122462a1a9962de5890cc2e69d79c391e53c" + }, + { + "href": "./BZ16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220511333134803cdccab07b87ac3b1eabecef9873aa75d896a40137a5ab1b853f1" + }, + { + "href": "./BZ17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122073dfaa8e550db79c9f75a11b3abac61abe6b043bf79484d158eb6f7ea08abd0b" + }, + { + "href": "./BZ17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203082104de57accaf314f6349426ecd55c1f3a7980ff0fd8f225712bf01d3c1f6" + }, + { + "href": "./BZ17_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203de14ac79ce0cc01289da25bdad61146ec167b7c45842e738b19765d4bb5666f" + }, + { + "href": "./BZ17_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122084b971c82ceddfcf8ca9a37f65b55788dcd83b3f835035c210507a6169918586" + }, + { + "href": "./BZ17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220423fa19b228a39a8d0f326fdc791f9655a4f4a9c65d92d6a6f37bd96e01e71af" + }, + { + "href": "./BZ17_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122006bbd611061a525f59225bf8276640cd7213fc873c50532acfe9227bcdad75f6" + }, + { + "href": "./BZ17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c9f351b0269d2229acb1f2f81e1cb88e2631ad8b360903b646f0885a41e3ba99" + }, + { + "href": "./BZ17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122082464ec5d64b05f521a249193203fb57cdf3a798cf219fe488a9a966c51910cf" + }, + { + "href": "./BZ17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a51eca528a70b90ceca7d3af1c221455c3bb4fa931c4189d88f030392392ac19" + }, + { + "href": "./BZ17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b89e84b1c904501b6bc541a83feea9b80e915318328d4139d0fbf597745c208b" + }, + { + "href": "./BZ17_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220522f08cfc0e6b8370096e47e5047977e0b16d9ed2703cf2d1484e5903e641e92" + }, + { + "href": "./BZ17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202c5437cafff38e1110f7c667bb93a5443c0e649c3d5451dbfcd8d5f2cbf079ab" + }, + { + "href": "./BZ17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220698c42efd7284bc7c19d09d9b33c081645d823537fd4187b284560960d5d8a94" + }, + { + "href": "./BZ17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b5ef3d8a7141d35e319215c05b608ddbe952002a46fb5020ba9b143ddf283b43" + }, + { + "href": "./BZ17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d4ff9dfc055bccb69eb27a1a09727de2c3365ea9d06724f0c20f0af29e449577" + }, + { + "href": "./BZ17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209d2d177ba442a53f784d2a206a016439314a27b54fbcec6f9b505a67fa4a90f1" + }, + { + "href": "./BZ17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122070c8e5afb6895869bfc17a3064f185280e16461c87691ffc58fdd57748c6091b" + }, + { + "href": "./BZ17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b6f6c3871c0494cea033ccb02bb3df2ce0af740b0f110e62b7e2595f6ebdea2d" + }, + { + "href": "./BZ17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220871b6d06f55566da4c180931964ca5879013af69d5de5a84ef6b388987af07b9" + }, + { + "href": "./BZ17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039443296bbc45071b3131991d3433e7cad73899d3356491082b969c019c792fc" + }, + { + "href": "./BZ17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122076635198a7fd8a835b2517b984b438829c9b06f92669f8cf9c75beac9f0b303c" + }, + { + "href": "./BZ17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dc3dadea85c0b766298587a7fc07ab1668c4a61ce5da66b3d80d96b073f3a326" + }, + { + "href": "./BZ17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d3ce40b2ddcffc5efc2a84aca778a5012d2b655289f2da4dc63f8cb5b152cb7" + }, + { + "href": "./BZ17_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207570704a01a20986baf95353605f68e352f831a89ba7d4a0f4518139aa7ea49a" + }, + { + "href": "./BZ17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c13f942d5e059b7c5d4f97d26199303ccba1a3fff35bac70ad5e40d5889d9a13" + }, + { + "href": "./BZ18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c7b5c23c643d10eb52f308231a81d56c5786ae442424a7846da00e9ae46bbc19" + }, + { + "href": "./BZ18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d4b35577f719a67490c02e8a1e726a2c81578b52d90262b0e120ddb8844bf326" + }, + { + "href": "./BZ18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220402033bfe23e284335c645dbbe5b38342b5910f870aeb14d5d192ee871c60e12" + }, + { + "href": "./BZ18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fbdd99ab6aad5803d4c0fec135fd37e5fa743386a1076568932d676209302eb0" + }, + { + "href": "./BZ18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204723a63ccc3197d6fc52d879f52dafdddd93595ac2ff7cd922874ab67fc0cba4" + }, + { + "href": "./BZ18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202897cb6beefef23d09db370830416b6e833ce948c765805dbc2230c3a8b1b61e" + }, + { + "href": "./BZ18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209df90eb2f1c2054bd5f54be43effbc5db1a9351032a396c03f156a87c267fd5a" + }, + { + "href": "./BZ18_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aa92e713a9e87fcbb48fd9d0e726ccce66917a41bab11c2042610814abd1faab" + }, + { + "href": "./BZ18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a50184f2e730ba36b03fb8eeac0f033fead58e3615dfeeacb4878f368f15584" + }, + { + "href": "./BZ18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cb643a063ab842c254b01b268b8e7d90e4eb655c8ce3554a967687a7b5210fb7" + }, + { + "href": "./BZ18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cd8a080324c86364c1231d3df8a9865c6dd48446b84d525b233fcbd6f79d553a" + }, + { + "href": "./BZ18_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220acf9db219a721b6607642fdd1c320525c1e190a069c097c27c18e419a84db2ae" + }, + { + "href": "./BZ18_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207cd8e678cfdbeaee85f1231172a1741714f2291a890754391768f981f9482dd3" + }, + { + "href": "./BZ18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200cbc521574133d83c3d444b74c51a4422446ac27c80b390cb9a5a0347cac575e" + }, + { + "href": "./BZ18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220632cc1c178be7aad698d0ac936bd160551f4cae9675658eb688608e907dbbe0c" + }, + { + "href": "./BZ18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207909be00cbeaa857a0aa6da66fb648cc9e23e757ad541e399a34425444c899f3" + }, + { + "href": "./BZ19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ee00c573e18b7c335c3c5786d6743b95f147b60bf52108346f5b04b68b20f857" + }, + { + "href": "./BZ19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e1cbb80ea3596a14de7cc457835442f0f63e078e766f2ad42245e6bc202b72b9" + }, + { + "href": "./BZ19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220199be1ba3c7925c033791b87d4c23def9e64d1283d8095fd33bad873b930a227" + }, + { + "href": "./BZ19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fabae3e8372665e2b80b8842b431b57a4fbf4e3e4d28ea48b60cb48d9305ff2a" + }, + { + "href": "./BZ19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c62ad39847999556b5afb8f71140782c99ff8aba8ec2dd9f4cbd196df67ece85" + }, + { + "href": "./BZ19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122020182e67752d5a3d9adb394740bbda746a2c56f708c0d294af4ada31e74f1177" + }, + { + "href": "./BZ19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e226b76eb18110d639151c100911f30d1f6ba112bf8447bd85aa0572d5da4964" + }, + { + "href": "./BZ19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023b41c1f4c5a7f807c0712dc453a2c071ef7590108c0bb631489c2af119ac0d4" + }, + { + "href": "./BZ19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220535be0328e19d9640a7fb6e173268103608b5d420276824c1e7f3831ad6df3e5" + }, + { + "href": "./BZ19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122052b507a30aea42f5a6bdb79e0bcb6b6a94b3bdfff028d8fb22d8a8af4f67f1f8" + }, + { + "href": "./BZ19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200971ebce3c2d27a5acad09bf04b3f18c8d588e06e57f3bbfc9088d9bb1e343dd" + }, + { + "href": "./BZ19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cf62840ea76942fc69bf3fbc843153aa18b6468cd18cddde4e65dfa59bfcac56" + }, + { + "href": "./BZ19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ece4b1b729e381cb4b0845d9970a033aad5bba529b673ef90cc650d202a59733" + }, + { + "href": "./BZ19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207b7065c2c24a882c858a95d69cb442821bf6f9b804825fcaf55a552447a359ec" + }, + { + "href": "./BZ19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ebf7b25882c2e437a9cf279158ffdc2a6988f65057a0a185c4fd9a2c49fc7dc9" + }, + { + "href": "./BZ19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bd9705842ece33d38f934658c0b51ef4ff83a5a3b9cb74f843f47cd7dc91d0c6" + }, + { + "href": "./BZ19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220850426ff9768b27e1549484cd662167d62ba2a810db0e997c1145033358cc06b" + }, + { + "href": "./BZ19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a2a7f752b2463cdd1e9658e312e6d9ddde485b5db3f4a107f045eb3c37490f00" + }, + { + "href": "./BZ19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203652ce820644763958569107f429cad621acd76794ed233183e6c4deebeabfec" + }, + { + "href": "./BZ20_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122018bbeee0594ae676bf3b8cd406d8787b0d36c2ae483b0dff55bf079f577d302a" + }, + { + "href": "./BZ20_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b13d02ed462b92550417711b26c6ae77d2a338939e45bc2789a8ce5bf85a83d4" + }, + { + "href": "./BZ20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205fb345be0c909fede5443ce39e4830f51e1dfb2b7b4bf133d854cda20b0c1955" + }, + { + "href": "./BZ20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220142338a9e62ba199f29e454a8f6a087f4251f332a00486c8eeb9649980fdbe9a" + }, + { + "href": "./BZ20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bf7a6dce05e2d60cbec514c25f2b6c970822a04fed160deeda39de5924f0294a" + }, + { + "href": "./BZ20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200496a774633cc4ca8be314bf80de32d3bb95266edda931903daca9726a6f9d9f" + }, + { + "href": "./BZ20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207041ca5fb35b46c319258d7d4b905a1ea5e99db8a7504249bc1a705f256e7acf" + }, + { + "href": "./BZ20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fc242903291b8445dc96c38f1fcb7ca568779736cec40681a92105ce66207ea9" + }, + { + "href": "./BZ20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e44da788314b4e3f2228538f8edad2b44bffce1134ece8cf3bad527c4a6834dc" + }, + { + "href": "./BZ21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bdb207d0892e034866ff0950f22b10385dcc6a3f2648c7b2be0cf987fa0a5f19" + }, + { + "href": "./BZ21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202b67eea386320a45d205f1110d87872a214269246fad3276c23b20caf807cf3d" + }, + { + "href": "./CA14_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200e88ea4cfc570a0aba378f272d878c17f7f2f8342a3b40a7c5a042387e6bc0f8" + }, + { + "href": "./CA14_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122037d12ecd157f289d22a2f3cc085448ca2bfb8a289deb33191a60ebb8e27d0720" + }, + { + "href": "./CA14_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122040c46d084d7d2f8fd4793caa88ef123a120daea0bb2c13f86619b67103ecf9ff" + }, + { + "href": "./CA14_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208fe5f3208d47b63a0eb77c69a27e5728bd63762fb68ed455e35a96b752d447ff" + }, + { + "href": "./CA14_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122009f535e87da7190646e3151dcd95d53ccd846bf33c2056cb499d5aa1c0f3a4b5" + }, + { + "href": "./CA14_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e6a9b42ad93062f05a9a3fa749b4ff40cdc1f3320f993880e8ff54bcb97e45c7" + }, + { + "href": "./CA14_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220741965e3dae02802c8faa59eb23cf0876e0792696a0e52f6e77d0162b11b843d" + }, + { + "href": "./CA14_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220355b01e6219cf0f83b3ea16c1c22c6ddcb1cda3ca38a406ad4fc6b43d3a17791" + }, + { + "href": "./CA14_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c5eef705f267f19eb12d105c88399039044a3b6b39bb9320374d91cfbd6f7140" + }, + { + "href": "./CA14_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085f1aa01290ae4a11f5005904f1638f23a87c76b404daeb225fee455e1896265" + }, + { + "href": "./CA14_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202537919c8056c5927f308f9bbe0272d6939b5669ffad098520ec6f197d486d5f" + }, + { + "href": "./CA14_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122065be0d63f0210b5f7bd76c63b107956caf1b1673e4c13689e98b4d99f10a8176" + }, + { + "href": "./CA14_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b099d49adbedac11179908e13f79494463693aacb804b40fa452237846e8a71d" + }, + { + "href": "./CA14_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d16772f73e7fe9fe347f8820a5e2c7b24b272e7c3e8c4d67dd6ae394617e129" + }, + { + "href": "./CA14_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122017bfd66bcc514f5dd8c99c1a39f32543b37f0277e48e69bc203b5871e0e42cc3" + }, + { + "href": "./CA14_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e42450df59479f4c76b55ddee3e0a561596c9c5b7967b41bc374cfc24c4dc82a" + }, + { + "href": "./CA14_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220928a47f3cdb081d32484a629778f971f1c16b05564c8297f295a8e305f6bf367" + }, + { + "href": "./CA14_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e19e5c1ba5971b48194149d3a1ab6bb66119b3761392f423ac50d69f6e31db1c" + }, + { + "href": "./CA14_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f3dc636c3d01fdba9e77c52e8a592d830c6a65ec9829159ad8da416ed971308b" + }, + { + "href": "./CA14_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208ddc32649179ccb8a3d3d04a443a71bc4621cd0e77018e9121843df0bade84cf" + }, + { + "href": "./CA15_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f51e9fcb7e5a9babad82283a959e552fd1516fbd218f22170a7c2304c0c45913" + }, + { + "href": "./CA15_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220381c387e4a34b43a49ba75fc999c858d4b85138da5ac566392ee681f258dad7e" + }, + { + "href": "./CA15_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220030e8ba5dfdca30fdc463fcbd5e5a6e961c47c5e710fe04cc2e09b54dda0f34c" + }, + { + "href": "./CA15_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207eb45ab93c2d05c84fb560b47f26736341441af7bb95ed3accef1e784d055b01" + }, + { + "href": "./CA15_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b70e751eeee025ee0b4388f7d05db82d86fbe8ec90f9769aec80a109abf7fcee" + }, + { + "href": "./CA15_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202184bd849856cf803a780ec66ec366e5dfaf0c074507388e4c9947f265c2e68e" + }, + { + "href": "./CA15_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203202375ecebf5dc7dcda899448b964b0532b65b61ad76f2256be0790aa112bef" + }, + { + "href": "./CA15_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203b59faa2e613a074d85cba0ceef08f90a1da925a7d221808cbd37e99031b1284" + }, + { + "href": "./CA15_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122006a7971ece5e5fcaf082b323f031e00df39b58dde971848dd6f8f5c9e5353ca9" + }, + { + "href": "./CA15_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220abdae64fd223070257ae8e4947ca94d437ff97e94619d28e246a04f7fd3e1677" + }, + { + "href": "./CA15_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204645e440451fdbfbfe43c657ac751f620c7574d8e27b6019a5efd9e80890259e" + }, + { + "href": "./CA15_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122091e8008a3d09c89a7359c7f66abc87db3a2a98a4eae9c4ff84a72d0017efc827" + }, + { + "href": "./CA15_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068b727dbd0f66518a9aefd0059657e16beab26eb451d1b6502a28917a5eeaf40" + }, + { + "href": "./CA15_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202c1d2f75422a730b5cc0e8f09569eebbc68b520b60d6d433d2998bb9e918d428" + }, + { + "href": "./CA15_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203446cbed5539ed2a27156dab979fbd8e7ac329e4993bc36a65a0d45f72d3d279" + }, + { + "href": "./CA15_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203aa472f5eeffc7901f0560a7b90ce15b99c5f53aad6715b4d19f52b6bae1800c" + }, + { + "href": "./CA15_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208aa74e5e7476313835ab9100526d6f29811341ee4d052854aa580f982e81b05c" + }, + { + "href": "./CA15_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a19551ba311d69e2dbd8bf66a48c75b0a2e549b227038f747a3bce87a2980bc8" + }, + { + "href": "./CA15_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220534904f835cf9fceff6712be9e6dcfcac7e8e9fc2c27f86fd995c9424d5f242f" + }, + { + "href": "./CA15_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200a83c79def3b7b29a0ac4b29f679115c0a1998962ccc7960c9e4a13bd9bb9f46" + }, + { + "href": "./CA15_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122065a54d585b1e3e6c12527e1239d371c2da9e34a66398c0307f0ac4689a0669ce" + }, + { + "href": "./CA15_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ec03ab74a4cee2ddb85650c42cddf50c848d850487b839a1aec81d9c23a294d7" + }, + { + "href": "./CA15_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fca7321cdec39417644967234395fd4ac68396ae2a4b8efa77016b1db6be6bda" + }, + { + "href": "./CA15_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d90f120d8c0cf196042694ac66115ff42c77fd61ada7e5052f724cde57300bd" + }, + { + "href": "./CA15_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122018fe39b14870e40e2616fcb6ce084bcc31f08ec2fe38eeec8bdf3f635f329e83" + }, + { + "href": "./CA16_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202572b990185a6ed318efeac7a0f8ffe51b79dfc685fbc85717a56469b464fa02" + }, + { + "href": "./CA16_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b40cb7050fb983d5325d7880c363b7aefe3a415569cecdcac6a83a77799b9653" + }, + { + "href": "./CA16_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220928b88c0e06d972774549ac8cc27593e179ab8f7f7c8397721505fda1a2f4fa1" + }, + { + "href": "./CA16_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204d4774c09a42e21001ac83b6441979e6af73ef33c4baf3c010a61634b45bd4ed" + }, + { + "href": "./CA16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122008c807f53cfe23521effd84f068ef4e62d4821371bf35da885a447af1bf44dc2" + }, + { + "href": "./CA16_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200762a86c06179039b51e1b61b51a82fc72ebb05b1a4eac8a31ec9fa9bdc2af69" + }, + { + "href": "./CA16_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c3f23160b915dfda8998be24c05b2c04d077ca17529f4670a56db5e545e8f765" + }, + { + "href": "./CA16_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122035b7d116494a356896910d56169bfa40199c2db7d3931974fcaae3886a77152d" + }, + { + "href": "./CA16_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122005d2c8a3d0407a9963d1aceb207b479465bbaeefc641a85a7ed1190faa7909c1" + }, + { + "href": "./CA16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209624dca3c1641f825050eb4ad6e981f518c8a0d43b7d152c9687d57992fcca11" + }, + { + "href": "./CA16_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c2fad7943ff9aa81e18395a740811c022708c08b2592c12c3f6bcd35e57e1a96" + }, + { + "href": "./CA16_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7edcd10bf6533fa1bd33c27160b050ae2c6128bc040d74e6c20f8bd9e58b94f" + }, + { + "href": "./CA16_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a8b0a4e337e767c7046764bbdeaf7cb1a638a0a8519506016a7836ac4e477b5d" + }, + { + "href": "./CA16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f847da5967d1c8f1d817bdd85a32aaacb3c0ecec511d35b06110e87ae6cc1c07" + }, + { + "href": "./CA16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207fa1c28a2948f9fa7e936ce7361064b205e927d8153bceca853233d229473761" + }, + { + "href": "./CA16_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122074b80e1d874de9ba588a5709ccd28d579890c0a5d65ce8c8d521cd79c056265f" + }, + { + "href": "./CA16_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c2dd8cb0389a36544e48db82e6959db5f91834a5fcefa523d770007666db6284" + }, + { + "href": "./CA16_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c4598b4a5ec48dc343820ee59a9f56746d693b009532d7eb0f7fdbca317d32e0" + }, + { + "href": "./CA16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f5210e4c9d9b2d788d98ee3d071e64dc995b02088e72542aa609eccc1570f04a" + }, + { + "href": "./CA16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a0a1c92368e01ff6a7fe77d0772ec451e495264221210c7f9bedc21a104541f6" + }, + { + "href": "./CA16_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220de990019be010da626994ec3573b1157ee00621db72cdaa85974f3ce7635d6ee" + }, + { + "href": "./CA16_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb2240c4194915b0cf04c86954688e303241cb09bf3ec39d7ca681918bb2d653" + }, + { + "href": "./CA16_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b927ec6ba526641976b439ec69fc50885a909f20d99142be8fc5986bc78e7e7" + }, + { + "href": "./CA16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122049e8642eef9d94d30cfcf874d7c616783940a26441376ebf050ec2665862e301" + }, + { + "href": "./CA16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122019b14a82d5df1ba917daabfde1153e992313e2b39e6a3b523d8cd2addafd4132" + }, + { + "href": "./CA17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204231144670fcc9f3380ed1054dd5a74c876a5bfb40ed769f410cb7d4ad7de1e1" + }, + { + "href": "./CA17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220351f949276491d8743bcb04e6955f118632e0fe4fac5245186cda64c028ef3e4" + }, + { + "href": "./CA17_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bf62c50df47e8c1ebb2f417f03ed97aaea3a3901613814994beb0c96ebbb1e0c" + }, + { + "href": "./CA17_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bfc3521d9005ee03280344435845309c7b110153b783ceab4b095e389c4c1319" + }, + { + "href": "./CA17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e1594116ae928b9bc001b2294ccd7f66c6cc2147d0d0bbbee3e51711f82b47b3" + }, + { + "href": "./CA17_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205cc89211dcacbac2bd73ba073e432f471ec820b5cf928c5aa2bfe1d625406912" + }, + { + "href": "./CA17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db1ef40626477eae63e15479cfb016bc9e77dc748baec3610c67e2d8a0a631ba" + }, + { + "href": "./CA17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fd08c4fd4c5633214d5e85eaf4a961bafc5f1a77d4ec0d7704a4f0e1e94babca" + }, + { + "href": "./CA17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122050db08223c95a7a627313de0e70981176acd0ffd8a5276a42e31ee640e9d864e" + }, + { + "href": "./CA17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201239b41c511ad57303280caac26d78d2323ee33a3df0d0df5100d998c031f7d3" + }, + { + "href": "./CA17_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a218177ee5bba13f0a7f890775479cc16740b4903c74f685f749aaf73b171db9" + }, + { + "href": "./CA17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203539e9e335d72516726b9894876e9cde150d60fd3e5a7b00d4800967aeff54bd" + }, + { + "href": "./CA17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ca05f27db10070a6688a1ea722f06c542dce2dc2615636e01745ce9d0a3c0888" + }, + { + "href": "./CA17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122088e91549d7b3981095ede61e610ed7da0af62e17ffba64cb1fe486d250e9b0d0" + }, + { + "href": "./CA17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c23b139b0c492c3310a7b0191af0a0e502697941a60df750cca3a2baff8a0e38" + }, + { + "href": "./CA17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203b9bd450275eab150bf19e75b8e7816a2ee4f3d2dbcd91cf32837b34229aefd3" + }, + { + "href": "./CA17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206daa7fb28ac86b6a4e3f77e7449e5d21ff1df8cce8df037fb2bb758011023216" + }, + { + "href": "./CA17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207cab1a04457efee6f2e6d19468663397dae36fa62cfd79e41b099dff94dd7d14" + }, + { + "href": "./CA17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203831df78538d64e123fcd1e5bacb3fd520fc4f44d3fb0a9075b24caad9540179" + }, + { + "href": "./CA17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220018a1d1fbd687d8c4e9358bd32adc34006c62f165e3cf0da4fc8cb7d8308a882" + }, + { + "href": "./CA17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068eb93890e46c304c977a518e134cb2bb01ca55d55df411bb262dd9ef57d3d51" + }, + { + "href": "./CA17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ef70e91c2afd44da20aee1d3ab89e4b184c817589de8009156f1fddfe0d8f0a1" + }, + { + "href": "./CA17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a6fff0521cae163cb1459a2b69eee7803fb6e9edcf30543bc2bb8065c50bba1b" + }, + { + "href": "./CA17_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201a81bf89d5812d0578c8b5e36f0eb5a4c054227d3175c16324c92ddf16541f2f" + }, + { + "href": "./CA17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b2402e2b6584cc8d1229f83e417299895601127dbdf57e5e33eafbf3883c2a0f" + }, + { + "href": "./CA18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220657e8c4b6345f3888bafe69953ff1331e0abd48980f1035c113c68c4dac943a5" + }, + { + "href": "./CA18_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220473f3c15f8be780d893a841a50e10d541f2f7a23be0c76e3c73ac0b3f23d6677" + }, + { + "href": "./CA18_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207eb39bf500df153864a245ab347da11fccbeb58bb5bb5d1d26fa076cb07ee126" + }, + { + "href": "./CA18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206dfbf091f05899924e01508bb44dc231b5d62f115536f990d6da14c676d949c4" + }, + { + "href": "./CA18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122003cae39742dc4cb6b1d8d9755946ee15358bf07f4b415f3dd37f4fcf4a419d44" + }, + { + "href": "./CA18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b43f5bc31552d1a5d5830aafd41bd39f80697f2b109dd45e796acc607f64b109" + }, + { + "href": "./CA18_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c7a71b226df3ccdf1446a4f7eeb49282d06276bb75a244b38c1164e37fc9f47" + }, + { + "href": "./CA18_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9bcdafd82fdadaacbcf6ec59f771eb9ea068b4236f27b28cd3501e1b7d09499" + }, + { + "href": "./CA18_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cda8a5618d4d418763fadf7fbae752e2755bd16af4e831f0eaa5fbed0371d54b" + }, + { + "href": "./CA18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207db938328b7a26c8d25c60cb1f9b3eec43634f6cae88223150c0e8c5fa9828a8" + }, + { + "href": "./CA18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f82adc3209aedeb311667f096642078c670f13f248b39cb195e07dcf75dd337b" + }, + { + "href": "./CA18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac6b7971d036e076ba1848648992792323b78edc8c3f88fa245fceceb6d74254" + }, + { + "href": "./CA18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d6e8029fc99066845ba572c828795fe2a1cbe4ffc444a15b416d2d487a3bcdcf" + }, + { + "href": "./CA18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204426304309cff2d6c3f4c20be7b946c03eebf78169dff347a1279b21ffed4cd4" + }, + { + "href": "./CA18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201026fc7043afe4c78b67d19a3431ac4b76070b73266ea5b1ed260926ae4a1647" + }, + { + "href": "./CA18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122008d81c2ff4f953ffd24382487e7831fcced762860ae64beb790c23f03fec4f03" + }, + { + "href": "./CA18_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a35c4a593166e7950c17845256d0d6ce97cc5873c15abd3a50b1893f95ac6fce" + }, + { + "href": "./CA18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202af72d7ddc4cce1c31e41a6fde07d01df87c4de5cd0860ab8d621cca03c0b265" + }, + { + "href": "./CA18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200201e3d64321f49a72fe11c8cd28a5e000ade7db7987d27845c5f6dd13a61344" + }, + { + "href": "./CA18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c046a7830b04d1fde19b9f09680fface251057ab441000707a32a6b39e834482" + }, + { + "href": "./CA18_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce6411880e99585693cd6f8b7e7e2d156a2f52e01cb8685c6c11019b04b25ea4" + }, + { + "href": "./CA18_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122099f57f603ed1d63aa2bba52b6cf80eb97698c8b70f4a52b62485c34b24148ccc" + }, + { + "href": "./CA18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122022164c95920ee60535f686b48afac2c27ff818e47d14d470e38ca4f87fcb75c2" + }, + { + "href": "./CA18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203e4536977b9cfba2b5194551265b85eba9649386d420db3c18758261cad2b563" + }, + { + "href": "./CA18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a3eb8c29744b51a8db7ec743de2ff976fa977c1373f4f3b9924805d437ee68d" + }, + { + "href": "./CA19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067f4731787a982662c5b0502f59778f305e539c880cb126038ef01deb7fdb522" + }, + { + "href": "./CA19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122061c63a1e5f8077126b4f06ca60d78418559fe917a2e8bbcf071bf4bf752fef62" + }, + { + "href": "./CA19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d75723a71616723dc28c69ed3966dc872b516cf63b48ca839e2e76592f250c0b" + }, + { + "href": "./CA19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ed55366a7531a8b0136758db58771057de4a7c20bd4f475c8232ecb1e8e3895e" + }, + { + "href": "./CA19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220854e916981ab7b5336f807260df557996ef011aec1a2ae99a8fbc731cc69f940" + }, + { + "href": "./CA19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b7d0a2f80736689dc228f841b7e4d2c081542e1d77dde59e909ba098ce5dea40" + }, + { + "href": "./CA19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d696491a50b2fb027e41df3427b8ac143bbe5e6df9abfdff578b609075be0cec" + }, + { + "href": "./CA19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cf9b4ce571d6410246d12127ca6a61d398164dc7cc7a52f7a4618c3a41e6986b" + }, + { + "href": "./CA19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c367b4449653c4af7d7614a0fc5ca3c6bc60a0d3e24516badbc5d7aca11b85b1" + }, + { + "href": "./CA19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f73e5368b1e409ea8dfe9fec66cecbc8f6cfa31a41e4314de4bd6225f8700fbb" + }, + { + "href": "./CA19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c5441c8835b477029cdb5caf94555e555649e50b4d47f973a11d3fb4999d864" + }, + { + "href": "./CA19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032b7b440ba01eaf7e00e16c283c3fb50031a79ae5668baaffbc97c898372dd45" + }, + { + "href": "./CA19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122064519b9408888bbe983066a8800dc4bbcab79be3cfa04d6a9b59506ee8a070b4" + }, + { + "href": "./CA19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207fbfc101c3ef1b10f051b45eaccd4d9884d0cfecf9532120d4599f016ce248ee" + }, + { + "href": "./CA19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220afe66a73e9921900bcb1f4018a7403490864021352fcba913875f12e6536a5e9" + }, + { + "href": "./CA19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209deb713d946b06df55566d64545af8e82c67034703f84fce1589d728f659bc52" + }, + { + "href": "./CB15_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220196a8496bf623a92a87d8dd329b2872ab5af82026e916a741b073fd269487447" + }, + { + "href": "./CB15_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122088789124a7638cf07cc25ff2e74a6b893cc6322dd9391ca4ccc6071117e7c034" + }, + { + "href": "./CB15_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205caba3f7f166bff8f16a0b552047b9f397b28f53e738f29ce158dd5ab80337fe" + }, + { + "href": "./CB15_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af3db17d79ff7cfa3afdfd27a6ae81243eb6922b7de99a69773e51d9323cbe53" + }, + { + "href": "./CB15_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122033dbf83ae89f5f751f8e19767baa35422df502a44303f69bf9363429e6726b09" + }, + { + "href": "./CB15_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122092f7d3a5ce75232d543e07022f50f597e048e155c0b25b493a823cdf411d8f58" + }, + { + "href": "./CB15_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220036691a1a8b5ba4dcf6d9df216fbfffff227c246666940a6b6c2be1e8d591839" + }, + { + "href": "./CB15_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207ca897189878fa1675f986e0fb0e3be19e150e165f991c9222324d617a927e3e" + }, + { + "href": "./CB15_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206379bc69b42123a145ca118b8cd2e636297912ca102987b8995a1643a3ed291f" + }, + { + "href": "./CB16_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122016df3b24c1ddb19b296f5da41e4e317cbf96b55288fe9fdd33ec8e5f1f4b8662" + }, + { + "href": "./CB16_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201efb71cf07c7aa330fcf1f699c7d9a6d31eb9e24c0a0947e59becd60738dd523" + }, + { + "href": "./CB16_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206ee1e76831f8fbec46222a1ed0da75cd0dcb9c3133e37db36c69d47ecf201285" + }, + { + "href": "./CB16_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e90d6c4fd0ca536cc43a0862dc239b2402368279487b1d8f769e4a5d0b9cdbef" + }, + { + "href": "./CB16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201ca3e8bf2fc5ae17c8b53fca937463dbc29efe05d88e9787671c811e11b6fa38" + }, + { + "href": "./CB16_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071fe6cd84fe0db3f28716e022a2583bd991b0da4230870a6a7b5b6bec717d54d" + }, + { + "href": "./CB16_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203278b0fdf7daccece0fef3ba91f7e415b4559e31a6cf72c07a094a802714a037" + }, + { + "href": "./CB16_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208c8d30bc92e2bd1a3a0379a6aa436be7452ffe7453b1c691989adf8e330117bd" + }, + { + "href": "./CB16_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209938274d07b1acf945e1853c6c757a1e184b1d9231a271a9d195edd6277a9b28" + }, + { + "href": "./CB16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203c8e0d2704652a90a5854411cddf337e15b94633f5c7e2a5daac97880f8e8110" + }, + { + "href": "./CB16_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206276adcbe70b3374d013271a96a4060ab0b8fa60062a4a3c9db438cd8c457a50" + }, + { + "href": "./CB16_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b137b73832900e4b186acbf08592cd4e72875812cfcd692795378ab824589acd" + }, + { + "href": "./CB16_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c9b7961fc015e89d55adf312fd7db35d2109cde38d9ad480e6dee04bad5a7168" + }, + { + "href": "./CB16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207944b1815974667ea3b764d00da3934344aa22da2c4011b7df644badb50aafcb" + }, + { + "href": "./CB16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209d926da5363d00076a85fbaa02b0c15d4c01ef71fecd564a39a418c48c34bb80" + }, + { + "href": "./CB16_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202c64ee698dd07593c3af81d4bc40a58bb6d4fe513837a0b042b3a41bed688b7b" + }, + { + "href": "./CB16_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206660f804d62e882ecd547305f6177538879471440462f291586e3b8baa638cae" + }, + { + "href": "./CB16_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c44bc412505605af42f8605ba3600e6a9dcee6841003041335081594ccea3c55" + }, + { + "href": "./CB16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085ba3fb9b8ec31b1f05312158731295d48e8693e71dec09267f4a47ad6b17f53" + }, + { + "href": "./CB16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad89e33b2ea993b57695113be32c3441b566df4e4427993c3ba2f63e52f37c64" + }, + { + "href": "./CB16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209fd4c04a1a8714d05033b1f2ab032c4a003a8139c32980c1247d6bfb00475c75" + }, + { + "href": "./CB16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ec3780251ec9058bfc1e5cbdc3335e616d120f8650b794d0533d35a081876e49" + }, + { + "href": "./CB17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e163f2919638c2260d5934cb0952ddc2cf11a70513387bd2d647cd7108f2e66f" + }, + { + "href": "./CB17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122041365a937bd2c42bff561ae2b40aed4013bee0ee6cecb484361da7641d42c1da" + }, + { + "href": "./CB17_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122063f0a5d1cc7b9fe1f050c11fe058d35fd736b192b15fbf1beb85f2479cfe6686" + }, + { + "href": "./CB17_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205bfc12a482f037ad8c3b8fbb2388f12d782b9784c31b2bafe51929cc49d0b70b" + }, + { + "href": "./CB17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b5ca66906ff05fbe36f93418592ddc3659c4461ed35bdaa307f4767fef61c974" + }, + { + "href": "./CB17_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220294c4d0072b9bf2f35e5c250e67882799bdd141280323fb7bc5218c98b7d6b4b" + }, + { + "href": "./CB17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220240c84170a190b3cf1b5eab267820b0a3b66e37537986be79dfafe2fc27c68c7" + }, + { + "href": "./CB17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220474aaa3fd4c2d275ccecd7dd5c1c5b21879560258185a66843b7c4cfe1c884b3" + }, + { + "href": "./CB17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220adbc96e2725e8679d96e6ff8cf1a19e7536dc48aa43ecfad9aab6e863f8085a8" + }, + { + "href": "./CB17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e8429f079d54dbfcb5b3acf8262c39bdde66de29ba9b6e6ccbb7dc9617931e15" + }, + { + "href": "./CB17_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ebc3c6be5295a5927926c08f967f83f0543072f406dcefb93ecdee4a38632ab7" + }, + { + "href": "./CB17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200d3cffe578af108a20e4ddd18cafadcc83921bc7fd014fcfd0c5fa90b04e4fc2" + }, + { + "href": "./CB17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220839ffd9dc99a4cf3680ed85a2fc2953c3bcc63d5b468b7ea05f0a82e01d62672" + }, + { + "href": "./CB17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ddb34ef57c521a3e99e79339f61bb9ea16826df7deecfadf76ae66e3d61c3ea8" + }, + { + "href": "./CB17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202ed8ca57f8e8bc462f45fd2c1b61c1f8aa6a6bed26bc992d71dc45e51ffa6876" + }, + { + "href": "./CB17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f50ed65ec798e7445ca6efca6f68a534b09c64aed8f65ce46d97582455c22953" + }, + { + "href": "./CB17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207287332dd40f6aa7ca7e3c380a524ba5c1ae37705288ebba3980646eab7baf75" + }, + { + "href": "./CB17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202811deeb82981fb534190877d237064d9eb4f6c8f5faec622fe5ddb30c6e256c" + }, + { + "href": "./CB17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220909550bb6520b21c0b9fdd2c07f9b8603358d86a292776ef209a9a16c0315101" + }, + { + "href": "./CB17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220629405791e7e2e5ddf9c1128c832777b4165beff98238a67c5084026f3361965" + }, + { + "href": "./CB17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122043f18e51489668e5ee790d6d09ecec35fe6250b98c61302e052d26597c2528da" + }, + { + "href": "./CB17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122080ef8c14acd8c2025df94b7cc447ad1c56e021fdf22271a171b1ed8719d18ef2" + }, + { + "href": "./CB17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208b462b5d9d536655c7587a6cda15ba290ecf7dea227d51588b98aa323a7af722" + }, + { + "href": "./CB18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cc122bcb204df857d12bd665eb74638554d526c3c4ef5ba5d82a9f8cd884ce12" + }, + { + "href": "./CB18_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220019cd8bf508d0d89ff8f2cf2517b7ebb2001f8f4da9ef924d72ea764dc544976" + }, + { + "href": "./CB18_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071137f752d760c807035becffededdb5eb422dbbc7b3e30fd8042cd20187a7c6" + }, + { + "href": "./CB18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122086b4a7651a8a868e392dbdffbbb23ad79ae1c9dfbfeffbf85b3990b73930d6e4" + }, + { + "href": "./CB18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fab597fe260339c51505b1d83fa78aaf0f0c5e4e82d3427fd0072bb8169a08fc" + }, + { + "href": "./CB18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208f268c657de54fd0ecdea2f84c22ba72d181cfb3d42690b5e17d08660dc8577f" + }, + { + "href": "./CB18_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fa145c9b35f9daa8b52da2f5f2b674fb673813c35a0bb4325ce2d3663149a1b0" + }, + { + "href": "./CB18_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d9e52138605504d9ca0b6a340d8b1647a4371ce71b68441c773752f7fc7335c" + }, + { + "href": "./CB18_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220994734df14383a0de019d9905c7525f683a32671df0d172a34f6a90d5e4c1b81" + }, + { + "href": "./CB18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220feaf81028dc20d485394115255e843d9d1dfce2f786702feb8f2bba5194480a4" + }, + { + "href": "./CB18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d3906684220d20693801150af899cfbb925c43722aaac9bbfc383a5a8a74e917" + }, + { + "href": "./CB18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122055ec91e1c7aa9d4391fb22b34c0c967a6c6ecc0b7428f51193bace115575096a" + }, + { + "href": "./CB18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122089af90cac7f5f2eefae1d5e9b93eed8e4800d7e33a9f9a20b66ce9206aa7556e" + }, + { + "href": "./CB18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220908931edfe501e18b8810681c805797edca02d19fcb481d8d50d12e2e36adb94" + }, + { + "href": "./CB18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f58af455ee7cb008c7b9ee5aa08d8b0e4665ae5ed4263cf66c81c5b5599adf61" + }, + { + "href": "./CB19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a07f75f1ff1f7f37898e6f80b7bb612627d9bf82277da1d2a0f963f6fd372717" + }, + { + "href": "./CB19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b27a1ab27a56f5e43d7db33870909a7862571c5d07eae8d468691c223cb57a66" + }, + { + "href": "./CB19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dbd52e030d3921031677b388421a95cf90e2d579656bb539e9386ae08400dc12" + }, + { + "href": "./CB19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bcd531f0f65f6a8cf2433a3fbb8e0f4a5aeaea06fd2815db434e86aa2d7bddbf" + }, + { + "href": "./CB19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f7121a0d013ebe9c26dd216c5ad32093ae51686fba7e6439afa11134bfd5c0b" + }, + { + "href": "./CB19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220514b5271c290d8dacb24fd71e59e63eb3f9280753618769a0efc2df0a54af1b1" + }, + { + "href": "./CB19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204cd36ed617fa451a29bfc3a48118b39949a4462c29290653be7be9a462302378" + }, + { + "href": "./CB19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220abaa49e0475267c715b44ba9cdf65bc5919b431862d892eba099e651cd6520ef" + }, + { + "href": "./CB19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e1e4702b160f4fce4a3ce57d1bbc4bb7716037800f9f1464533713c99d0ad1b" + }, + { + "href": "./CC16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122050cfbba0e7c7abb44be6f55ddcbcaeabd392d3adb7fe3c280220b884cc5a368f" + }, + { + "href": "./CC17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220394d043c60b6f669c994d3c4ea4a36fad629f99841baaee145ef0ec052618b84" + }, + { + "href": "./CC17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ef8cf5c1aa8e97b7d8b7a04d145f3952d8b674c583318253c84229e2fa5546f" + } ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, { "name": "Environment Canterbury", "roles": ["licensor"] }, { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } ], - "linz:lifecycle": "completed", + "linz:lifecycle": "ongoing", "linz:geospatial_category": "dem", "linz:region": "canterbury", "linz:security_classification": "unclassified", + "created": "2024-09-16T23:45:46Z", + "updated": "2024-09-16T23:45:46Z", "extent": { - "spatial": { "bbox": [[170.1504557, -45.1015354, 174.0724206, -41.8817418]] }, - "temporal": { "interval": [["2020-04-30T12:00:00Z", "2023-02-03T11:00:00Z"]] } + "spatial": { "bbox": [[169.4839839, -45.1015354, 174.0724206, -41.8817418]] }, + "temporal": { "interval": [["2020-04-30T12:00:00Z", "2023-04-27T12:00:00Z"]] } }, "assets": { "capture_area": { @@ -796,8 +6742,8 @@ "title": "Capture area", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "12206894526304b5f1e55ec5c1ed54ab4674bf461677189e138d7e43d26c6dca978a", - "file:size": 104846 + "file:checksum": "122085b9473411a5b91d2eb0d41de7d64f485b2098d32fe56339f5c1d48bc15a5707", + "file:size": 129195 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From d469b330c9d9d13e36657104654ddc2597214605 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 9 Oct 2024 09:02:21 +1300 Subject: [PATCH 299/309] feat: import Southland LiDAR 1m DSM (2020-2024) (#309) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-45.6466610,168.2875818,z8?style=es-southland-dsm-4nqgk-get-location-1791378195flat&tileMatrix=NZTM2000Quad&debug&config=x8LTjPuCJSepSYSAPwHVdrWs2DnJma8MisYjkgrJgBGvZcvefDjaEWcSh6Af85GcCJC8jwkVSTwMQsfy1NViUW39ya3P8BQA1GURhDJpgyXUynN1Gs2dmobJYScEjQfCVf18W3vTxjJhyY4N5tjN6DaZ5judxsB1ySGQiQ5AddRLLXEPAY16kfz36cim28v8rfLJAKmZ3mKnHYnMGmxmeUo48gTUxb5CzngAybFzFE8cESBk8ajRok5) **ODR destination path:** `s3://nz-elevation/southland/southland_2020-2023/dsm_1m/2193/` --------- Co-authored-by: Rebecca Clarke --- ...QRJ9SQ44QFBVN0KDS0XW2F0-1728338753259.yaml | 8 + .../dsm_1m/2193/collection.json | 4607 ++++++++++++++--- 2 files changed, 4006 insertions(+), 609 deletions(-) create mode 100644 publish-odr-parameters/01HQRJ9SQ44QFBVN0KDS0XW2F0-1728338753259.yaml diff --git a/publish-odr-parameters/01HQRJ9SQ44QFBVN0KDS0XW2F0-1728338753259.yaml b/publish-odr-parameters/01HQRJ9SQ44QFBVN0KDS0XW2F0-1728338753259.yaml new file mode 100644 index 00000000..11c3b7a8 --- /dev/null +++ b/publish-odr-parameters/01HQRJ9SQ44QFBVN0KDS0XW2F0-1728338753259.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/07-es-southland-dsm-4nqgk/es-southland-dsm-4nqgk-get-location-1791378195flat/", + "target": "s3://nz-elevation/southland/southland_2020-2023/dsm_1m/2193/", + "ticket": "", + "copy_option": "--force", + "region": "southland", + "flatten": "false" +} diff --git a/stac/southland/southland_2020-2023/dsm_1m/2193/collection.json b/stac/southland/southland_2020-2023/dsm_1m/2193/collection.json index 471e77b3..35f0bd6e 100644 --- a/stac/southland/southland_2020-2023/dsm_1m/2193/collection.json +++ b/stac/southland/southland_2020-2023/dsm_1m/2193/collection.json @@ -2,8 +2,8 @@ "type": "Collection", "stac_version": "1.0.0", "id": "01HQRJ9SQ44QFBVN0KDS0XW2F0", - "title": "Southland LiDAR 1m DSM (2020-2023)", - "description": "Digital Surface Model within the Southland region captured in 2020-2023.", + "title": "Southland LiDAR 1m DSM (2020-2024)", + "description": "Digital Surface Model within the Southland region captured in 2020-2024.", "license": "CC-BY-4.0", "links": [ { @@ -12,609 +12,3996 @@ "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CC10_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CC10_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CC10_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CC10_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CC10_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CC10_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CC11_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CC11_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CC11_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CC12_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CC12_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CD13_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CD13_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CF13_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CF13_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CF13_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CF13_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CF13_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CF13_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CF13_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CH10_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CH10_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CH10_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CH11_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CH11_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CH12_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CH12_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CH12_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CH12_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CH12_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CH13_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CH13_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CH13_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CH13_10000_0104.json", "type": "application/json" } + { + "href": "./CB08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5203bc5c7b4ab7b2912e6cc1f05c308a779fd612b6c44ed4be3c72a0d060718" + }, + { + "href": "./CB08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207454cd5c49a867a300f8961eafe16769d8034e249cc03232549cca8888b767eb" + }, + { + "href": "./CB08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122054611772b49cd8a80ae0701cb4a58e8c11321aeb5f6b9c151ad2c3ae41e5a5f8" + }, + { + "href": "./CB08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220421ce62ba5caf437d53d5d6a93f5b99bff3354c18bdb590fa077c98f7b5de29b" + }, + { + "href": "./CB08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122014f2edba82cc6c8cad2d9f0823c13bd74387aa6108ce7acf6f8911afade7d242" + }, + { + "href": "./CB08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122080244bd1f5b8db879ada67cd41bf42dfdffcc3879aef3ceb9a990520c66612c9" + }, + { + "href": "./CB08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b8540716c32715b8b912bcbeb577f406524e0cf34d28ba2ac3f47f02a9c2a41f" + }, + { + "href": "./CB08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ef566f6dcabe52c88fb5e741a716cf9f6ee45045e24d86cb6865a768671dfcbf" + }, + { + "href": "./CB08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122092b15e8023361260daac21279a5322f3b1713f22d8ef756e73ee75b1c6118f13" + }, + { + "href": "./CB08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e8df7ba4836ac5ae1df7845e543d6b24aa008c4f5d9826ec364084d1f071ffd7" + }, + { + "href": "./CB08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209ebb59bd59ba839d7be9270dd60a448755bf2d734deef310ed6d5cfbf3784051" + }, + { + "href": "./CB08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c3dbdd985822a5fcc30d392dd896d8c2457d0ccbbe5d0da513ad6cbb67c2946c" + }, + { + "href": "./CB09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220af4ead420721055a29ee2773427fbcb34d0ccee5cb271e1b0a717b123500a379" + }, + { + "href": "./CB09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f422db40284baa49993c72a1d721f6f0f3370e3b174ab1dd7ec181c90004f66" + }, + { + "href": "./CB09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204e54201d3656a8059d2209facd126305ad3c47d005ce1cf2d54be437db08e616" + }, + { + "href": "./CB09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122055416b6ac13555d71b10b4d8346b6683bcbc80d30abdb06a8570a06e3a0dc632" + }, + { + "href": "./CB09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204dc2464c3a19963745f6c1ced41622a9ab072e4776ecc2be2fbc19f88a7f7637" + }, + { + "href": "./CB09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec879da9ade66c1b22b19e2f1d4d217cdaf4d09767ee6ad43b87557f3de6d006" + }, + { + "href": "./CB09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fc1235974674c641f3d3be6079e642a3151986a6224bd3c324bc68bbd3a15258" + }, + { + "href": "./CB09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220281feac57041536f731eaa5f0b29be8a888571aa97a669e68df6bff0fcd4b204" + }, + { + "href": "./CB09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122063f59935d90e35ecdf7a23e5d6a92f50f8572d01636cafa881000ec47793848b" + }, + { + "href": "./CB09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122000964aef8056f68d1111853b5c63d54b57c72b354fb8ad81c143c1f252407e6f" + }, + { + "href": "./CB09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206cbe3598d7f27fc61a116c5836f4f1d54ff4d1eca2512ece30310661d2f95fbb" + }, + { + "href": "./CC07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201299e08a30674315008e2a69090512c91a431f93420a2e03b827ba29bbf83831" + }, + { + "href": "./CC07_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a3bc0cbde25eeb464dc08d1aeee0f9b9c208265cdf18932e59e42f57b2709b0" + }, + { + "href": "./CC07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f55dde87bc234e44ab61e6850d021f5e9531c5d6dfd4ca3aca1dd9a3f99d0821" + }, + { + "href": "./CC07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e9b0fe8c04bf02055e003c931676477b977620eb2aa275e662c27636aa96debd" + }, + { + "href": "./CC07_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f57e3c80b743fda71a724a4a170cf1f83b7a6cda2e9995e23c77bbe62830e5b5" + }, + { + "href": "./CC07_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4c542b00b64079a97f63072afb3ff74fcd628743be2f1e3cf4ba9d83a8b12d1" + }, + { + "href": "./CC07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203211f94379f23a61e2476c28e10027b146c657e9c54ca889e1cf5d3796a36f7e" + }, + { + "href": "./CC07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bb0700ef75c37bed6b6ea5aad42b724766c0d8dd97449222b6df7c9c49b6dc65" + }, + { + "href": "./CC07_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf3e3a3efcffe8abc5ee6fe5c4d6a065088b382187795534f12cbb95b36435af" + }, + { + "href": "./CC07_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220347ae4fa05b509a8149d3e99ca1d5e60e1e1768fba1a36cc4543b409ae329cae" + }, + { + "href": "./CC07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aae697b4c5da60f88f3918cd8996c3960537075abdd347fcb12638c7b9a0ae7a" + }, + { + "href": "./CC07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220585c33f33fcf64fee1695e39407e009b067f6ec230fe9c9883313d9b14d36ce1" + }, + { + "href": "./CC07_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed3b5e772c83f2ab6ddbf95868100904d1c22fc29a6e8d98c9b39c59ee454c57" + }, + { + "href": "./CC07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208967fef8fc5d60989b6e803f60b57bd3928d07a96501d66b1a3c91949a8b74b5" + }, + { + "href": "./CC07_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e8744e3a4c92f02a5adf1c8dcd5e43b501a738cf92ad46ce99b45f768d6d5a7c" + }, + { + "href": "./CC07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b41d83cc99939fb5d598f3ebbd15f0d8eca7d2e737273b2d0e2117105e448b18" + }, + { + "href": "./CC08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eb0bcb577f3ccca5d79fbcf9ce43aa72097cb5e2b309f706568b5d3684a55ae1" + }, + { + "href": "./CC08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204043091ce1ce3192f77ef35cf6af58307fc0cdafb74c3d1d97a726fb5a5bab75" + }, + { + "href": "./CC08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203b65813e8cdc28483aaf5b76da0d30cbe6c21a9bc634d706089e789d8981b9bd" + }, + { + "href": "./CC08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dcbc246842151d10450a1ed3a3bacfe83d7a611e2c9da1be2bdee8caf8a7df9c" + }, + { + "href": "./CC08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208854240ce0d0ffff5e9be18cb47723c9a399fa54e67800f8a11e25e040bd377a" + }, + { + "href": "./CC08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200489da65048a3142acf77f3bc1d79e27b1d177869de99ef452b18794e6757777" + }, + { + "href": "./CC08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ca0489009004c5965ca0fda9c47690fde491044fcc15fcb6fd3c416f80d17724" + }, + { + "href": "./CC08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0b66a5f82babadf779b3ca661a09faf91ef94572fb22d08f30da9660ac88c44" + }, + { + "href": "./CC08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b3243f5112f06ebb567530e99194ad2ed67669c28987569ee675401f773e4958" + }, + { + "href": "./CC08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122006bd47e3bb85a48a47de793d1c13b87c95f703c5563fff4a59804f723db58bf4" + }, + { + "href": "./CC08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb3b6d09f39edd5c15bc754d16b3b8e814169722a110174de28c7dc2629ba169" + }, + { + "href": "./CC08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4fdced50caa1ffb4db243a774114c7f574dd46405b18273793eadcc9ad56afb" + }, + { + "href": "./CC08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cb353f3f8c5df8eae19d61e9b693941195c316d48b1416a67365b81a9fa46f7e" + }, + { + "href": "./CC08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e082084b099c64136acbf6f2ebf40b3ea88ec1a9084f8bae9c633d7c33dd273d" + }, + { + "href": "./CC08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220755c3a91927c5db1cc78875e7fcd804681ccdf95e31214b4b0baa0d48d2442ff" + }, + { + "href": "./CC08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122079f1bfffc28424b308413e12fec367dc41734700e04719af129ff7fcef6ced4d" + }, + { + "href": "./CC08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122089e0dd72a65406caa1790ecb97f2d53ea0022f2bc6d8372d97a80842f4274993" + }, + { + "href": "./CC08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206a3ba58632b29922b21a1a1ad6b6a7fcb40aa46438b47b301c0eba095714b1fe" + }, + { + "href": "./CC08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206494f3eabc24948fb95e59e63fe4eb75ad455102c9775e8c33d83cbe20d4e348" + }, + { + "href": "./CC08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220551c8d7f2ff7ad90b87d16638e14037d32a18d62bcf20b96bd9ea355f410c9b9" + }, + { + "href": "./CC08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bd73651bf3c58f7e226314612f72e045a4683bd26d3c04677d96ae56f273082d" + }, + { + "href": "./CC08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202b2bfae5dace744b79aaaa0bd715173f26bbd2ad92f81a16b5073a9c7c93111d" + }, + { + "href": "./CC08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204703e313da392c21f96a235096e9936bb7bda5ead4d4e7411fea580d1c176c76" + }, + { + "href": "./CC08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220215f6e5abceb46da1cc5dd3658d7fe51acdc6b43084b1f0ec6818768771a41ab" + }, + { + "href": "./CC08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205e9225b469bba7adfa75d22b2a8214d0da74d598387069fc50eaf1111393d998" + }, + { + "href": "./CC09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122079b60aef598c7af849f280e34375b2e365916545e37334344a972ced887080fd" + }, + { + "href": "./CC09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d4e0f0c213e708daeda7f9e6bd19c8f8f1b32f97cb9a0d4cd2fe54260eedc69a" + }, + { + "href": "./CC09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ba2f92854ad2b88bbc3ae391cbbba583c1fda672abd1b3fbae8c1e09194ee6cb" + }, + { + "href": "./CC09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e8fdcae5e59b1d1f10b864be008d4e4052139d6c3d127e9a7e5e5de60dc6cb09" + }, + { + "href": "./CC09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d35d2e9dddd6df5cdd7240d063bb505f50031e3bf38fbc966a1e0780e19f72fc" + }, + { + "href": "./CC09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202ec221ce3008eed9a860aa48d0cf522c8b6708cd0a8e4451b4a5f55aec4bd40a" + }, + { + "href": "./CC09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203e087305c865561159af2676c3117af3c505ac3725567dfe704133bde196fd6b" + }, + { + "href": "./CC09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220770691741a26be143f0b5bba06cb59b01ff28a213b6d3fbf1c3d45a4771820fe" + }, + { + "href": "./CC09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c7a47810e694584f242befd67a8a331cfa66d7ca58b3cefbc9454e9d3bf9e781" + }, + { + "href": "./CC09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122056fa5ec215e454d85bbc44cbede49103d93fa2e9ae8f48145ab8ca81a6a82ddb" + }, + { + "href": "./CC09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220005999f9a7e1ae5971e8a1eede214980062df3bd4efd177e8fe0fba107529b6e" + }, + { + "href": "./CC09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220516a525c41a84518c3e9f679e989b191b1e02eb7e088c867e71ff3075a4896f1" + }, + { + "href": "./CC09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e6012727ef8a64651ba117585924afdaed60acb14ca8ca075c5dc084a72291a7" + }, + { + "href": "./CC09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0b234822db2a7b4761b9f77715a8cf17c231fc7ba3dc873966c82bae2fa8781" + }, + { + "href": "./CC09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b56cf91818030ba473d19aed68410887d357e0a7dadcc7146468d24732b38143" + }, + { + "href": "./CC09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220309ff4d1f5731cbd38ff0df1860a998ab280b4bd72e4e63be1cc2f5b974eb6b7" + }, + { + "href": "./CC09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d0521e8319c85b8fe63862a70a80621d45949d29343d5449a407e33b3a1fd46" + }, + { + "href": "./CC09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208d13b97d1a0896d98f15316e52b4ae1f91035c66b751b540e8d097fc84a12234" + }, + { + "href": "./CC09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122050c47638de58c04b94a5cc0e259e4e9e4330b4c5bfde3228ed965a5a93f336f7" + }, + { + "href": "./CC09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e588b4ca7bf20026c31b059f5e55dd3cf4d9c231806aa759d2dc92873ec4d16f" + }, + { + "href": "./CC09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064dbcfcf01b69c43bb4f0d6bad3755bee7e4c656477aa38ed3539913cf1e00c4" + }, + { + "href": "./CC09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f8a806fa5cd02bc9668f93e528678b076e2bd8a5dd8fbc7f895fb4cf91285553" + }, + { + "href": "./CC09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122019d49c752d9277658ad025850bc77599ba41874610610a2ae30396d3a7fdf5b6" + }, + { + "href": "./CC09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d815b6e74a5ae5508c3e4a6da43d7bf2143e7ea5661892c8def3c633c4ad0009" + }, + { + "href": "./CC09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094b4a43ff3ea02652a723014c001d1e0cdd053f1368f14c627347d3bf78a5f20" + }, + { + "href": "./CC10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122088c2b629b95228cdc55d4652cf02d223ffbd2e31c7eec6b4cf99de626e447fd2" + }, + { + "href": "./CC10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e7b8aecf1b3c78840d271667f8f1076f703fe3c85f8125ed6684ea5f16854d3" + }, + { + "href": "./CC10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c710d10f827a9303de19522b6e406f06ccad5b6370629453c384b4e6012de44a" + }, + { + "href": "./CC10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011ecc6338d5a6d0a0efeb6105e365442e1971fbf54aa17d1a0651a83546a527b" + }, + { + "href": "./CC10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064902c454765306aead732ac40c376f8c4022ddd7a9c72963ad09f86c77c2415" + }, + { + "href": "./CC10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122093a6856a56f1e05de8adec6efc837889b0fbda5229a921249a09aee73883cb8f" + }, + { + "href": "./CC11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220144d1019dba74a56353d1362daa4b0cc90b50fd7bcab57a97b9977ccabaa0b80" + }, + { + "href": "./CC11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205cb2c8d74784cccc5ac608fa175535d4fdf145fdfd96db49a9f7dcf50ccd529a" + }, + { + "href": "./CC11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208024a158af88811e3316209d7b602ccc95a23934b000c8f33b24a78de3e1be18" + }, + { + "href": "./CC12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220898ae3a5e06813220f7d7614eeb3b6a39827016c30601d526cbb93c3f6a37ead" + }, + { + "href": "./CC12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e244cfae4080b588cf0bca033192cce03383806f454b5987291ff2ce74309b20" + }, + { + "href": "./CD06_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046cdb0e85c3ad2fbf0eb70f8d69216e5bb65ad054681705a57ac18b7cab4e0b9" + }, + { + "href": "./CD06_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ea3d48fda85829914ecb84224d25742eda63f9dd12030523610c0a3922d6ce7f" + }, + { + "href": "./CD06_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205233c837cebeceb005b1e01780ac84055eefcb091040bc15b68ca69bbcd9aaaf" + }, + { + "href": "./CD06_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f7370e75aac35f8e75526452bafa5530ba65d471782cb3f0bf40ef3acf5cd411" + }, + { + "href": "./CD06_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d73b7c0bdb2fa37a472ff83dfe7a0ff9bba71d04fa61dcc9fc1e661eedf11820" + }, + { + "href": "./CD07_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c03780fd2af8444fbcce4c5f9f4c8684556aa21a9e2182bbec835da255f3189" + }, + { + "href": "./CD07_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d085d818643fdc3bb2178415bf32d0665e8760f5f80ba71766749b0f458b852b" + }, + { + "href": "./CD07_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122092e792dd7b0ee187b8a1ea74bcc89db7fc92a24ca4cdda98c391281c063c11f5" + }, + { + "href": "./CD07_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206a51d6059669c28953ce282c38d299b7a9ecfaa65d5daa21b04341eab0530cff" + }, + { + "href": "./CD07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122078b0131fd0b3f8d470b47c8248e3fec2fb27f34df75a36a28f3d9ad853daffaa" + }, + { + "href": "./CD07_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201281a911b1b6714dd8c8e0f19b6384b2aca506993fdb8fefacc62960e95e433a" + }, + { + "href": "./CD07_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d7658298b446498cf8ed18cc78f1bd93f4b1e7a701ec0f523fda1631869eb33" + }, + { + "href": "./CD07_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203140cbf07c97a9778b94d3b4da9f9dd6678621b8d477d6fdb8e693fbabd08283" + }, + { + "href": "./CD07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f2afd47ff74bdc1840694200951516b17b355a3f8187ff32af0e7c06fb3da67" + }, + { + "href": "./CD07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122070a634296ce9ae4785f7f5b41f3e1dbb000968c02283bfb4376c3cd78a39eb0d" + }, + { + "href": "./CD07_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f398b68c7275cab6dd839dd59ae914326c08e34f71f4f846ba4d2d0468dfb40" + }, + { + "href": "./CD07_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122095776964bd8aabbaba5bab64a29c19a00c03292b54e19b896e7b40db5ce5eab6" + }, + { + "href": "./CD07_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ffa302d2472c055d6893c8ff9f0a81c3515941494405b94eba52b842d3d82b48" + }, + { + "href": "./CD07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122021c80538046dae6c24df0c746893736fe399688c7ef21379b1ba67fd0b2f0ccc" + }, + { + "href": "./CD07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122063216d8d98d420e62ff55caf82700ab0bec040bf95a83b33229073e79d984a2f" + }, + { + "href": "./CD07_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220829836f4ee37fbb07673c084be6783e444eeb31427c026d0f6a62730a259cc98" + }, + { + "href": "./CD07_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201662277fae640a91afe9acf219bf16669f1b069b1ad30e7d7588f9f8a7f02cf2" + }, + { + "href": "./CD07_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e5df671c0e187930c83bf2c8be45575d0896fcf1fdca5b7e1eb30285018b7603" + }, + { + "href": "./CD07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200085d50e8e38bc2350a200575d760b44181601c3028d0bb11c9f20b1b28ac9d5" + }, + { + "href": "./CD07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122079281e6ecd1fe0c47aae0e03d809cbf43c67189dec341a4780d6fa82b3b74eff" + }, + { + "href": "./CD07_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201dfae0e6295f56fcc1bbf3cbe32d16116cfffa4732b18edcb40d4c337f68ae41" + }, + { + "href": "./CD07_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220081b36a57f04acfcef2ee13469f3f9e4e7b4e414f8ce43bbd7cd6cfbde88040c" + }, + { + "href": "./CD07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220317b895a1f64c470d796303fef59206a96bfbd08f8d8b590e3a2fcee7af4955a" + }, + { + "href": "./CD07_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203ba2aedf21ddd232504f5d085ba46948f1c79f1ee34499a76879730e4e9d6dfb" + }, + { + "href": "./CD07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0deff7b6fcabae274d0e2badef5e70372d1f60ab9bba333698d048e7b1b93d4" + }, + { + "href": "./CD08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ee287626ab8ab7b2d72b66ec3970881a69b09469f513bbcf15149e7434501a6" + }, + { + "href": "./CD08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d9e731a814afa396846c825e365dec8040e324716169e7c5109d25ebb0dd54c9" + }, + { + "href": "./CD08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f982078980e039c86872a2a99c152245b4c5c75a50de9b030d93754fa5b81f7c" + }, + { + "href": "./CD08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c0531f2d703b8812ca613e16a0ae0b5761dfb3426145fd19f395fce12c528578" + }, + { + "href": "./CD08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122070624a40eab0ee78b04395b249c2946ff6a6ad0c1274d6fd21b2477c1ca6201c" + }, + { + "href": "./CD08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c2976ed136ee992712b47107198a2c7a28fb91979700a0d1198c1e7360fda658" + }, + { + "href": "./CD08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200ede70667333c14589d88f5022b004dbf66144681014ace7e424a3f2a87db825" + }, + { + "href": "./CD08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb5b102705d6ff7e39ca4d85106cf4d8a14a7cd65bc66ee40fefa1632eabab29" + }, + { + "href": "./CD08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df1cd877d38e860d42b71a5431840ae968e146e428e3d31a151aff5e826a8ce3" + }, + { + "href": "./CD08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201e9d3f83c9f4cc99301f5bcbf9a1abceb70dd37c3cb0c4c8bd20677d9ec3a537" + }, + { + "href": "./CD08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122058ee3d656190fc11902346f06557075eb1e8534aa5396d4f097c095010fe3b91" + }, + { + "href": "./CD08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206aaaad0712c3ce908bb961b234b4ee9d7f91a62b56f8879f0b3c1d222beb3b9c" + }, + { + "href": "./CD08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c8e19fa7eef6ed136c6c277226ab8caaab6e132da86afba6187f85b59a6b7401" + }, + { + "href": "./CD08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122001e8f5403b56eb7f5843b87eb8a900d1217ff8230a0f6a9b56fd50d0c4c63d3a" + }, + { + "href": "./CD08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204857250b15975091f8270f0e8ba256bac9dc783af5ae11cea839e12ea44981b5" + }, + { + "href": "./CD08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220812afcf846f4e1dbe9f020b2c2635a835dece87aa25c4b0fcfcdbc77bee383ff" + }, + { + "href": "./CD08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205b888c155c75f8e1e7f0a8e2972727c90686f02e0e5c2c64f16f66c84a8f5f9f" + }, + { + "href": "./CD08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204260d8efa9986936ba794ca049e95f75fad214518913559e565c957a3f37a2bd" + }, + { + "href": "./CD08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122098930f3298b6726b5f06dfc3fc46109c39cad6e765fdd3076051cfaea8b00b4a" + }, + { + "href": "./CD08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b05d853bbc51fe49cc17d57638f9712a725c60e50ef937deb9ca71fc163807b" + }, + { + "href": "./CD08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122047ca6e987e5d334eb3f7fdd2f2de64ea91aa808de7c96302fc2cb54ce8bfe861" + }, + { + "href": "./CD08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043188f6be07c1b5c14d7e93e4ff6869cfb6ab8a37eae4dbeff9870b62c9c1a18" + }, + { + "href": "./CD08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d936a08a95bab50c51035a389d0b5a1c8daae305556cfb53b092db848bf955d6" + }, + { + "href": "./CD08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220504f20ed595d7f0220f82fa4eb2648c8dea51be6a063b580da06c33080ad1880" + }, + { + "href": "./CD08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a240534609cda8f56e5b24998a1523a549706dcf54629bcee21167ffa6b46bf8" + }, + { + "href": "./CD09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200bb10caa97433b20bc0d765c9aa0004f8ec5c7ae25366bf7a3e3a3dc43d2a468" + }, + { + "href": "./CD09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd7453574e896f6dbe25add2c58119416befe26d82cbd3856a4ddce5111cf96d" + }, + { + "href": "./CD09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208914b7f587823dc66d25190b0ebea677185b44d0342cc63c828cf527a5ceacbe" + }, + { + "href": "./CD09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220841a491f709071255461e8f044b117b182b209f093bdbf1a90cc803cb954e965" + }, + { + "href": "./CD09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204c48d300758459309d1b04e471eaf976b43ac9f510b4c9e9c6efbd7ed1010177" + }, + { + "href": "./CD09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205cf3621aae42996aecdad031ac3bff15f85d3390199ebdf728a4dc8dfd2b5c5e" + }, + { + "href": "./CD09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220982e48b92e13c16f7d531e1be1e880e41eac3927e9904cd863eae6d414afb243" + }, + { + "href": "./CD09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122028e4498621d8c42bf905667c456a932084262c8a31f3b37ad3a10edd4717f302" + }, + { + "href": "./CD09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024889bd3b73f8b500067f5d984c5316ce82dc96bfcb02bdf35a4aa13e041f4b1" + }, + { + "href": "./CD09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201920519e80d89020f2b1bf5ec7c33af37111fc3b561d7cfa3193f4d36d04a431" + }, + { + "href": "./CD09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220410a68c1fa0832906993a83e0e0d9cc62a8c825b9f5c755f15ffc6002ef17dc7" + }, + { + "href": "./CD09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e611d702b7a51456a3167905d0d67e33cb0ed3bac07661cca683d94ea1ada30e" + }, + { + "href": "./CD09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220559089d2b893b8408d9f051314eadb68618697633e04ff71582208c7ff46f045" + }, + { + "href": "./CD09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202d3eae6f06b816e36df89698a9140db2411406491b23c298513bf19ed4000e87" + }, + { + "href": "./CD09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c67f0a3843e296c9a5519f64a8914a71ce076aaef74b1348b67a7a4535fa926d" + }, + { + "href": "./CD09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c0b5f6ec6b0754f100a07b54eb27208a230337a3e7272f0d377a7e19f3efe364" + }, + { + "href": "./CD09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122095e83a25fc8223b1cb5e900318bdfc0d4d75e8cef56569a28495a9990e8138e7" + }, + { + "href": "./CD09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204c9be5cae46546ae1ed8556d844552cefc67ff2f0c57930731a02da04197b062" + }, + { + "href": "./CD09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208ece76f433e9d87251d3201cbaafedc384668ebdaef522b68a9b547fecf22987" + }, + { + "href": "./CD09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dd706a56e33befc2d66cfc011f2335191dcd13449dc7c43462765d3e0460e11f" + }, + { + "href": "./CD09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a54e4039f8fa0b40a39bd4c705175877925c23d7f7fc754ce3aa4778261fd41" + }, + { + "href": "./CD09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122028d6a8d16d366c61d8780e49b11e49054fdf78c20eda26957a403c442bf5b93d" + }, + { + "href": "./CD09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204de334475d1b426588c0bc5ce218971cc4adea89d60066a7a4e64a8a018c75e5" + }, + { + "href": "./CD09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034e3b482f3970ba909106f79749c3cf5616132ddb59417e166637eda00521f74" + }, + { + "href": "./CD09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5987afdefd32ca4eeb17412c0eb39da54b5362d45667c2576f38c0214a54e1e" + }, + { + "href": "./CD10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204cf024259f4fed626905c9c6b39844049bce946e7d52f20814f0099a8998f096" + }, + { + "href": "./CD10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d210d44e83f7c23bb31aca94ba9c0bfd18d8231699db4da813675af71a8cb6c8" + }, + { + "href": "./CD10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209c17bd0d5075df8ed1b83356f4513efb3d90142b416ca121fd4bdd79c8318d13" + }, + { + "href": "./CD10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122072013b0c845294e2280b0309f8061c95dc4c2d4813a5fddd22e79963c4a1f9f7" + }, + { + "href": "./CD10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122067f425504959ead8bd146e136906f1047d3e59f4e4403da4a8057b3891f7dbc2" + }, + { + "href": "./CD10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122061f47edce2422610d51755cc5f3f4bde6a7bf16ee6f027633eff6a4d97261cbc" + }, + { + "href": "./CD10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ee25379a387fc10d2944efd0cbb4be5e95d45f3e7dba19c0568c61ee8a80111b" + }, + { + "href": "./CD10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220984cef609feee49b67a0d2516ff534713a38054d466a5c47eff80b99b2cd18ac" + }, + { + "href": "./CD10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122031f70d5d036b1ffa3ad546d40631f4931ada4056b41af00a47e253e14e737578" + }, + { + "href": "./CD10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fceb383a3e7d86d225d7ad71da17c7a6f2b695476d9d2877a0e97458d5b21ff5" + }, + { + "href": "./CD10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122085d9f13d002505879ba588e0c115b1621d5e0ac3412006d0ae33c31f1aff3def" + }, + { + "href": "./CD10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220349c4eeabcbd17f13f39b90642d9eb689d12df36cce84fd070acdfce60c8dd14" + }, + { + "href": "./CD10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122063484de7abcd0a4453c3896f6e5a2d08640ca2e2159606a63ed2c9a48cb1cc14" + }, + { + "href": "./CD10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204cc11f861021d3ba6365443c7df14450a97c7a6f8e4c1cc3c0c001c19bd21e2a" + }, + { + "href": "./CD10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202d715c64aef52ab2e05a87703212477573360e488400355f45fe6916546a6ccb" + }, + { + "href": "./CD10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122088f7097ae4d91c1328a503b74504704059d9cf76aaf7ecdc808e86c974d3ef08" + }, + { + "href": "./CD10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e9d4960ee305d3e727460dc78f906784ccfb8f05b2bd67785e303aaec5759f68" + }, + { + "href": "./CD10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f29d3b351051227669b54f245ea2762b499ff7dc051dccec8dc4cb883f304de6" + }, + { + "href": "./CD10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122085270a13bb768ae6441c05ed9133b439c87982beb02071f01a7bcf8f5b83204c" + }, + { + "href": "./CD10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220548bf0a49107823bb9ab0de4fb8beee306102b80041e682c83b903c06466bcd2" + }, + { + "href": "./CD10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220caeb88b3db11deee77adeec7ace824b119cbfb3e1188bc742411c004d691e2ce" + }, + { + "href": "./CD10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220621f8640afe662379e9070412fc879b5fa6aa6a37b5b94ec97d252bbdccc83be" + }, + { + "href": "./CD10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201e5ec70b67f3c9fdf5c20a95de53e45f019ff49e50d99360a511e9207208a66a" + }, + { + "href": "./CD10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200dc07ae58903070fc8a8738e1aaf11c10663909abc12d25c331175b7b1a59e8e" + }, + { + "href": "./CD10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220717215aa31c99483032c9e296c582fa8353fde2201bfa1f919fbe150c6b2bdc8" + }, + { + "href": "./CD11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122025f0719b4bb7fa5e0bdf19b978cc38258a677e27accd605e3d4c611adb735815" + }, + { + "href": "./CD11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122055c4f004a2eaa822e54d9b35e6549eb27bfc0f9562d22d1a0631277f47008fde" + }, + { + "href": "./CD11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a96045b959e61994c4ef4196172cebd5d61a6f3ca2c7132a2cb625a35e550fab" + }, + { + "href": "./CD11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122088526979d7e8c78ffefa4323f297983790b53989dca28d40eaa2ea4e81cc0562" + }, + { + "href": "./CD11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202092ddce0ea66c81be31ed3a29f50c2de67b5a87274ed529bfbab763f54a4eda" + }, + { + "href": "./CD11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec2dd5cbb155bc41b33c7904539a661d074d2cfcf0d5f3b72e07582de8632cf7" + }, + { + "href": "./CD11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208afeae6f334a79db20fb3343cee3ec2bd927d0fae9f1648c8d90ed60122b5b3c" + }, + { + "href": "./CD11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046466906ca558f024de1f87f100cbcb408a6e03455219bbf971f4ae7c2a7b438" + }, + { + "href": "./CD11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d2eeed58ccdb38bb7a36bc6bd45be53d5694e31b2242eba14e19c442e33f714" + }, + { + "href": "./CD11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e05be9b042dd76c818dbb2c5ae816f07febbd6819cd8e2fe0325fd5ed4e38946" + }, + { + "href": "./CD11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122026a9ea1d6953c0e16139b0064c9cad4b8e68066a7b70dd764515012ae93a687e" + }, + { + "href": "./CD11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122020aa5fcb8fd0bd5d5e265df5befee00665f8028324ccf8032e252c161eadfccc" + }, + { + "href": "./CD11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220809523cd4c27813530534484bdb245beb4533bb0e8890c34ee9ff71cdee9f906" + }, + { + "href": "./CD11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220677ad76e0920e9f974cc9742837256faa674a1ce205eeb8050a8ec6e62d48bfa" + }, + { + "href": "./CD11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f93961e727d3634d74cf73dff8482a0b000057dd6900daade18e6daa5541d329" + }, + { + "href": "./CD11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5c428a775b7dbd7a6a7f3d42e250f02996c77ea30394700293339a0f8b1465a" + }, + { + "href": "./CD11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed415a00ab8e2444bf58cedf7a4b55ddb0efe20b121d2191e6915c59078d0db8" + }, + { + "href": "./CD11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206a3cf3c4f24953b88380fe8100cf9870b22700b4bd8d1eaaf37124f224d72ddb" + }, + { + "href": "./CD11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122065dd2d4b8ad1938baee5e8359da177732db3ccace360fee20648290ebf7a1b01" + }, + { + "href": "./CD11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220908718fdee3ea4fc7bc19bc51074114a7bd2c620591267b59948f1e22b283018" + }, + { + "href": "./CD11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ae66401dc10bd4dbed988e4b88e216ce5861f2f99b964c93084c775a7c6e0c64" + }, + { + "href": "./CD11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206fa42735626444f067a5a707fa49b0d37640fa4d945d66016fa6813357f06de2" + }, + { + "href": "./CD11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cdb088319db157ec62136223fa14684c4d34d0ffae01ebb4d31b4c7992b94d77" + }, + { + "href": "./CD11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209ac6b15c73ea57217eb742a1bf0b229009081a1392d86691ff4f9a5ca5d2cad4" + }, + { + "href": "./CD12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f16e8728585c3bdbabe4495b57bda49eac63aea506a178670b84e1ad857ae75f" + }, + { + "href": "./CD12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122091fceae13ff8d278a6d76fb0a3f280c3ea0fb16242ba50ac51d4e19b6a005c15" + }, + { + "href": "./CD12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220006952cc419ea64d2cc36371a0227417abcf414a518858b5b2779f2f4a15a8eb" + }, + { + "href": "./CD12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122018c0b2a544054ca4df595602b7b8f9ab79a7a5978b7efdaba7157b82b25680ea" + }, + { + "href": "./CD12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220355fab6c7337ac1125c5021b2a1c3917ac3d2fc1b053b900d22c30876f6e10cb" + }, + { + "href": "./CD12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075930eb0a54c44bfd28fe98fd3ee9a21f209bef50c8391d3dff703092c4826e4" + }, + { + "href": "./CD12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206bd2c938640770244c21f3968bf03fe81c9d4f23d7b77867d0062eceb4a831f9" + }, + { + "href": "./CD12_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204c668e75ffc1adb6a3c5bf1e2f6066c0148c4dda844f108ef922e1b59b9db578" + }, + { + "href": "./CD12_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0c2acec37ec178e901973d830050ce654e6d8bb237145f5642cb121515aadda" + }, + { + "href": "./CD12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201347e7f90e0f1ed0fb294c2663017c626baeefda1b80d7debcf6ae3b49db2552" + }, + { + "href": "./CD12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205530cfbc2b727d4b1f4b9805b7b2890a07c1d8d5384df2d4444cbd08090c3945" + }, + { + "href": "./CD12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3e9e7200a3e02d3dd1d748954eef79cfaa9be2ac138aa95fa22c5af8108d658" + }, + { + "href": "./CD12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3e70eab5aef1b095661099f4a01c3c8a16592ef45bb823167293493d4bed0b0" + }, + { + "href": "./CD12_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122021869fc0e191ef46c0ef7fa2278391dcaf694b2e126f0372226b2a6a2f5b4173" + }, + { + "href": "./CD12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203b59154cbcdde26a9a122851e3ca52444bb4942ef2ccb2e6468a3667634bcf53" + }, + { + "href": "./CD12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220098871b814a2be0213e576b896953882724a8db2f56e080897ce928e15c919a3" + }, + { + "href": "./CD12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209bbec080db864a8752f0cc61b7fdfa960ee2af087511b522f7a28860afc39dde" + }, + { + "href": "./CD12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e185d5ef07bfa9de195909106eb782a40667a9c58d67d67cd5a984a7ed6e2b35" + }, + { + "href": "./CD12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f322bb7d6eea4789f988ab73f10cc0500b7c0a8bd40d444f241ebc069c48c3a9" + }, + { + "href": "./CD12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207adea0255fbb2cbdaa179edfe6c54b917950d42a736e12297adc725d88c70595" + }, + { + "href": "./CD12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220088de17c1f4e54d52b148dda92ee9888c11696c20c4ad41cda16fb8f3d44bafe" + }, + { + "href": "./CD12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd00850e2f2e5cef5c9428fde30dc39ff800b802eb764628dd116c8f06aada18" + }, + { + "href": "./CD12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220085fad9c4488ee55ee0578e5b4d4961147d59b8d36d1073d490120f0ed2e83db" + }, + { + "href": "./CD12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220efa63b31fc9dd4b07f8b473bfeeec6822353eb01c4d1ca0ffe5d26b85f2d3951" + }, + { + "href": "./CD13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eaaa88f3837b149cf0dd969a23d974e5860cea7984088ae730d045f24cdc4773" + }, + { + "href": "./CD13_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220650b671301c11092934cf0cdd2636c4f617276442dc3f4b952e751de5dfde535" + }, + { + "href": "./CE06_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d91c6cd21aec3b2d05c3d1b0e9c33e8fb3b4fbbf8f153ca9694a02d9cb02e96d" + }, + { + "href": "./CE06_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207bb920ebad3de91510780e4c3e952738b5192f62c6e6c1db74b9eaad5055efae" + }, + { + "href": "./CE07_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207befae874118ec804cd8311d4176437c42dc95dc1c9a71b0218a5387f604bbed" + }, + { + "href": "./CE07_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0b026c1e589cc30d42bfc12f701657069e24e0e6d42f5d90723aaad9b28b19c" + }, + { + "href": "./CE07_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4a83c4aa1faa0db1bc860b2bfa410ede503575386653868100ca28b32c08954" + }, + { + "href": "./CE07_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073e6ed8af87a3e5c84c2244a0084c2740684d1cc90c064dae46e494a410f455a" + }, + { + "href": "./CE07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209cf3220711d662ce49f981c0a452669bce6a6a09d443f92b0e41f0be2b5a8d06" + }, + { + "href": "./CE07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220151b112b820f8e5cda2259420c7b68d9d5309b3a66f1993452da01ed56b337a5" + }, + { + "href": "./CE07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a21b9941375ee149cd1edbffb40caf73f8895f7a9d7c98fe1782df77b9cd0697" + }, + { + "href": "./CE07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b2b7e9aece1e845f330b92db92a1ac082793e6e950d77b67fdcad6ae32a41abe" + }, + { + "href": "./CE07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034eac18e62aa349cb9d2a1d5e841ffd8dedae497db4a1ee91410415ccfc974f0" + }, + { + "href": "./CE07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd4dc6749418dd02143ac1a13dca9b527c4a4bd3f6609df882f3615314b22b9c" + }, + { + "href": "./CE07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220157a31f09872767a5acdee12913bce0e45138bd58fc43a78c36b119c996dc638" + }, + { + "href": "./CE07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f68d54ec4b53ab587e3b1bfa0feddb73461f01ae269b7ffd0587fc2307b8893" + }, + { + "href": "./CE07_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c9d46b01ba96b9015871c36e278603d124ab53e68e36c69b0fc47c6c5819fe3" + }, + { + "href": "./CE07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200750449d6212442ae4f69c426e58d9eeb4ccb01f04a8f4bc0d8e28ebf004fd11" + }, + { + "href": "./CE08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201bd7d3aef7be9f6458690d5a0169a93268a3a9e6c418c2d6ac48951a9df42551" + }, + { + "href": "./CE08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd2f02a48d78e06b736eb6e8d8fe5f75ddb0902a15bedab109b20aee6b918faf" + }, + { + "href": "./CE08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208b7d603b98dc1e5143900224633d35f39ca5c48bb426acd9ed2deb92672b3229" + }, + { + "href": "./CE08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220917eb9e860bce82df09c9ef0761fe74b49644a50618b5061746723505414d497" + }, + { + "href": "./CE08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203f77678bb6a474518256d116d1a9dab629c4578ea6f2040aee910e7469f36314" + }, + { + "href": "./CE08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220732ef894908241a75708c510b728a11f028bfcd3ede1d3397b0fecc3b75be5fe" + }, + { + "href": "./CE08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220598ab5e6de9e6bdc26c170133e03782dfa550000186617484c61cd5412a54535" + }, + { + "href": "./CE08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209cd43f86f54bf1429b96b8ea95c6d9ca81d433c65aa0df723b4a0285ab850467" + }, + { + "href": "./CE08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220116363c2f020815050dc2768555308f4767995142459e7f37c1bd1218927f130" + }, + { + "href": "./CE08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207541943b9047b3315347652169f7af661820f8834211deeac43db28fa6f6c049" + }, + { + "href": "./CE08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d7fd546c56ee26abb59db345957cbe2fbdabc2c69e6cb3b93eb3c6e30914c96" + }, + { + "href": "./CE08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203a0eb63190040a11cda41d8e33e7b7e7b5388e67bd3fa6def81af70fc2b32035" + }, + { + "href": "./CE08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122062cc5ff52a64a399dab75214ccf1ef5da98cf23d2c9806a4db4308c428b41a35" + }, + { + "href": "./CE08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207fd545690ec249cdb5f78a0c20bdd4f2ac3755ee8b1573ec8c27de05bb528437" + }, + { + "href": "./CE08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ee12db6d433e493a86613efa9d7d253036d65baa9699068e4cdda2b5e095c07a" + }, + { + "href": "./CE08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f0c48473d41bd19f1a9f58229d35230a561cd213d7f5b24f21dcc6d46734b1a8" + }, + { + "href": "./CE08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f73451c454562d8c51f0d4ce275e60026b99222387a8076bc09333db3b51350" + }, + { + "href": "./CE08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122037a86f9ba76c18e494464eaf99aed065e15dc9df2b3a8ca44d91669bda81f81d" + }, + { + "href": "./CE08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bb5729be23267e57cd14801f97389b335560cd310aa0af691aed754cc9bb36fb" + }, + { + "href": "./CE08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eb1b0b23d5f150c73eb673206348fad52cafb256e7d42cda0f46b1ea97aed80d" + }, + { + "href": "./CE08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024b1fc4ab42b452825b46ec27ebd74d065a72d4b8ca5a1c071ff62480003b130" + }, + { + "href": "./CE08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220106c0dac8ed75e653c56e200b2f026f06ca5bef2de0d37c4c0dae42dd8484e9f" + }, + { + "href": "./CE08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9fa2ef2cf2abecd1019f667a09068e451e135b781f738be3e6ea1fec386592f" + }, + { + "href": "./CE08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122099ef20d339fae1748a4732ec4665a915471aa6b92d82ef7caa7922f9006d04a6" + }, + { + "href": "./CE08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5e18e6013bed66a3bf9f6f5c17407e8ec83ffcf7567234d2ed8892c534b5693" + }, + { + "href": "./CE09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a31900c253f778bbd152c469003240eceff90f6efc8afa8a85d62be9f7eeb0f4" + }, + { + "href": "./CE09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202307df7e3b5356c9aa422e855e752f694c5c0d558bc207fd782d01dc6171106a" + }, + { + "href": "./CE09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220470193be4f38614068b5d7337726c63838d61e6910a748fd61a4ce963ca1720a" + }, + { + "href": "./CE09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122069774a2882fce720a83b6a6afe943731a2136a9b1a3f5b46ec7993c9fdca6b65" + }, + { + "href": "./CE09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d41247e394aea79866c5ce19bfdb1ea21ce361a04263d59e6a5e614111807435" + }, + { + "href": "./CE09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122079853b1f240ad917d9c73f33cbd7faf850a753a9c4c3511d86227b010cfddd71" + }, + { + "href": "./CE09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed353ae1b240bb0a51e032418c968f4a149a7f1785c69b3e0d1524d1aaccb093" + }, + { + "href": "./CE09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208fb804aad45c3bba712df91250cccc57d30a689db5d54add498387791358f4fd" + }, + { + "href": "./CE09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207eba99f05c7ef69977873dc017d0f9eda1046a7f28077a383db8fe2b8eb45834" + }, + { + "href": "./CE09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1ed97c20f33dfcb8173379f665235e509e07b1aae71e700a2d17f7a3abeeb3b" + }, + { + "href": "./CE09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201abb482a5f9a1b3dd94efff69358466276240b192ed5762f84ca2f922fc7e174" + }, + { + "href": "./CE09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220255bd9452f7274523072cf42dc344a41e612c90a54d4d219e97828f036996a30" + }, + { + "href": "./CE09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208025ffa264d936942fa6b8e3501f91d46c48892d49279265c2c5a2c61e8a66f0" + }, + { + "href": "./CE09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220abd122216531e760d35a050b2d1a6e2460244d81a38e3836c78754d9f70b2317" + }, + { + "href": "./CE09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c065c0f54935c8dce16a25d7b8e2e3c71d75a5c66abc669df8405adaca90d87" + }, + { + "href": "./CE09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220219dae9fe43b54a525dadebf3f53882a945ef80935da4cb32e43a62788bf5843" + }, + { + "href": "./CE09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220de2d0c662f0109716de56874ee369d57bfb28ead2922c7c4c398ba475b340cb0" + }, + { + "href": "./CE09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d2b40123cd023b6347b8f59daf036ad37f157a4d23324750c2b8d49e60c53129" + }, + { + "href": "./CE09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030fb1184e346264d4ab176afe1ba5edb61567aa953d546b394d7814e666b8095" + }, + { + "href": "./CE09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d9218060cc3db8925e1abbe460386354391ab567b8d5c860180204094edf1aa8" + }, + { + "href": "./CE09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220263e1de0b1e7de511b3923aa6b16596e5d710d12d87231989b65337c325606cb" + }, + { + "href": "./CE09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220466c0a54e5ba4aa73acdb43d2e27b669b0ea1958f2213e4c63e1cfef66455a89" + }, + { + "href": "./CE09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c19ec0afc62ee1217f5c34cf0f02fd7308a5397b0867bea6314a269fc2f1e453" + }, + { + "href": "./CE09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203cfde6f1e9abf27ea3592cb15a56cd3d7b7ce989f869c5bbfac6227eed172a84" + }, + { + "href": "./CE09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122071f970be2fbc3c869ddead7c1b50f661aab7cf17df5fb705f87f8662d0d56204" + }, + { + "href": "./CE10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3b207fe0c98334d431304425c0a94fd9fb83725fb47c6aca3fda5df7195aaea" + }, + { + "href": "./CE10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d08f8e30de2dac47697959b5a4d93f62eaadba046ae629121b163cc98d2e021a" + }, + { + "href": "./CE10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122057792a8f86a12764cc96107f96a3c0c1e0d87c71fae3ba0af0c404c08c96a94b" + }, + { + "href": "./CE10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202cee1a534bbf18c44caa7c1c279079f8acff3024c65344536757f07034dd40d6" + }, + { + "href": "./CE10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f21440b4a4222ba3904ee457adcb610a8564df5a83ea280e0bfb4915a3c5187" + }, + { + "href": "./CE10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220666246b5a91d4a7437f69e277c53dd335f330bb94ef2d724ec95a155c20acdb1" + }, + { + "href": "./CE10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e2a0653b29ae34fc925626e3dd0eb87d0b96374c907ae500d6c6eafe241c20a4" + }, + { + "href": "./CE10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075e3843b7a0804c501993ad72dfbec6db230e08e443d2d324cd5a3b9c0022f5b" + }, + { + "href": "./CE10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ddd54e874b0a02f8d39cc17cb2386c74abafb234c7d5a4872684395524b0a4df" + }, + { + "href": "./CE10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011d717186c7e2d506f2b173842f7e086fa92559c474ae4575b396af95d0db20d" + }, + { + "href": "./CE10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202388f1dbf87664b6d2e996c0ad537e82e804c2a0bc1cd380fecb15a2d3781b10" + }, + { + "href": "./CE10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f78119c8142aed595f6177bdda05b71f8908108a5f7c2b5887bfd18eb6f9bbbc" + }, + { + "href": "./CE10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122067690a409a805942ba857ac2fca9ea537cf398884d4d39d289ccaef88671d2b9" + }, + { + "href": "./CE10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202fa1e8a0a77d13e98328f88eab0fdcc780c4036a48632dee65027f564bde30a8" + }, + { + "href": "./CE10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220234dec1ef6aaf901580c8242c9dbc316d33fb7061bfd4bac40b062fe611c56ce" + }, + { + "href": "./CE10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a07ac20887d4180713502ce776b439425f72210399298f029bdac02f7291d34c" + }, + { + "href": "./CE10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220caef74ef8def1444f30ef1abe0394087a75fd252cbb9f598627143bf692b51cb" + }, + { + "href": "./CE10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073b3c5c1e4e95ef8ebb55a721dbf8787bb13d345642dba40164b9130b09414ff" + }, + { + "href": "./CE10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220165527ab70336e17f17c0900422c72098a3af6e9263262cc241c2c580df254fc" + }, + { + "href": "./CE10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fee1078eb7e03d8f5fc704fb7b0377fe1f843b885beeb5093e3ea1aa2beaf451" + }, + { + "href": "./CE10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220990dc5115324d33af18ed9b8e24d1afb346443003e45b41a9ff9d97c7dc0a124" + }, + { + "href": "./CE10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220910d958ce16e97377a9b0b598ba1be1f25215998769b23c48df2051fc09d1bdd" + }, + { + "href": "./CE10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022157d0cb2f15c39a5f289b6537606d9986c41e279b2d9eeb89eaa504f13be88" + }, + { + "href": "./CE10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f6f979a484f2361762d1fd0c84ab12411dcaeef22c3f8196d30073b158436744" + }, + { + "href": "./CE10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122057799e8889eb1eccae6dff3bf034004466c825ec19b95ea572db97cddd05bc22" + }, + { + "href": "./CE11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a9e04c241890a5b8999e651a552fde5c4597712bfc3d092392da082bda357cde" + }, + { + "href": "./CE11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed41553c77c443bf484120342123ae7bd31bbf311ada098328a048325e73c17a" + }, + { + "href": "./CE11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ea1510f9c3896b4dbe4db2790780914b7a2c2e16b66542019f09f705cc7770e5" + }, + { + "href": "./CE11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200a856a254b0639f57ae887356868d784499ab4bbd3ff91aa6ca78ed40dbea84b" + }, + { + "href": "./CE11_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ff519e0fc1ed27b633b31f51b9ca07b8e018e520caf4e9a8f5f699227c784b78" + }, + { + "href": "./CE11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f669de972d40f9d3ac86692b6e71469281e4f0d0efc956b59088422c1fa260a8" + }, + { + "href": "./CE11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6f0afe572c5984182bd2be9bbe2f8eaebb00b14784cd6ca9e85ecc89f880cf3" + }, + { + "href": "./CE11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c8a8325c113a8eb8f459ccfa6227ba6de13a269af77c6ca952e79df8755649d4" + }, + { + "href": "./CE11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122040eebe81a7a24920bef6df1dbe518b69f66f484503975a61c65fff70a570e3be" + }, + { + "href": "./CE11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200a7ebc7fe583879024f98fce40ccf35fa77551d39488cc57f5d0d3f0ce83f1ec" + }, + { + "href": "./CE11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017e1f92106c1715771183b370bb121615f63acae43a6465d0513744d9abe94a5" + }, + { + "href": "./CE11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209774fa89e7b83cc169655e21203736063d68ec69a21a9ecd7edd1de252c28836" + }, + { + "href": "./CE11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011d5c6e9f25d386afe3b9422802c52c704d5c6427eaf20a7e12853d90081f5c6" + }, + { + "href": "./CE11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220737e5f4cfcb53c9c7f81e49f2055c642d7f66aaba043312f0a8f511c2cd535ff" + }, + { + "href": "./CE11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207513f92c42a3ac93ebab28290e7b73e0d785c4d6019f2af521c59229efaab4f1" + }, + { + "href": "./CE11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf590dcd229a874bd875bf90d321d4d2649992a67170ec6067762cb17481434b" + }, + { + "href": "./CE11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220174014bf21656afbe8477c9e4679bae84e43d18b3df97e8642df01351abba327" + }, + { + "href": "./CE11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbfa5dd4544d1cf6ee872e71929328f055facf7e4add6b68967c9a3dab196951" + }, + { + "href": "./CE11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043f27477377318bd5fce6b49aa6b5f196a91e927e07524b6562778c7ba638b7a" + }, + { + "href": "./CE11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022014e1e374eeca97c21c2a3727a3386a16903f489fb13a124b469b1ab565f44" + }, + { + "href": "./CE11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201d7134d42738be5378b47674f9b22722934a6ef39163a0cb5cc3eddb2374c408" + }, + { + "href": "./CE11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209db3d53de9c371fca3712ca94c0af7abe84353f8ccd33fb8b295e7b026ea03ea" + }, + { + "href": "./CE11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be828873cb790204bbebc9c31c5d344bbeae41e0b39cc83370a098407e93867a" + }, + { + "href": "./CE11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202c19dcc334e043e0981357a68212ed0b44834c3d23028182b61536d864276d3f" + }, + { + "href": "./CE11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207056bfc38c1b6a72e7c952df28a18359c0a2cf0f066b725b67fe9a3fec6685de" + }, + { + "href": "./CE12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220835cd859a2ac0aa7f9795682d4615f8d29cdc600d6e8fba67d673137055bc1a1" + }, + { + "href": "./CE12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122058e9232a6b7d4ebce1d528f045f8e269e9336aef316f2e27a83690a2ae9f2ace" + }, + { + "href": "./CE12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d78b954ef657f34141efebbc16600b8158787d5ce8dd7c0badaebe87708108ee" + }, + { + "href": "./CE12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046dc62e61802bdf3fc9f7a6eb71cf5be546c785777e14933db367244314cb21b" + }, + { + "href": "./CE12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5565fdcb356d1a6dfa33402c8d5e13f7b8c932a42e05188e9dd1cb0f70b1324" + }, + { + "href": "./CE12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209814f5627ec4b64e873ad303191d269f57a45a77223561d8ed24bbe825d6eea5" + }, + { + "href": "./CE12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208140b418694264e9e7797df808e2d5d97215ca49980dd8ffc3286106c3f47ede" + }, + { + "href": "./CE12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205b7478d4bec1600541166ae6e309911d9ec5638980a448b075283cc4dfa4472d" + }, + { + "href": "./CE12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b3f7294f311d06f51b52d98998ea52d976166cf0902f8d563bce194d8cae8bf5" + }, + { + "href": "./CE12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a37ca9bef5926032dd1dff801c3aadd1f4797922cbbbb9a5f15fe32610c99c35" + }, + { + "href": "./CE12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a09ecdef16a8de3d126d85a22847fe22f7a1baff5824a7fb0aea5b3c222806d" + }, + { + "href": "./CE12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c47a2d8d379c9c7daff3447ef3f34806d5ad714c159b71181614fb77ea2d60d5" + }, + { + "href": "./CE12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a51d4708f508654ac42e6b5a1754aba8ff69ddb21b00509b11ea8b94a8f167f3" + }, + { + "href": "./CE12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204bf1529d09fdfbc70b37dfa5afdc628b0a5853c466a2b61938ad82e7d6404a23" + }, + { + "href": "./CE12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220273332b1b6890b63d1ad6bb1b00942492213dc4660539efce8d1fc985f6db0c2" + }, + { + "href": "./CE12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220285130361499da01addc89e2030586a19f75b8d38fa63ca589df2fbdfbb34111" + }, + { + "href": "./CE12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060bd954ba6bc6954eda8992b5f13c955b8031d926158b86a9e980f3b2b9c73cc" + }, + { + "href": "./CE12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205fa95b67f6612c5880f84c9e13ac4881e2d27768d6728c9123379bba334dc8de" + }, + { + "href": "./CE12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122052b942eda8f432c6bcae410e5c2f48ad0272e1e727a8711e6bb104e5fcd0e658" + }, + { + "href": "./CE12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202dd4251b365b74e899406172252e3f92304b54a2253368f9027818471a121d68" + }, + { + "href": "./CE12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9e2651d2468706d42741ec19c2987dc9c7750ed95df1d0955202745c9384b69" + }, + { + "href": "./CF07_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205bd4687abb79e2b8cd6aa1b29124c7d2d3e9cc5dfe25f5d3c74d50f3cc6992c0" + }, + { + "href": "./CF07_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ab1144c25804f4c8743cf6429e82ce3ed9731c7cf2f722f0a6893fb92cb1c5d1" + }, + { + "href": "./CF07_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec31f7e2c787ee6d22e3c147ae6744384f7c05aa7b8cb6cc78774a1c2f67d6ac" + }, + { + "href": "./CF07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f9240b94935a1417ee7719224db90c98e302385177c0a26b2babc2435c71ae1" + }, + { + "href": "./CF07_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203e69ae77b76827145dc43e7a00d202e28a2cbe030ba192e46b29c573987a54b2" + }, + { + "href": "./CF07_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d8f07a19abb6d2bb82880244aef73f76067c7288aa7793d3750ba85ad595c6a5" + }, + { + "href": "./CF07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ff8330cfb5f9927ef6c30d459ee3e0855042142a8b4f64091a21a85ab74bf7d3" + }, + { + "href": "./CF07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122080484028264f175f0a4bbf0d560fc0180ba9e533212f7c17dde5f01caf299164" + }, + { + "href": "./CF07_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204cebf27daaf4176dec4031abe7def1020f54aab2cedf8a2a8331cd8a51e1cfbd" + }, + { + "href": "./CF07_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f23251d978c5e484efb2650847379d6a3caa3f6842cd62618adcb3ea6f834395" + }, + { + "href": "./CF07_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c6de47077dc0c27776f4577f3443da59242a6baec7a014f5febcb6874a4c0301" + }, + { + "href": "./CF07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064082dfaf6ec9589ff563b5b20a32ea9ad3a46d78a76d66000c67e632352f15e" + }, + { + "href": "./CF07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010e62ea45c88c143d85b6d3dc2e1e9178859d7049356019d77add8a680fdb823" + }, + { + "href": "./CF07_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ab2adb84d5971a32a42764bef98259ad4b470042d8042f6ee3b8b7e4b6923222" + }, + { + "href": "./CF07_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a982159523b5e2cad01afd83915fd429625a1d6b7c96b1c7b7d3b3ba0f07860" + }, + { + "href": "./CF07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bd34eeab1bc5b4cfc2a896df260de6a45ee65dc3ee9f9aeaa8338c09125cca9d" + }, + { + "href": "./CF07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208badaedaeeacb0835c7f784988576495f5e505d167c76fe97584e78c7247c6b3" + }, + { + "href": "./CF07_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cd829d2daa5ec11b54f9049ed4e3782233d83c813068162fe9f47dcacaeb4e95" + }, + { + "href": "./CF07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220369103fd4b43aa6388c3aa9ac4e47ca5e1f5fc023c015ff0295a60c981f5eea8" + }, + { + "href": "./CF07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201d68e7847665ff90ed9cd669b189808b55dadde5cb31398082ae7c3810686c01" + }, + { + "href": "./CF08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200b5f61d12ebebe0db5b31182f57559f38843588f8b3f11c799c1ef13b51fad63" + }, + { + "href": "./CF08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220842f6bd2609aa03849f103ea29ed15ee24a023ae9b74e017e5ff0d28da533fef" + }, + { + "href": "./CF08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df5b221a22e279da3f10edd0db41389f07a3c8da5735d546bb920d1742bac4b7" + }, + { + "href": "./CF08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a1e82348761a59c097814b0c68d52f2f98a3a4db7fe266e520d783eb0ab74a0" + }, + { + "href": "./CF08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cff8f42d3042aaff564dcfae17d8294b287965235c2fb96d90b634977d8bb4ef" + }, + { + "href": "./CF08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122080006b99d84841951305f43f99f37fbdf09c593ffa41f0407f79cad0e32b0288" + }, + { + "href": "./CF08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e9b1678f34f183b20f42fc9bc1778fb057c9192bcbb8ca728a8b6947f2cb4783" + }, + { + "href": "./CF08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f06aa2ca487bd3292220db80a4eb2edfc0de250c7ef0ddd67edcf009a19e105" + }, + { + "href": "./CF08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203a68b3fac65dcc99c7b1da8d4572dd888db6823ff6ac9601fb3f577b327e9de7" + }, + { + "href": "./CF08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204f115b1cfeb13941246bb492e4cb21e0373e7eaaa81f84237ecf75da760661ec" + }, + { + "href": "./CF08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208777254f4578dc92d9efc905feff92ada632f4c93334fbb58816955d4f1319ec" + }, + { + "href": "./CF08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220151a47cb444af560eab8a62882a7118662c19af9ef43c0e5e90f12c99116accf" + }, + { + "href": "./CF08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122070548f70085410e77a0ce1f858767bd30065a6fbfd162f13adff30297917a4d2" + }, + { + "href": "./CF08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a51e35e92bee074b9badb6d34ebee180cbebf67ff78652d14998c6cf8658aeb5" + }, + { + "href": "./CF08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204e5a72cec725ac93d5fb7269bc7964ad6f3e393878aa02ca1ffa2bd9567efc66" + }, + { + "href": "./CF08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122086b1badfee30c3d219838e27110f94cfb4149b0be12519712c24d41c56d0a695" + }, + { + "href": "./CF08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122071a13713c29fc1af6d9cf5c84ba4754af700212f4498e932de88654b409d3a39" + }, + { + "href": "./CF08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a20f0efe519d4b8373b996f9863b5f21f65da6b01fe5f1054bb5c3092b069021" + }, + { + "href": "./CF08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d24c174be22d0b97dff16ec6c44342d52501adefb8ff26b5fd9af36fa80aa2f" + }, + { + "href": "./CF08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201eec5498760b257d4afbcff88baade4b40feb3ce1087d20ec0e67ab053880692" + }, + { + "href": "./CF08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122008047447b0ada1ba471d79bd8d83a72d3548af0e0048ff4ef9ae4f00a02813f8" + }, + { + "href": "./CF08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c82992a75682abd58eafe1d7da98b410b27c6da0505d0ef803f36e0718f9eeb9" + }, + { + "href": "./CF08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122076955e0fce15e86338349628cfb55c76b23fd65d52a76b8b96b856ebff1cca88" + }, + { + "href": "./CF08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205381a55a95cc52df3ed1d5f78975e99b0a2efd0c6ae22662f0c65dd39d10dbe3" + }, + { + "href": "./CF08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201af6f7298b37c90fec6c75dad57d527d252cb86c711830f6d413b0279351bc73" + }, + { + "href": "./CF09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202799694b64dea9c387cbead198224e8cb72594b713f16b46308f248acfca3276" + }, + { + "href": "./CF09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017327b266136287176ed63e3bba376b38ee84bf5d611869151bef1683d2f691d" + }, + { + "href": "./CF09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200815c64c47192690395e7ee8c024284e5971168676483c06a2c150c4653b3a38" + }, + { + "href": "./CF09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122038b8e854b08bcae4033a98ad5a6241c6a4e9c538750eeba5f99e7378e642d322" + }, + { + "href": "./CF09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220346cdf7a3b71b14d97d28f0ba0d47e37e614d7b9789060544f75f8860b163bfc" + }, + { + "href": "./CF09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220219c7f0b51367303f0a79d8d044584223a4661aa24ad61577d4f7cdf8e22ed2b" + }, + { + "href": "./CF09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064a19b533e4225dcc74382242f6321ad43e0e57971c0812d9a9d9e8833e587c7" + }, + { + "href": "./CF09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c0703f40a1116f526a2111eea830e6e0ac601df4fdf19b562acd0ad3837b9fe7" + }, + { + "href": "./CF09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200daf42c0e1e4de0dfa44f1ebcbe3f4e44025968034246e1a0cf7da8eeb9b68d4" + }, + { + "href": "./CF09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122090bba7489e976ac2788380ff6d8f271d51d70012e3acee2f83af9d89f2190187" + }, + { + "href": "./CF09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5ba41ecd67861baa7abb89ca9d5f280af60b4f1a749f9e09d37920c73b64c7f" + }, + { + "href": "./CF09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010ead13bd6020185efde54c09f76e81a34c14e1b88bdffab9c5863ea2ff29c13" + }, + { + "href": "./CF09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122012650c92af5a51eaea4ff5be92d052e6c3ba7421bbb0afda9c5ba101b25fd1ac" + }, + { + "href": "./CF09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122062c4714b0d9d1c84cd5139e02b9abff167dc53ca17368282a406b8b0286f93b7" + }, + { + "href": "./CF09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200d4be48cedf65e80eb499211c8e0cfa201bdd16469b79d93282eacdc5730fd1c" + }, + { + "href": "./CF09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043a35cc9f12511eb2674c05558ab4ad6441a11ed1a4061d1a3362736fc7fdf2b" + }, + { + "href": "./CF09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022b003d4f097d1c12fe01b3c72df106f944d79edb65b25decb40cb19dcbfbcec" + }, + { + "href": "./CF09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220db0f42cccc11be6b061b1dee210c9c2002fe1fa3a7a586122d11ea807d492db5" + }, + { + "href": "./CF09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122090582c7a8bafc5a0bbccfb943260da7be5f95662ab4b26333f08875c4240b2aa" + }, + { + "href": "./CF09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220303d34c912940659a32819beb3f2f633315f199c637e7a8f90006e85db71a818" + }, + { + "href": "./CF09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122016e5a4c5b0b82ff4b0e73df8c50568ebd6f186339cdad5e81be1ce334b67e3bb" + }, + { + "href": "./CF09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122062e54801d59ec64f9ae9a17e2e6bde8b100a2d6b632a371613b215f85bcc3aca" + }, + { + "href": "./CF09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122090b7c150306a058896beaeb62407caa78d9e6999fd161fb8693999f3e9266eaf" + }, + { + "href": "./CF09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122057ba954394550e2bccb358eb769934b526d86215e932f507e030bd7af6fd471e" + }, + { + "href": "./CF09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d06f20fccbaea93bda270ad2eae342b2a0a91602dfce6e272e915e557ac1b4c7" + }, + { + "href": "./CF10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d8b111c1414820e5e447d879506a00820745193c05f172f5243210892321592d" + }, + { + "href": "./CF10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220264723a26727eabdb27de748608f0b06e07932553afa8549a265c9e1b1245d40" + }, + { + "href": "./CF10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c4346cfb1aac19c5060827a8f69e4499f1f26d4ffa7a0ef951d9fee5b0bad48" + }, + { + "href": "./CF10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220576e6dfa2eee4fd895fc17d7dd94c9f056726a727097993ab145eaf0f2c43c90" + }, + { + "href": "./CF10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206aa4682d5225057e1fab34832794923d08374d16bcef2b2a047a03c0cd4a33d6" + }, + { + "href": "./CF10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220797412dd0a702d3e0d64642c23a0e242ec791b3298513c69bc75323255a22793" + }, + { + "href": "./CF10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122028ae2f0910c410e4ae814d7d238d915d3c0edbe3bc7208232453cb5679338312" + }, + { + "href": "./CF10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d4e909129b3478e4f057cb80758217883c3c73dd880c596a195fbf2141224d1" + }, + { + "href": "./CF10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122076ccbbb6f0a602d22162afbafe2371e5faba03a8bbe52f30c2804aceea19a6e7" + }, + { + "href": "./CF10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220de032a9a17acc32cfc271be7fd77a5c8ec5605f04b44899feba189eab8ccc5af" + }, + { + "href": "./CF10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a63f1b5d73b9006e01ae658008747b0c7e926249bdabedb92470805961e0431" + }, + { + "href": "./CF10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d7b2cb9182b6672841f27430c7f5a30e6dac1d4a51120aee1e2d49ecf985b012" + }, + { + "href": "./CF10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e8f07b15a02d8050b6e4e6d0f56df23dad72c20340fdd71e746f64b4af16d63c" + }, + { + "href": "./CF10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208aa1dbd1c3081cca982b308088f1b66df1262527ff6f56f204a1901569fc576f" + }, + { + "href": "./CF10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094ad2ccb5c7f5151b761971c9bbd29636e256f34cf61af7fa455de4fc7059fde" + }, + { + "href": "./CF10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209bf9f4f9a91349e75c35a8f161f97bcdd0d2b363c3373d95f263f1587d542dcb" + }, + { + "href": "./CF10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200947c9890b48e2119902bd172d276411a9d2e35857575d670919f09854c6fe89" + }, + { + "href": "./CF10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200eda629bc877a3250dbf8f4ff95484c1cd7b5ed3818bb7e287b0994fab0599ad" + }, + { + "href": "./CF10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122092970777508e1fccbe90cc3cb1a6153bf4e9e2ad2eba8110b93afe2c1ee13138" + }, + { + "href": "./CF10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075150d3e38152bf6b2a306f7b1dd1cca1af68ece2eada676d8fec8185707d85a" + }, + { + "href": "./CF10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b25a4d08e9dfc075f20aba358d09e756f5b6f788d81a1531049d2073b04a6ed" + }, + { + "href": "./CF10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b202d9c7da704dc75ecb1fa733ee84c12af0656ede30d36939456e5e2950d45e" + }, + { + "href": "./CF10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208c377f475ca49a66db55cf7742bc0f5cef6bba6e9e84cdfff5e513818dc35448" + }, + { + "href": "./CF10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fc385dd4d43c0a417b82360f07937e9163d7592204b203f801e60482c47ef52" + }, + { + "href": "./CF10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122026ed71d7374bd4bba88e4ba74c481d751b1c793644618ea08eaaad7b6f066182" + }, + { + "href": "./CF11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202066068b849a7727b75e45c7a33a16fc20a2e20652b95dace61d7938539e0b18" + }, + { + "href": "./CF11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200eff092d76a369644b763be2880cdf20303555924204a16e7462bd3dd974c94a" + }, + { + "href": "./CF11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209787ca8d5deb1d3a3c29b48d4330484632dff10f1ad33b94cac4ca4b88047023" + }, + { + "href": "./CF11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f74b81b71122257591dbaef44167c30b7505836eda902e7642e4396120f2357b" + }, + { + "href": "./CF11_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220471c255a337353c54cd6681b238a2324336b77a1089c9e9be92c4de6bc08e7a0" + }, + { + "href": "./CF11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220364afd72f3a1ca6a2191e078134c168dfc7abecdca009146a35a30d084e7cbd2" + }, + { + "href": "./CF11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aef552c0a54ca5539b423534c9fb38e157220073d050272e69e64001da3152bc" + }, + { + "href": "./CF11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c82479629ea7d0fc1097ebbceda4e9fcd59dbce2fa2bbbc36cfe8e8b3ca71dd9" + }, + { + "href": "./CF11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc87df297e90f17ffa5f59b1a58d137a7e2a981c210ac0bf72cbf398bc132664" + }, + { + "href": "./CF11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a663930fe13020c4b239f4e870478fd06a07dc01ebcefef77f7827915260796d" + }, + { + "href": "./CF11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122038e4060ef00c6ec0b78cf99db86a9288ea47074eb1d708089c99b71aaec46121" + }, + { + "href": "./CF11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d8e8d73bec19822caa6b6847ddb61502000d65a97779eeb69d57f42e71004e41" + }, + { + "href": "./CF11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ce17f5099997d178b626004a96e40184cd22301a06a01ee9a70cc82e5878b748" + }, + { + "href": "./CF11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f789d600ad5a0d354511ffd21c910df4cb0378ab84fc5d674ba8545163321de" + }, + { + "href": "./CF11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122013ffadb5cbc9aa4ca577cf6f7e74210e2b24d1756b9f08ea4541df12da326b56" + }, + { + "href": "./CF11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dadf505745e7a2accccee47fdaa92a2d2bf7153341fc0acbcf44ac82f4ccb759" + }, + { + "href": "./CF11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c1e75a2df65f4c606818915a59361929eda0de98a618d90ea3e4e4d0d9f6410e" + }, + { + "href": "./CF11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122065207f2f71429c36a55e2adfaa5f91593ddd17f0e0170c5d72854ce4e9b1791d" + }, + { + "href": "./CF11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bc830ef9ee376c6b2cb979ff0a359100cc703996e86eb4eda01687506a0ee3ee" + }, + { + "href": "./CF11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a2b49d5b4dce91af774e581842466cd3437d8a6e0ecc6f3d3250a45b7639f5d8" + }, + { + "href": "./CF11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060e720ef271f0cf4d8d72ed3a6ecf34d11b62cbf2566fac425198412bea58265" + }, + { + "href": "./CF11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a00b70dd8c49012c43f3a3b60810f711c740980997a1d2a9a492b4c909eae420" + }, + { + "href": "./CF11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209674c9adb04a827780cc989841b3b96bffe8d8f8ad7bc69c0771b45a3a88fe21" + }, + { + "href": "./CF11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e367a290e0dd2e38e44d335ecbc05d6e8a0c95cff4d00ec9d4fda2f24485bc92" + }, + { + "href": "./CF11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122006344161921d22ff9a83a2d82806b889864b088ed3465a97693adccd1dca575f" + }, + { + "href": "./CF12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a10e34057a83b5a7094a7f62bbe53f66581073071c981dc3162088b40ddbc0c6" + }, + { + "href": "./CF12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b7bb00a09bf215e6c4cf425aea155c618acc01b7db6bb9bdacefb4f44570b20" + }, + { + "href": "./CF12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122068e3c33c7cb6ed0dc2004bbef08ad6c7e65d738ac86b9e523350b9679ebd7184" + }, + { + "href": "./CF12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a830ea219b7b0067068207ad1bc63a43a8f6724a3d8fe929c45113cc29918657" + }, + { + "href": "./CF12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f04174101ae39dd749f60c400ca6e094696d5f12db37ae6fb93f5c52dce41536" + }, + { + "href": "./CF12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122080b6a2b93d9da419f8dbe7f87cdfd1c70859cb12dfab8f8f02e52df74bb45c0a" + }, + { + "href": "./CF12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f820d9316c58ab6f6ebf0b167fe8ac960336d7ea0325a421c46ceedff5b905b" + }, + { + "href": "./CF12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122090dd8966b9b40c147f7402a268a1fc7c946b6c223198df0c84c05475554dc43c" + }, + { + "href": "./CF12_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b15c8d48a2f1dd5fdde4a6e04d5f9e81d2004edc5a9935daee8c435a19174cd8" + }, + { + "href": "./CF12_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d5f0ba76b26a0664f0058a5a2d3d59cb1a17edef2c42b7c222fcd1069352769" + }, + { + "href": "./CF12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208d5e6b3c0a6bd50f9c6089dd699a6c84a703aae9525ab623a4cf36f5df6bc449" + }, + { + "href": "./CF12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220770b144a62ecf6b649cc835c48adf18ab5df7066324da6c436a63ca41bf9a019" + }, + { + "href": "./CF12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf1c3dbc9c011151f1353be6ceba9aab2363badcc04f8a05a4b5f90f491a75b9" + }, + { + "href": "./CF12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122055850d9b82ba0a4c98cb1bf66ccba3b704eedd328266df350057eed91316733c" + }, + { + "href": "./CF12_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5f2a6158b4a594c6e7cac1d55200f18ea877b882d03663b977a9e02a9af21e7" + }, + { + "href": "./CF12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd16eef43da6b157ef8160a9c6cc0dad088480c1a1f260eef7798f95e331fc01" + }, + { + "href": "./CF12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a2953cdcd4d80621aec5ba57eda0536aa8772ef86516fde5980ddd608347d1be" + }, + { + "href": "./CF12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0fe60ba66d6e7c58d999c8070480ce65d84bd85dd2ad81413ebd52496b732b8" + }, + { + "href": "./CF12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aaa4a67927c98570eb01c60a94e019f9419cfc45790deefe063fb9611dfe74b8" + }, + { + "href": "./CF12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a6ca093d77953a5ed2a2817202709270e80e9c91241e14aab20641f0980e77ab" + }, + { + "href": "./CF12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d975f245b49882ee9a243525def2d340c5aa7bdf36efd26ab7ca957d569f984" + }, + { + "href": "./CF12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060e51a53b90b19a5c5de7f5d7d19b071a1ab1df854ced7c60086d1da6ac92d1a" + }, + { + "href": "./CF12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ce26aca48c8f73df0bf8eafcf54467f1b78ece19a2c90be880b9214b731dd555" + }, + { + "href": "./CF12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c673c5b8a7ecfda0f5651eedf251a497befb159deb33060bc79f06d7507451e" + }, + { + "href": "./CF12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bb43ea797bbc8f17ddbf85bf3ea9b1995745f7dd6e7c57df6b7aa21c71c70d3e" + }, + { + "href": "./CF13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7ead887d387b0d885efde61c3b3987736335db14d76baca7d04c23d538a7c02" + }, + { + "href": "./CF13_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dff8dff22f9420ce9e009ba3bb8c3386d13cf6c962eb97645ffb45754c5df8ca" + }, + { + "href": "./CF13_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030e747f6fcf343d9e6898dcb1ec1e032a4de827f9aac01d9298c36d1e77310f7" + }, + { + "href": "./CF13_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b8a5f83befc43cf60c9232b64b80ceee2180993bcc85dc2dbee17ccecfb16887" + }, + { + "href": "./CF13_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122091420db21d4902e0ebabdb700ba06f618ceae5eaf1e755540aa326ff09eba893" + }, + { + "href": "./CF13_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200611413e506dee54a43e09c85e1cb15e87716b7ac2d22e12335849e98b2bbaeb" + }, + { + "href": "./CF13_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204ed7ec16e1f6722d8488ee2ee08726717e645bf72f6759618cb3f13025355385" + }, + { + "href": "./CG08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122035bd95fe428f7bbaf8a506ffd1a98d270816e7096478713a18a40833906a7a02" + }, + { + "href": "./CG08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c7e4909bfc39c28043038e350e837937f5a0267796c98ce9b2a0b64d5dac8799" + }, + { + "href": "./CG08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f56330f4c14fa7a5da71b9ec40c2f46bd33dc9117d239928ee0b799605b536bf" + }, + { + "href": "./CG08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3e522bc4b5d429b3d17d5f645ab6d9622a79b27773f82878a3285179190831e" + }, + { + "href": "./CG08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122050a94c460e80b3a2ac501a73b73cf8167c5211e66a843984ca52ca57e27713a4" + }, + { + "href": "./CG08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220abaf2ede042276bcfd4ed8e5bffaa1efe3357ef1bf314c1d83377a6be235737f" + }, + { + "href": "./CG08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122042e63e08281f1313498d30b94e146802027883e595e2640a71bfbc7108a26378" + }, + { + "href": "./CG08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060d7c3f5dccb27b230cb3855c82f6377918ed3c13e498f86674ce048abff61ea" + }, + { + "href": "./CG09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200bbe7e94272361ae8073b32cf0c9930aff7c3c14fcbb5a8503dd5863c1c86b15" + }, + { + "href": "./CG09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a0f536d33e9a8c95e2c228b9339e05138443262736913261bb3144eddd82cec" + }, + { + "href": "./CG09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094e8456921cd87e9950b5e96cbaf33bfa576201e181fb8425581031c6611d676" + }, + { + "href": "./CG09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207c715061bc0e03a177724a01771e95fefe741e3757745a48b645b8bee0e31d39" + }, + { + "href": "./CG09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d631764792638cc3795d7d0b38722953ca420ba3ee04ac2cc7ec90554c423c8" + }, + { + "href": "./CG09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094403c2abd94b40cfafe74bc77e95905ec9ae312f1f3e01d2f7f07c173e3a6f0" + }, + { + "href": "./CG09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c41bbd88d5babd57e0c1b11588cb34ccf698859e739a63e0a26f095b85653544" + }, + { + "href": "./CG09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122071bfad494b4576bd9e2a72f9f680cd5ffbb0d8f2686d4b9bd027dcfb565a9d97" + }, + { + "href": "./CG09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122025dfb07d65e7801b73777e579caf4ba7ee08297987d5e8016aa5347e639a7404" + }, + { + "href": "./CG09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1a0769aa26ab742588360bb9c4269c71d610d6f4008045a9bc58a74f9418278" + }, + { + "href": "./CG09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ff2e697d88662d8b6f004a9168de83e5d46ba96f215dd1ba4318dbc33565d13f" + }, + { + "href": "./CG09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201094053ab10bf35bc44c2df22b2fe1848ce4446f7a2f67a6fb7d65908fe7e09d" + }, + { + "href": "./CG09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ac18843da7a4a8c64a8e68a1a7d16e211a8168bbe5375336f599077dc7cb3984" + }, + { + "href": "./CG10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202631ea7c468ee5eb462f186d2bf15e301c9f9673ab3a1d88a64d16ad51c223b1" + }, + { + "href": "./CG10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122014f8975952ba7b73e19c77190d8d6a158a3a39e27a70562831ee5a817a549866" + }, + { + "href": "./CG10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c763918f876c71e151ed39a6b24b2554974594fab0d379f891221f8eea5effc2" + }, + { + "href": "./CG10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203d9f8266266712f056c7f8938884968d2421c33ad53724dae56bca5196bf27b5" + }, + { + "href": "./CG10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf275e400c325a713e8b0822e4457860de2dc72c492acd5858a9c479af80afa0" + }, + { + "href": "./CG10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ff2a735a026c4afe4330f82486d3f525fcd7f90b437241848bcf24f403caa11d" + }, + { + "href": "./CG10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b63af06e176cd9c1248a759cff7a1529f292643b4e58969d7058a918cf05dba0" + }, + { + "href": "./CG10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a3c05fa6ac124de15433496ae62e66731953853aa93f1bddf5f4318d072c5357" + }, + { + "href": "./CG10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220632339553f54ea25f8b193fd065264c9070a338a9d6cb2e7283def63ac75ef42" + }, + { + "href": "./CG10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122062b40516e4684b633df3f50c9c70484985a3ba6b757b1fcfd05b5daff831976f" + }, + { + "href": "./CG10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201b64d5b5a8c0f8d86d38c5c0744c4f3008575fba4b1477ed5002ab7c87134f75" + }, + { + "href": "./CG10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f61b89a2a3d5e0475d8663874cf6d801fab2a23a05fe741fac2bb01ad05bf222" + }, + { + "href": "./CG10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202162fa7890d3b8f8d169cc8908215d58852e78c45c47d9c42cc830cff984c695" + }, + { + "href": "./CG10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122025c24b169b419aa96c48622e5d224680f0e95d82c670d439827f491e89cd4220" + }, + { + "href": "./CG10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a89cdd1364db4dd3e8a70c88ad891d7b77463a047a0e63ea50231d80b2eafdc5" + }, + { + "href": "./CG10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bc18d7e59845b04685339dbaab967f1e286129c625aee9f1400a736b092171c9" + }, + { + "href": "./CG10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122049530231f9691e25865bef5f498ad394f606627ec3d69ca11a6c35df53ddc429" + }, + { + "href": "./CG10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dfdcc2415a2fd8cfcdddb8b9c2ad71c7a8c61e33aba090dae9f0d9ea8d1d1e69" + }, + { + "href": "./CG10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122083d6f517c4c7384dc64dbad22c86035c22fa43c848ac13dc1f7a016978a4d9fa" + }, + { + "href": "./CG10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ac350926c9adae18cf729715d2990fc5622e1ed77c5501a3294f1bc1fcc7ef3d" + }, + { + "href": "./CG10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203ec066a6a30df50f837315c099c8bd331077263cb7639002d8170a785a15daef" + }, + { + "href": "./CG10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c018a4791e2e96d4733f608b446bc93481e17ccca89fcfb459cbcfceb18164c9" + }, + { + "href": "./CG10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122076340d4379e119a7907503cf23884207ea20e6852e518bba210ce5e0e5927c4a" + }, + { + "href": "./CG11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122059accea165c6ec13b673c2e2732167a0b63739b559c85e827a00c096e7eb376c" + }, + { + "href": "./CG11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d014dd20b0405c65ff1896f99970fb53be050b7026b04f6c891aaeaeb36c1f2" + }, + { + "href": "./CG11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220933ee115e581bc7d6d6ebfe0c324c0551e7f87c1450280c9ba338e365002656b" + }, + { + "href": "./CG11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc27a4810efefdbc482b720d9095f4cc955974bdcc3cebbe9fc1cb710c6aecc0" + }, + { + "href": "./CG11_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075d4e1c7162d0b7879d7a618b9fb79fb9d8a85884c272677ed46cdf5e2235777" + }, + { + "href": "./CG11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b46caa57c772cf93343ec0b315099b0b0eba948421a8e674207b4bf6ac7566f9" + }, + { + "href": "./CG11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208b40c29a3d89c1bc0fa1a22429cc6abd80894bf49a15ea07ebcc094fbe0314e9" + }, + { + "href": "./CG11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b2431e2844bc0e0aac03c20754f8247d69ed45716279f55a5bd75d4a301ab83" + }, + { + "href": "./CG11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220263077711fa84ad6bce1b23b4f2e5815a4b2571da60cdca47d9828f2877a11d5" + }, + { + "href": "./CG11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0456d108d41fade186d43c6bfb1188991bc8769651fd19fbaac91798b1f49d3" + }, + { + "href": "./CG11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201441e310db6e2a6670f57eca589f111b40c17b14732a47de790ff8650b4e8b7e" + }, + { + "href": "./CG11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206ea7df504fad9b2eca5c0910c07818cf92a210f878994a87b1ee4cbb90f972cd" + }, + { + "href": "./CG11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201653d9a6e581da3853f5afbb7cd8fee0088dacd807457a1e6c12d73806c6343a" + }, + { + "href": "./CG11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220320986b871c756690c9b034878443979e05e462705513829bfb2bf98980936b1" + }, + { + "href": "./CG11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d8d707708e0fed5ee1b22839ea0f44614941c79a418834ef78e21efeb15f69c" + }, + { + "href": "./CG11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b72ded828828acdf4b68e4ed5c4e69467ae9d467293ac7aacb649aeee1b7f54a" + }, + { + "href": "./CG11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206a125f2ef4df9cd5350ab22c23f9ac4ec18dbd5a53bf03f78427e7e666279dc7" + }, + { + "href": "./CG11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206e3eef8fea93dc8d20cb0d70a232fed7a293b89993fa7926af28272cd67d2908" + }, + { + "href": "./CG11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122077e9c073228325aa0d6a82e01703e05099c810b44fdd57153624697a5eb9aa87" + }, + { + "href": "./CG11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200c28d41140ce989a39f39462acf35bae462220ca93f924a96cf4ebc9b0ce095a" + }, + { + "href": "./CG11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122071b2ff11d10a0d494595ff55e0c4eb6d64773ff332a7971b63be397348c56e3d" + }, + { + "href": "./CG11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a76bcc934a5e5516c4d5be76b7f6353f2c6dcb7b00e08918d9bbca002a38e2f" + }, + { + "href": "./CG11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204c03998ecd913b40e806fc57efa59289562c367a675666f6ad13991e85fae00e" + }, + { + "href": "./CG11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030677be451aede72acfedc6af276359b57ab42abc6e2dc6f59b16df16f031f7d" + }, + { + "href": "./CG11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b44eceb3e0286fe8ec8d9485ebfcb112d6bd90f1d556f14e9c5220d14140de02" + }, + { + "href": "./CG12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220319c57d6587e67200238276ec6fe21eae37d5c0497ad13464238381985dbfa77" + }, + { + "href": "./CG12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200cda3f381243be9f5e60925864f6d02d756b2eeb58ebd6a80b5dfe8fee065f7a" + }, + { + "href": "./CG12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122088cb7050220652150e70f0bed7996598e93d23ceaab4cac3ee685ddb3000ecf8" + }, + { + "href": "./CG12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207a9ed06f1e87fbe32f5e0ef09cac8168ee9dfa1d398582eb0751a22ee7e5fde5" + }, + { + "href": "./CG12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220208382a6016737250dc97366f20f8942a7880c7a6f9c029bcc6f353e447b7964" + }, + { + "href": "./CG12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209ebfee32b664271a94247cd14a9d80d087c7b394bb22495c407fd1c0bca93f01" + }, + { + "href": "./CG12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046c4510904956439d9c0962b9000158ab57ef1041c64682fa7686c1638e6082b" + }, + { + "href": "./CG12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eecd7793d17efa1abde9ebe709d6241ab2ffab7e64a31509c523a1a3ceb4b91a" + }, + { + "href": "./CG12_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122037495801671bbf421f1e4d4d4af6757c3a461b1475f478fb80cceb55e428a40f" + }, + { + "href": "./CG12_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122089e5edda9b2aaa415128b16c8f2e47de58ea84482ddfa7f6e9a2830f8b33ae6e" + }, + { + "href": "./CG12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122092e73b9c7300bda0c751b2ef46154def76654a56b19526df964994674164fbb0" + }, + { + "href": "./CG12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa91cb3bacbad52c7021cd41dbccd079965c0876745e7641ca06848de38c1bbd" + }, + { + "href": "./CG12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208da07ca3dc1d358fe7e98dafdfffe46501a9c53707095a9100c3e621f7fc8d90" + }, + { + "href": "./CG12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b500d0084c986d30240f164223f00df6c4ac8fe40cb9231451e283ce0a67ab35" + }, + { + "href": "./CG12_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201334a30938eb137fee723eb0c42daf96ec4cc547e0ed2ba7df4ba7288b88a496" + }, + { + "href": "./CG12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d6d602a846d28fb44748602fa6b28c8eae6390bac5f0614a305c079a53714721" + }, + { + "href": "./CG12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220723952c46a3c512c0e524ad3cb6c7fd519d5002881b2e01ee08393c5b2ddb71e" + }, + { + "href": "./CG12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220875b6ab997e50d6910748643e9256a51c4ffa072ab86d01955c8800629980635" + }, + { + "href": "./CG12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5bd4ace11b897c9a8a4cb7f5aaac9c4b7418c7f6f430b7e25a950d25d40376d" + }, + { + "href": "./CG12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003517a4b4c430d094e2b575a826978e6f967b463844447042a48d4bae51f2e24" + }, + { + "href": "./CG12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122005f4b799fca4d8788ba51fd56a81adcc9198116fc479e4bcef32698f26543d76" + }, + { + "href": "./CG12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b06ca8da5c8ab7e405e05c0dfc7a733598e6125fbe0b577daac446038068bc59" + }, + { + "href": "./CG12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d1071dac65db3701d356b2b6b0327ac86f9b089d5043f3ad11917510bdd8cab2" + }, + { + "href": "./CG12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a24fd859109d57b28d9a5b30970e72282161ce7b1981feb46fefdcba1c5b4284" + }, + { + "href": "./CG12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4b75153271b3d059871ef4b1c33473de0437778fb2006933441248f048ba69b" + }, + { + "href": "./CG13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f96926cceefda265d045247841fafca1fb1047873d1f3eb32ce1485fa90e1bd5" + }, + { + "href": "./CG13_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f7c7ca5b724ee308bd02d164db3cb8be92d8516b43e7a89cdd30df769b609f0" + }, + { + "href": "./CG13_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073ba0879803892f2e941c9a3646cb44f10fa0e587b6475611daee7aab6e1acb3" + }, + { + "href": "./CG13_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d19c9d67bdced25be7589ea845accfd68edf9ff0956f350520b8c136905474b5" + }, + { + "href": "./CG13_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205640306ce27722118fb7d6740d218c129e18f19cfa2e0bb4de4d1caa2d60e058" + }, + { + "href": "./CG13_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a63a4151a466d0cbef71a435ece00b5ea3d2e4a4d54a67483495fabfebad1cd2" + }, + { + "href": "./CG13_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3aff01205fa6629897985391d761782154556bb1f9c1aa9f4f47264e0f86995" + }, + { + "href": "./CG13_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206cc771f968ab54ead8ea507362d950711c4e7792175afb656fec23917261b1bc" + }, + { + "href": "./CG13_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122052a842ce02f0affe1405c3178bf463b22ed82e033c6a9afc2f2608e050aa7f24" + }, + { + "href": "./CG13_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208c02844867c313b2a6e545c89f7f0fb49aa5d88a51347ebbfd5e3e162e71d86a" + }, + { + "href": "./CG13_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220198742bf4062fd5515363396f2b8d48496af9cc1c4f2d069ce6534aeb3bde77e" + }, + { + "href": "./CG13_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c39593fda68649229e124461f8bb33de9b9aa6e5b90788494b847652c945df09" + }, + { + "href": "./CG13_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204262bbe93660225b0c00ab74855b5f6b0f76d1a3033f70aa4c621373712f2e4c" + }, + { + "href": "./CH10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205d783464d897e62a20c9938d6d6d186a8abebf157177798239c8941572f61fa4" + }, + { + "href": "./CH10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073ae1b6fba39936b4fd7cdc90ef7aba9ba8d79b8430a9da4cb513c9552a448b8" + }, + { + "href": "./CH10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200274da21ba752bcfb82912265332572f4c0d566a31435c6085f4f6133e98d545" + }, + { + "href": "./CH11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209da1cc00b71165397b144d091307b4c911d093d87acefed694285e5d7dd44186" + }, + { + "href": "./CH11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220643fe88fcb8a2ae638de6f82074f6929c374403cdd7ff8382cb40be7259e69ec" + }, + { + "href": "./CH12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206402003d3bbf42449469773aad5b6bb93c3102f976836f0829d71cfa2e103707" + }, + { + "href": "./CH12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122029ee47c6b3bfea2a693bed4dfc4473c7175f69966dd33bd60296a83c47e5179e" + }, + { + "href": "./CH12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122095af47a848c216527132082908687207b88aab9aa53d323daa7cb3967b775172" + }, + { + "href": "./CH12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200db55fb708b54f4445378005a15f2c3496e4c6aee33ec441de77dbd2878d861a" + }, + { + "href": "./CH12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205a5bd6bd668f15528592d64a1588ca297e3d8cf85ab093143e2309055a1f3ea5" + }, + { + "href": "./CH13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122074b9c37f24fa5f4beee84754e00b4a379d77c7b39bb66afe03eee783967daa86" + }, + { + "href": "./CH13_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eea045d526499689bd692203cc962f4f432e39c8c6ad8a308fe1e3c30cb0f5cf" + }, + { + "href": "./CH13_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f428d932f745d702f2ac794ac4dec9f0525cdf04bea0956c17db6087ed5ca209" + }, + { + "href": "./CH13_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122005eaa9c575cf0d125813c20ac7698d9d8540ae80e25f25b89a7ca2c5937fc47c" + } ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, @@ -625,9 +4012,11 @@ "linz:geospatial_category": "dsm", "linz:region": "southland", "linz:security_classification": "unclassified", + "created": "2024-10-07T22:05:02Z", + "updated": "2024-10-07T22:05:02Z", "extent": { - "spatial": { "bbox": [[167.2567474, -46.6893848, 169.3363348, -44.6247872]] }, - "temporal": { "interval": [["2020-12-14T11:00:00Z", "2023-04-25T12:00:00Z"]] } + "spatial": { "bbox": [[167.1806453, -46.6893848, 169.3363348, -44.6247872]] }, + "temporal": { "interval": [["2020-12-14T11:00:00Z", "2024-01-29T11:00:00Z"]] } }, "assets": { "capture_area": { @@ -635,8 +4024,8 @@ "title": "Capture area", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "12204085b7d3fea32fc4faa8315315be5acbf0cfd0deeb20e9eec1db608dff94fa4e", - "file:size": 37439 + "file:checksum": "1220b992aab3b8de45cf4957cc1cd8dd1387d55e8bc9f7c9cf5b23e71e31a3f15537", + "file:size": 49603 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From 8044176e17e3882f8463a582e280acd0be63aa6f Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 9 Oct 2024 09:02:29 +1300 Subject: [PATCH 300/309] feat: import Southland LiDAR 1m DEM (2020-2024) (#310) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-45.6466610,168.2875818,z8?style=es-southland-dem-77q5c-get-location-2708696259flat&tileMatrix=NZTM2000Quad&debug&config=x8LTjPuCJSepSYSAPwHVdrWs2DnJma8MisYjkgrJgBGvZcvefDjaEWcSh6Af85GcCJC8jwkVR2qzwbMRPVXDxSkeTxSDDXzH8e9xYs3tc73ZPtDh8ABwA3XCsU8LBRh484ykLxV5NRJE25BFxDzHTE8QRNE5v1JqJJ2Uz8vgGmVLF5Hij4dvx9iKxdeGCouCSkqbfR4kNaKcb5AXZ21DSi2kXFafP3wn5e8kTUXBJSPZ8qyD24kUTN9) **ODR destination path:** `s3://nz-elevation/southland/southland_2020-2023/dem_1m/2193/` --------- Co-authored-by: Rebecca Clarke --- ...QRJ3ZRPRD0NY2406V2C47MR-1728338915234.yaml | 8 + .../dem_1m/2193/collection.json | 4607 ++++++++++++++--- 2 files changed, 4006 insertions(+), 609 deletions(-) create mode 100644 publish-odr-parameters/01HQRJ3ZRPRD0NY2406V2C47MR-1728338915234.yaml diff --git a/publish-odr-parameters/01HQRJ3ZRPRD0NY2406V2C47MR-1728338915234.yaml b/publish-odr-parameters/01HQRJ3ZRPRD0NY2406V2C47MR-1728338915234.yaml new file mode 100644 index 00000000..671e8932 --- /dev/null +++ b/publish-odr-parameters/01HQRJ3ZRPRD0NY2406V2C47MR-1728338915234.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/07-es-southland-dem-77q5c/es-southland-dem-77q5c-get-location-2708696259flat/", + "target": "s3://nz-elevation/southland/southland_2020-2023/dem_1m/2193/", + "ticket": "", + "copy_option": "--force", + "region": "southland", + "flatten": "false" +} diff --git a/stac/southland/southland_2020-2023/dem_1m/2193/collection.json b/stac/southland/southland_2020-2023/dem_1m/2193/collection.json index 48242773..3da272db 100644 --- a/stac/southland/southland_2020-2023/dem_1m/2193/collection.json +++ b/stac/southland/southland_2020-2023/dem_1m/2193/collection.json @@ -2,8 +2,8 @@ "type": "Collection", "stac_version": "1.0.0", "id": "01HQRJ3ZRPRD0NY2406V2C47MR", - "title": "Southland LiDAR 1m DEM (2020-2023)", - "description": "Digital Elevation Model within the Southland region captured in 2020-2023.", + "title": "Southland LiDAR 1m DEM (2020-2024)", + "description": "Digital Elevation Model within the Southland region captured in 2020-2024.", "license": "CC-BY-4.0", "links": [ { @@ -12,609 +12,3996 @@ "type": "application/json" }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CB08_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CB09_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CC08_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CC09_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CC10_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CC10_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CC10_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CC10_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CC10_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CC10_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CC11_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CC11_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CC11_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CC12_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CC12_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CD08_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CD09_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CD10_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CD11_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CD12_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CD13_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CD13_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CE07_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CE08_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CE09_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CE10_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CE11_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CE12_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CF07_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CF08_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CF09_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CF10_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CF11_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CF12_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CF13_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CF13_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CF13_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CF13_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CF13_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CF13_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CF13_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CG08_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CG09_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CG10_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CG11_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0203.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0204.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0205.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0303.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0304.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0305.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0404.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0405.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CG12_10000_0505.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0201.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0202.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0301.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0302.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0401.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0402.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0403.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0501.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0502.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0503.json", "type": "application/json" }, - { "rel": "item", "href": "./CG13_10000_0504.json", "type": "application/json" }, - { "rel": "item", "href": "./CH10_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CH10_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CH10_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CH11_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CH11_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CH12_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CH12_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CH12_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CH12_10000_0104.json", "type": "application/json" }, - { "rel": "item", "href": "./CH12_10000_0105.json", "type": "application/json" }, - { "rel": "item", "href": "./CH13_10000_0101.json", "type": "application/json" }, - { "rel": "item", "href": "./CH13_10000_0102.json", "type": "application/json" }, - { "rel": "item", "href": "./CH13_10000_0103.json", "type": "application/json" }, - { "rel": "item", "href": "./CH13_10000_0104.json", "type": "application/json" } + { + "href": "./CB08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122087924cfce13151f01ceded1db2546c56e2a5177faa8cd492c2d58cbd70b4a4e0" + }, + { + "href": "./CB08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220102761ded07d96b485292f52bd6db68da4ee76df1b193ec41bd1526f3299c7c1" + }, + { + "href": "./CB08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122007d995fb6153f2008bf614c376498082e680addb2b75ce0a1370b104a6eb89f7" + }, + { + "href": "./CB08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e76fe9a29aa5f531c45fa3d321842fb6e7433c42dad9adb358328692094fda29" + }, + { + "href": "./CB08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207436dad9f7a021a787acad69ff718e5637e60eb5fd64304a046273315a2bafc6" + }, + { + "href": "./CB08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbc969d576549b528eea5d5a1198368e73e461ac224f2672acaedf537b60eced" + }, + { + "href": "./CB08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3f4580aa2d4f0d3bd27d3249e1b840aed47f7fc396b0d831642904a71d2ccf3" + }, + { + "href": "./CB08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0393f976cee1ba7c6543b3e10116cb99496c7a7859c9a28012f2de9a5d127a3" + }, + { + "href": "./CB08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cc015a904fe37192ed014d3108dd9baf2b65ddf7ca0204e5d27c0e0768dc846c" + }, + { + "href": "./CB08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f12f506efeece2b42143d86c3e96c63c9c7e7894ad92a0a8ea0d89c4f1e967dc" + }, + { + "href": "./CB08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e46f15dd2b94c8cfc2a84e1bbc3058b3bef6da5fc55dbb1172d23a31d49ee008" + }, + { + "href": "./CB08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fbe559ff5b0b2a99f9180ba24184f08d317f3663898b4b6726bcd2f17c6c23dd" + }, + { + "href": "./CB09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220348463b4bef1002fa2ae5ec095a8f9313d0e15e6955ad4eeb08fb1c487ccd094" + }, + { + "href": "./CB09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220523d0d288f001ba8a017b4fbf61f473aee46742a766e5181778ee8106e7bbda4" + }, + { + "href": "./CB09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220776bc2f319e4ba27048053197ae3f8acae51dae016854d91c0e7e563225350c9" + }, + { + "href": "./CB09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094a6017020b821b199a8ed05bd524d17a9c04a32184ae4ed628e3454686d61cf" + }, + { + "href": "./CB09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220789230a1795e3fd32a79b00871b2d5b6d97bee5b028f8096a2f4d1fce95a9864" + }, + { + "href": "./CB09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202e5a9dd90b2c35390ef3b96843a3a3bfca3cde1ca9694def8370fd8e0ccfcfd4" + }, + { + "href": "./CB09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122000726ffdbeee870106e197e55e220d1d0a2570dfbcab800da6548229e79b95d5" + }, + { + "href": "./CB09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aede567738879eb60ffe258d25637d6aa02b72f0a87accf6af31ad145b30a3bd" + }, + { + "href": "./CB09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201073b536b704307d095fab77f28f5c1dc3f0bcb3ca6d16faeb4da1d7bc806e94" + }, + { + "href": "./CB09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cadcd6a8249fbb090054f86abef1b41a3b775f9b7ddcacac0688144b6f106dc5" + }, + { + "href": "./CB09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208536be1f2c7a653a7c296b2bc5ba4cf0bf86743aecc879abe6b33639e080031e" + }, + { + "href": "./CC07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b51cf7fa9c6f19ffb9368dcfcce2c770a0d33d9047f1980978794b18f59c972" + }, + { + "href": "./CC07_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d8662711c3fbd4305832388c672361e2b0b00d843b969c94bdff508906bcc4d6" + }, + { + "href": "./CC07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e0d6fe01bf7cea7256688ae419a65637a9d35b937b7e3bb39fee7b14d145ed7" + }, + { + "href": "./CC07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f0d45f39724157c61f2194ee00569c3c917af33d161de10a58d88fd7a09e3874" + }, + { + "href": "./CC07_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203906971d9c9f4f8ef9c7c99e55fc7a180fad3d66baa6b2eba1ac1668ff7c5ad8" + }, + { + "href": "./CC07_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122004407b3925fbe4f128471df0e95aabc6cd8a26b2d5c22e2917410d2e0bf5dbc6" + }, + { + "href": "./CC07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122007ccced3da1e048ed1d71aea408c6b1e53b060d46fc4ab014f7b169017431fd6" + }, + { + "href": "./CC07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c36151936bedcaeea494e78d5d5cfad5c480281cef2cb1965dfd3a7a8ea5fbe" + }, + { + "href": "./CC07_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207673e92e710746c2ae2f28ae1c10ab66f923049f022711be28be6619a098520e" + }, + { + "href": "./CC07_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a8066a21abbdc5975739ad8c66fc5c444e83533865ff38d500e36c3fabee1774" + }, + { + "href": "./CC07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220052af5c357052dca33b4ff61a620365aa08feebcd7aafc3e1ac9b873fc993b14" + }, + { + "href": "./CC07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220022e5f8d93be43de4e88582327e29e5072ade14018fbb09dc5e87430416b68a9" + }, + { + "href": "./CC07_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122048f810e0d137ae85c5bf27b55d52021a762171ca88e10ff06db1cb53b867a2d8" + }, + { + "href": "./CC07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d5f2e24c1b7d6a300509078f16558be2046a238818dd72f6302cd04bcb985e8" + }, + { + "href": "./CC07_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122063004f2a3c6c45e0bee10f46ee87d955fb10cb728d37db821f09a4a807efe3ef" + }, + { + "href": "./CC07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220641c2c312535dd43712975113d9cc4855677ee166db4e8fc77654fdcef74ee37" + }, + { + "href": "./CC08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6240b78a46a953a4731d8e774fbb125d5ddb2e44e38a2b15042a5abb792166d" + }, + { + "href": "./CC08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ffc0109a2cb61c9d8ed648f1c9da6c271123ec6ac084b4ce6c31cefa4b01dffb" + }, + { + "href": "./CC08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220572ca4aafee1c7c40abcd352d8b8703f1542c68299ab9e9bcaf03dee48393c8b" + }, + { + "href": "./CC08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206977c438bfaac34eb72947b82280262d3a286aa0bca93d407524993a099faf61" + }, + { + "href": "./CC08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ff12be9909295e434b169cfbcc0c942ec6b005f642ef13c2749d09f0dd8f1cf6" + }, + { + "href": "./CC08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d21374c6bc126cea848a5b756caeeb79c4c902d437cfd7722834e84ed20d1188" + }, + { + "href": "./CC08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206c6db90e5add63bc06345a6ebe3aac5907fdd064a537e461e09b0785a5924269" + }, + { + "href": "./CC08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec64d9f39025a8f9ebe53e015b7ca9b1403e015ea71076bfea13f36cd6551546" + }, + { + "href": "./CC08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200a245e181fd37d4c49c3498b2c3f38c8adbc911a964cc7b8d8efac89fb4253f3" + }, + { + "href": "./CC08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202b871602800dcacbffe6d7c6556700f4eb8239a2b3d151146ee19d95090fba88" + }, + { + "href": "./CC08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220de761ce49533d7a981bb3dfa83207ca44440df7131f8a55343ae419de1eec7ae" + }, + { + "href": "./CC08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220158fe6bdbb33d534b0e9907a2bb56a98cbb7516d4c79766977e33efe3009226e" + }, + { + "href": "./CC08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122002a5f7a6d3e05f837228224bc6ac5571beab1fc7cfcaaccd59c55f67362297f9" + }, + { + "href": "./CC08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc27bae303ef242949a3c7eb56b8f76811572faadeca88595b0467525a25d870" + }, + { + "href": "./CC08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122051a7ecae9ffc9e94af0fea2facbf80281983a82e221079e688921472333d0560" + }, + { + "href": "./CC08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220405887a972c6fd1c90101d9071d996e4b7f7965e67989f20d805b04831ec5a5b" + }, + { + "href": "./CC08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b43e0f906c99c1706c7f93e308ca312263d4f7b746cbfcfdf12b9cd875f4b4cf" + }, + { + "href": "./CC08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122054d17a1279897da4a70b3fe575b642cb0d8333a1955772c580eb7e8a5733135a" + }, + { + "href": "./CC08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220357ada1b1cc57ad5e0e464650830593e14d409fe790712e99ac27486e42c1131" + }, + { + "href": "./CC08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4c5c6d8cdbd48c8ac9058261139da6879979dd76029907fc0425895cbd7af03" + }, + { + "href": "./CC08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b7fdcab45da5e7174bbddbc5057ece7f5065e7b278cebcf41e3a5efb0974ed55" + }, + { + "href": "./CC08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec10a2ce92b743a41f9c5b09c5454118b58ef559304fad793a69483a9ef603a5" + }, + { + "href": "./CC08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220838da65206d90618101df19bd1db8c574efe71dc9d934ea555348f31a0606a7d" + }, + { + "href": "./CC08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220211485c2989578842bd55c6c364dca85ac2f8ad1ab0b08528147f3e6f042b545" + }, + { + "href": "./CC08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220695ed3cc3e10106ae4ddfb83c5734b54da82d044fb474c557cbd0a3d1f19de9e" + }, + { + "href": "./CC09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205845237c7cd1de4aaa67f924e8db974fa6d92add14937aa43f6d7386ea19b140" + }, + { + "href": "./CC09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4575758accd99da694681512c44333d9cc581c3c7692cfbe583e99dfc124814" + }, + { + "href": "./CC09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201822399fc48bcafd52cc32d795ca438dcdb2484f8187e99c32979553b05f933f" + }, + { + "href": "./CC09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e662890f42bafb3489cf5d94b0301502b9849b02183115b939015db562db526c" + }, + { + "href": "./CC09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122065926e681ddd4360be60f73d48e57e27157f356422fb9e265d555b496609c2e0" + }, + { + "href": "./CC09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0ef7077990031208b0e36857083d84d23cb4cc52d39ec1cc2ddd3b0d611c044" + }, + { + "href": "./CC09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220634a0c89fab6216db9e343e13a69de7373ee1573c4586dae21106c7f50ce9377" + }, + { + "href": "./CC09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a58344a5f1e240206c42ecb8c29a003138f8fabe73aebcc9cc169aa3a082541" + }, + { + "href": "./CC09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204abf0f000ab9bb9a5fbc58ebf93ee2fca247c6594845cca3a007e12a881ccfe3" + }, + { + "href": "./CC09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201d753e4c914956ea80bb7f8ce867982f73834e8109ef071e599f3d71df6536b5" + }, + { + "href": "./CC09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122083f0b2306a9f531bd2abeda6a7003729a00e53ec6684db189a95c4f30fe0abc1" + }, + { + "href": "./CC09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a643c192cbf5fcb8eb16650bbe077b773fefa0008a28ca0546a16394e74b79c1" + }, + { + "href": "./CC09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da0e7a21513152d10b188d288cf02035b913abb124bffdb4091a8486f6d8029d" + }, + { + "href": "./CC09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220294cb8d9090bba68f1bf26bf1233e118d664f39e5a7ff58322418d2f69cefb5a" + }, + { + "href": "./CC09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ddfbd65fbd2409604d84eaac9475644de7c68daf9b3971b642c4e64f058a545c" + }, + { + "href": "./CC09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207cca5aaa09772ecc088244cfe10325ba0f19d588989988fd02d632934f3f6941" + }, + { + "href": "./CC09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207c19b18b27ee773f7e3e8ea32a639c5107cd41e1a19d24cb87042de603f8f73d" + }, + { + "href": "./CC09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ea645ae6e1238b0d2c5c64a8a17215f293238c1e53ccf8c288f7016fc353d999" + }, + { + "href": "./CC09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be86c6eaa5ca0d3c9e3cc8374b76be5d19dedc723e3f86e77d7ef7145d5af3eb" + }, + { + "href": "./CC09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ad34c3f01da216c5f91b270332f38eb64643172d625e28ddd706433bbf352eb2" + }, + { + "href": "./CC09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200c3afb81303e6902a6e5eb5c2380f872aed85f6e3bc21ac4707cdbaf74970ea7" + }, + { + "href": "./CC09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122028e80a27ea210f9fbfd17c7de48be9dcbfe0cafc626e66d2d116ab66f1e252a7" + }, + { + "href": "./CC09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fdf2a6bd510b5d693eaa3cc3036e7b0c6a5bc5d629f1ee1c140a94a3e45a6913" + }, + { + "href": "./CC09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201122e81c2307bf034fd20b2ba55577e17906c846be86140887dfa3a9560f2258" + }, + { + "href": "./CC09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cc96e6b4169d4f38a2abd5a529a00ed617947ef4a054f13734b8807f2f68bcae" + }, + { + "href": "./CC10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c55d8f454dbc1f6a560712007ddeca05602f8f327004d807484d2034559c0d13" + }, + { + "href": "./CC10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202df8881237bb49a2c7b81b57b4bb8bc16571d8c05c223103aa459c60e3a0d120" + }, + { + "href": "./CC10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011a69ed8bdd5ea157279b4dae863afd799e05bac4fb7c00e67acb986792d027c" + }, + { + "href": "./CC10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b96d172647880e1f4785be93e7b3d7f0fa702ceab7a34b6ebd75e7bf3bbca151" + }, + { + "href": "./CC10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d098cdeaf3c2b727ce3fadb546af5bc9b55b92f65e73effdfc2dcbb52eb0b871" + }, + { + "href": "./CC10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5c3c87127fbc61fc55629eb0651e5bea274e399eeb529069c37e550de0c120f" + }, + { + "href": "./CC11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207a63cd9934b50e34f46beff5e83243ed60683c3fed420dcc40feedda13d0096f" + }, + { + "href": "./CC11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f998f75b3ea90f3d95cfe20b599a4f80bcf7b9c919613d1271a451705f09f74a" + }, + { + "href": "./CC11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7f9d48a4095710609deb60cb2ed171800ebbcf07ad4d469724ac06e1f86d94e" + }, + { + "href": "./CC12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207e2a34439380f35d9d7bbcfbd163f436449331a7328239089eef527a96d552c8" + }, + { + "href": "./CC12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200576c167df7864ce4144ca7bff9528536337f73d4f5e82bb2d1ad2197d23457e" + }, + { + "href": "./CD06_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa6c94ccf06c21fc4fc6db85c5dce7d862b54a0bae673b31d620e486ff034a55" + }, + { + "href": "./CD06_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eac46d5111c46312de932c06383138ae466a5810cbd045e77a55c0035db325eb" + }, + { + "href": "./CD06_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204fcb2a0ffedd51d59ec891371e5a4d4dfec032afa70da46782e49d00157b276a" + }, + { + "href": "./CD06_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d64bf80a118e6b7fa520bc1a22c751d7275e23695e401142a9eddc773d527d0" + }, + { + "href": "./CD06_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c1714523fc6f894a346813f526b6692c1a1d05acf73803643083873ed7fe969d" + }, + { + "href": "./CD07_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122029552654fc1c05a215c7013fc5c373d1fa95508256f0fc3d10766d82f9dc5d32" + }, + { + "href": "./CD07_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122091b3154382f659716e2fb32055fd8c8854f7bb5f2fa5e5dce7839e8a9524551a" + }, + { + "href": "./CD07_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206291bfe3d71c4f46447d7883dee02286c06fee121c35d1277d7b58ea471e5bf4" + }, + { + "href": "./CD07_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208741c517299d5e8b10f4ec7402bbb3d4810725255b485d327d3c049986ffd98b" + }, + { + "href": "./CD07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e7fea3c314a17da059720d3d89f6f00361de9a67ff1e34217e2cf72aaebad5f6" + }, + { + "href": "./CD07_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122069f4550f150b44af7ff90b04ace43b42daa6ebfd50fefe25fec0223f6928556e" + }, + { + "href": "./CD07_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220281e5bc5cbbe76f56c03548da52ebcf382d8d3c18fa528b852797912a670440c" + }, + { + "href": "./CD07_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f94eb6799e937dc079aed8b1efd0af9d15987baafbe0d4cdb88144b2355f9e60" + }, + { + "href": "./CD07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220106d51a48c4827d6674134849b6d5273376c34b0ea36ab0a7af2d13412400394" + }, + { + "href": "./CD07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122028ac0a842eb524d2d09a0a90144617a512ad2d548e852a07db0b678436193be4" + }, + { + "href": "./CD07_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dd42f78e03135dd82332029852a7692f2125950ed295a7a8d7ab269086f40530" + }, + { + "href": "./CD07_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207c45adaa817dd362640adf6892375c41beb1ba241abe87ae95421220daf4f2e2" + }, + { + "href": "./CD07_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122009a127345e1c07d1ecf298a241910bc1dfd099cd45887e6313a6ccb19e26b6d2" + }, + { + "href": "./CD07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0174876cd980d4d383cca0fafd117e5f465cbd5bfea8d78796dc6dc06e8c09b" + }, + { + "href": "./CD07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200f771fca2e7a6c1a7d129f51ac17e56b03c5277a2eb1bc3fa590f7387767e1d4" + }, + { + "href": "./CD07_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206e45e014fbca88678b417ce67b815f85794d71894eca153577c9a591a01a6070" + }, + { + "href": "./CD07_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d41c24a3511c127d68add90e9e6e9801ffe36202e7c1f5a3140ad3b7a6331dcc" + }, + { + "href": "./CD07_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c7ab46c3d62a6ca53273c6daaf6cf49b595ff76506f7981e147c1cc7f9e62996" + }, + { + "href": "./CD07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209641c94be1814123864b3cb2a623c16a79df1b627316ddced85ac95fc659a751" + }, + { + "href": "./CD07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f28bfce4015a8cec2c4f691c487c6a060afb9c98aba7e0ff44ea2ab7dd96bb98" + }, + { + "href": "./CD07_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064bc9620e7fcf06ad5d2c2fcc59f785e0199736655ccdabb1e77d52533096e77" + }, + { + "href": "./CD07_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208cca2ecdb29467593849037a0537c4437619829162909b9ac2e349844065d73c" + }, + { + "href": "./CD07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204f5b8d62559be71ace06f728b2cdac685dd300168a3eeabc9dc0d561087e7ad8" + }, + { + "href": "./CD07_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d3d777f74b7c4ef87d9cb5398f3c8ced4eb0c5e00d1710a086462d80850a472b" + }, + { + "href": "./CD07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ab5cd7b16b25795ea4dfe58914b409c554c464e648bb84f59cb8e82711952f22" + }, + { + "href": "./CD08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220543fb7113bb805e8ee8c11eda111d190260725bb7f97f8864fba5fd9e40ab947" + }, + { + "href": "./CD08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220653a256377fd3dec4229cc9d48a172bcd72be6940feacf00521b0057dd0b3388" + }, + { + "href": "./CD08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206997fed12f4329759de11a213b8d35c8bb2dd24209f4ed8fb93f31399e8ac3f4" + }, + { + "href": "./CD08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122084939c81c6472cae8457bdfe34a3a9b96b36edf67751e0373854f7d2048e4d41" + }, + { + "href": "./CD08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c662f7ca61e1e60b51c126bc7cb8417b22152c51aa02a618a66c65bb0d16bfd4" + }, + { + "href": "./CD08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122052dbe766b897a2ca7a7816ce2da293db099d122ef935c3e6dc5c9c652c7bf3d2" + }, + { + "href": "./CD08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220819174056d4e5a91ced07bf97c493b56a40cc592ab82d5ec3bf530e143aba285" + }, + { + "href": "./CD08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204f756ba5a449974af522e7fd101fd8716dca2cdb5954142ad5e0c12bfea0dafa" + }, + { + "href": "./CD08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075550306b05359375126d5aa3574212e115ba90d5db63fa3ee439d403acfaa74" + }, + { + "href": "./CD08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220605f8a0c02245f6ba1e9d3382811793a6d249f88a22547a2088a2fdee3d53aae" + }, + { + "href": "./CD08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201922997f82c88b2dc5200d5e0de5588922fec29171661e46c836fb2f3a0cdb74" + }, + { + "href": "./CD08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200b50d1b47c6a85d8f336b812ef9fd2e744607ed2ab7da5aab520de286b923237" + }, + { + "href": "./CD08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b12e861ef8f9efe71db2a2bf96fe0b367163afe5b616bcfa3d4d8b2560976ce8" + }, + { + "href": "./CD08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c53f972ec7df819e955e410cf050e2dcb4fd390b706ec5a868cc69373f93f040" + }, + { + "href": "./CD08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202bec7a95000fc0a6f0e937eda7d9be71cca789f52f5b60157b25cbd803ba37c6" + }, + { + "href": "./CD08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220794a134ed03a9df2bb9ba3e97bf970f2eec4ac495d6a669c05b89576ae35fb6f" + }, + { + "href": "./CD08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220caa8b8dc17ce31cf1fd95a69adc1fba4153e004da8f41a5d4a1a5e930f1805e8" + }, + { + "href": "./CD08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f487c2d87d5995e82e5466b2c43b1dee0521daf1f7349cb7e1a2c717b9dde37d" + }, + { + "href": "./CD08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ff6b41938320fa4502cfbdc4c0a033b05d6012af9c2e6dc79848b109eb903300" + }, + { + "href": "./CD08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122057c1d4e70e9263d1b88465cd70811648d6f4a29ed81d1d27e5f60e9d525f28b0" + }, + { + "href": "./CD08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c72dc92d295a1aee8516a87f6e421bc588c76d9823f1a08556ef8f2e7f1dcdf8" + }, + { + "href": "./CD08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b01ce044fc9269371086cb2d39d0fb790587e8e607a1d3f5cf7a60cf1c8a669" + }, + { + "href": "./CD08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f545b837f0d109cf9aee3dd757fcb9d948ca63f5564a107a2afcea54ebddcb15" + }, + { + "href": "./CD08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011bc101773a929f4eedecb6e094bb46f36eae98b4d0f8e9ae4b3054add7e1cdf" + }, + { + "href": "./CD08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122037d1efcc491d50ca9b3a9160f7099703b0be8b8c078c44f3893834da3a1e35f9" + }, + { + "href": "./CD09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122020d544ed0d874ed1a2f686ef59b18398e1311da6769db9588d52752452daf199" + }, + { + "href": "./CD09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200ccc5b4dc7a11ce7d84fb301c1b66809ea552d0d686357047dcd73247ba68d95" + }, + { + "href": "./CD09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c78f2e489c15c68fd474a2a5bb579e8a2f90a17e2d43da597a4a7b86b6cefcf9" + }, + { + "href": "./CD09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220086612a6c2faf8cdd13482e256091a11481ae0e9cf52610c26034c5f387252a5" + }, + { + "href": "./CD09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f98732f176517bf6328a9e9b76ff5f9651ac7eb839f02a2a84c0ec25c3daeb2" + }, + { + "href": "./CD09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204edd0d5431f25ddff6996247e1c9a64fc457a2a046cdeba4887b79956f88b7c2" + }, + { + "href": "./CD09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cbdf80fe11e07a176d73db6d01f6ff1774a831865ebfba51044d5964bece7626" + }, + { + "href": "./CD09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cae3e819e6b2ad2c68a5450d7b3aff7fa808c011b4232348fd1faea09a5e093b" + }, + { + "href": "./CD09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1ae4bdc4d5f36b9a35e0e28407bc82701aeb2794907ca3398a66f16d82076b1" + }, + { + "href": "./CD09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b38cec37bed1a30db3deddae5693d02f3a55099253f4a22f0c92999e3f37449" + }, + { + "href": "./CD09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d53687db926543852f0d6fa56a3c13ad4091958dabc6d5f7eaea0f592bb9f684" + }, + { + "href": "./CD09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd0e4720b1f1c4fe7d5b40f758c95fc56fcd37c0e6d76b2657bc7591c06f95a3" + }, + { + "href": "./CD09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208de1505fc5b12a7a27cf571d60f6dafe4bdd51a0a46f0aab0bbf1197f6b28efc" + }, + { + "href": "./CD09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d21382b22c8f90a64d4b821033ac02def01d5d2ad04d76c0dd43e9081320bba7" + }, + { + "href": "./CD09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a316c27dc85fecd25422b6af5615c037fc8389095bc853cc536fecd6f31f8f0" + }, + { + "href": "./CD09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208ffb7200ce79d0644146541cd0b3f9bbda153454cdf272b06e038c4ec97d15e8" + }, + { + "href": "./CD09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205d69705381a694904c6876b7d324c34317ccd30ebf811a138902d37c77a57f61" + }, + { + "href": "./CD09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220828d8cf8d7ee2ee9e84d0cbb516f59d183e29992f61b635cef235e31a995edb7" + }, + { + "href": "./CD09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220db9c3bd8a77c5c8402dc7509fdf796e6c32c0d6b190d5c84f2f2c9bd5c6ab739" + }, + { + "href": "./CD09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d8457fc9ea8a25f4fd3347985ff57f37d7ff62c2a0c3fb3aa750d47b53e08a72" + }, + { + "href": "./CD09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f0b5c4e0dbc7e6bfe1a66bd8e6162c383481f95203289014eb2a37039f7d27aa" + }, + { + "href": "./CD09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c0bf0d56f9dbb3541f88aeefb64333ab7b4b91e8a335658ba55562fb1b68dca3" + }, + { + "href": "./CD09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9a366708714469b61e16e8a67e65a6617d865f5ad406a4f55a9c783db9ebfeb" + }, + { + "href": "./CD09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220741e849e633d41cabe7fff8ff36fd6199279977ce8d9bd8df915050b08f332ab" + }, + { + "href": "./CD09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207dbe46bb812cd33d7125e9eebd111fbef348f783ef0affc0bc75286386ac1055" + }, + { + "href": "./CD10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122013975b45af32efb1132de100bb5cc173522160ee91e5acd7003ff02e3eaa096e" + }, + { + "href": "./CD10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3998058e7360b1b270349ce0581f422c2e34af147ea3d7cda2509574aaa0321" + }, + { + "href": "./CD10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073aed70245eba84e0a720977b490773d47470d4239751957819b2d5ee045b1a1" + }, + { + "href": "./CD10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d36b1b6b143686e4dc3b45e98c51d93d0c842b2fe3911afe69c84a6a1c22b3ec" + }, + { + "href": "./CD10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207565c79f310d428fbee13539ec0774d5270a0dd2c708424dc5201c1e70596ba5" + }, + { + "href": "./CD10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206a66d2d59e00ddbcf4d233b9fc6f8e9473ca2a1733573203781da6cb55e717c4" + }, + { + "href": "./CD10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122081a09a8ce1c16a9f4b054b6519b515610e3c25c5dad1fbd0103cfda7113bf050" + }, + { + "href": "./CD10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c65789f8fd7ceec1a4b970d51c0510aaa8bc50a0986e96f897c777b31003d2d0" + }, + { + "href": "./CD10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024f1b72d86158c20f8e4a8af5152a4ee7ab4f9d86d239ac5582ebdfa86790095" + }, + { + "href": "./CD10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220974157a7aa1c8fefa74e16c4a8b25936e4f79fb6e41bb7cb6910909fa1fd217b" + }, + { + "href": "./CD10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122079cf4260a2c8d431b9b13bf722fb2182806ad1af05f0d225ee86fb6096c42f01" + }, + { + "href": "./CD10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220070187e1adbedf778fd222176f3c48827800d7280f3a8464c631a1461837b050" + }, + { + "href": "./CD10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122049c80ab888c90ff86c9f102be9e5c75f94e882e8a446b4163e495d874fadc4fd" + }, + { + "href": "./CD10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f34beefba27961efcf5e83148e82fdf1d6171405a55257bb193befa4b74fd1ba" + }, + { + "href": "./CD10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220195e439ead1870552a86baa30c3bae0af1a6b44f7d3028f1fe49a5d346f7aa6b" + }, + { + "href": "./CD10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ccfdfea22b51729098c7915405483534c9b101bb3bd938f01c909a2524e6478" + }, + { + "href": "./CD10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201674da267eeb26c4d25861e240386e8d645853dba7c07561cd3ef120e4cb47aa" + }, + { + "href": "./CD10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200b592755cce673426381f7270d813ca3db2cdad47b3ec03002c50a4bf0ae7ada" + }, + { + "href": "./CD10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220abbb835e660bfe8ee30e11df8243d31eb4812ad05711f8dc32940b290ab37d80" + }, + { + "href": "./CD10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200638438e7dcc506ba78e745eaed12303518ead4f8305a49acdcf9e74edbf2c8f" + }, + { + "href": "./CD10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ea3511cdbf979c4acd6aacf96750fb8a5451bf9b02e2471eaa83d7d90c438107" + }, + { + "href": "./CD10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd14fc831c9b36715f8f45012dd395048dd22b56ba1c1c422d90ffd0c3dd4ddd" + }, + { + "href": "./CD10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200787ff448bcec4f1cd207c727ad3e70420881589ec3f47c8ca74b94c04f5783e" + }, + { + "href": "./CD10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203141a4f280c9fa52bda613eca30ee9b908375be376a5ae2fcf5c8f4690825d0f" + }, + { + "href": "./CD10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ba759e040baa105f52ee1f40b7903041648a9c152ff05a850e7fcbfa25c1d991" + }, + { + "href": "./CD11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122023e7a23ad0472cc35c8079ea705739649d25ea66317e372a35da3dc844e73113" + }, + { + "href": "./CD11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220224f33ab39565b41d3d82a7ed522043b3c57fdd14cd19c1ae3832b52cdb09801" + }, + { + "href": "./CD11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034bc35f32afee6299735b643edbc5c2b30f98072eee1469b9e8102aa764b2109" + }, + { + "href": "./CD11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122081ab682f32b3115d4d996434dab7de32ba7b6ed098fc9634b72afce68cfbe27b" + }, + { + "href": "./CD11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220365dc88cdd1a9ab1ee2fbdef5c0c7c0da3016cb7ad8fccf57c22c34ef53b055e" + }, + { + "href": "./CD11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d4c6cbdfd6c8859e35ec7cf9cce47384d3a9cf536a5cf9db51fcc5042b08853" + }, + { + "href": "./CD11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ba9b58ed087e70334cb62ddfb5314af9b859c2206fc8c632f679cb32ae0d29e0" + }, + { + "href": "./CD11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a2445db0f9492568aff1ec949627bf5ae3a46d35455117d40a05e7a57a603267" + }, + { + "href": "./CD11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9e63472e9417c5afb4764fbea9c45089352f7118f89862b2a3c222012f8cec4" + }, + { + "href": "./CD11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220474ac0e96b38564398fa7ddd9165b22ac7afb49bdf44c3447218a33fd36a094a" + }, + { + "href": "./CD11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ac65a7076bcde58c3896c0880ca74993e5c080ce7deb22d612c01fe3360dd2b9" + }, + { + "href": "./CD11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e6769528ce078c3c3f85e4c83e90ef4230da0f0868a71244dbd0950ede0a66ec" + }, + { + "href": "./CD11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206664537261f6b4fb3a9198747eb2f726ffd40c2019ef88d83305608645e08e0a" + }, + { + "href": "./CD11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122085e992c3aa73999c1b5f5921d165c8dd16c15d69fde6e540654ca833819a7c44" + }, + { + "href": "./CD11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f14d230ef9494a55598d5795d638b47aded4d15eefe95f8cfb39f9ab317fba1" + }, + { + "href": "./CD11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be6094d3d46445c6ae41efb3d025c3f88d8e0839143625be42ebd1e90a49bf97" + }, + { + "href": "./CD11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220142637b5d9645b7822050fd3924c53893ce5e8126565e0a609a8084e199924dd" + }, + { + "href": "./CD11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122004ad6ea255ff5fc883eb8f95ac276bfcddb30ab7b4ef19b8f29b4f64b2ba6dab" + }, + { + "href": "./CD11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e7a115e5a97870aa1c65b0a21f7eb2292d10fd04a2d19f3480de7868c6cb3cb2" + }, + { + "href": "./CD11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f131dd010304a8163825eed43fbee99eda298637df918525933c159eac4f8296" + }, + { + "href": "./CD11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122069376d3e04f843dd3f8e5607a4344a25fba77c7c7467de54d62d90f1e6572878" + }, + { + "href": "./CD11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204c1f63549d66e9473997aec1f8629b0de4efc3a843b9bb08b166cba346012f2c" + }, + { + "href": "./CD11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c5ab23117bd074b142e9be52ef0d968ec097e63652db5fa96b8bc815110b9927" + }, + { + "href": "./CD11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d9ded03f8be7ce52058692508b6a515775ce2003c2373cb11b97ab0b08cdbb26" + }, + { + "href": "./CD12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205c4d2724c20af35f2b262f4ab52cc7f917f4e5f5711b2e4c98a181f066b61e4a" + }, + { + "href": "./CD12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f47b8412af83ccd944fc32279d1af5eed88bd620da7250e23fccb356a1cae09f" + }, + { + "href": "./CD12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d7551fc69577127da1ee978b9c929832c96d521a044ac473fd419c2a8b690b71" + }, + { + "href": "./CD12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220535ada4c5cf47c8ebac8a01ca9efc33eb88c219e8e2c7d5d68d64e609e27f5a4" + }, + { + "href": "./CD12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208214b91b10103f52f600b3b400af85753fb11fd9e8f5d76d0a511f58444ec0ea" + }, + { + "href": "./CD12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122083835b99a7ce3316208210fe7cc4c6cd21846b1fdd89191dc224d81b194c307c" + }, + { + "href": "./CD12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a8189771d092e0df060c646f500cd1fcf84d100b16f2314899fe485a97a3c2a" + }, + { + "href": "./CD12_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205c1e35e00668955e9bc200d52a10e550209487e083d046343ab21351bad306a1" + }, + { + "href": "./CD12_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e80dec8c4f5049e3e83d31231903faf26bd6773eee04b6952a8abb6c6ca6b19c" + }, + { + "href": "./CD12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bc8efe31560202d1e6e196c918ccd79dd2067f37bc12c2333bad39f6c7f68c1e" + }, + { + "href": "./CD12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a402a8b1b01a679846906fb9099e7ce65dc284ab6750b6434efe788665fcca37" + }, + { + "href": "./CD12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d0d16bdd4e660c582aa1cf78086c0e65c1a33d4383f42a14b82b2040d38b6b9d" + }, + { + "href": "./CD12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200f6c336652a53ec2f7e5410de46624e61fb290ecf2038589ce84eb7260416769" + }, + { + "href": "./CD12_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207ada5c28d8437a61eaa489dd181adf97f4dd4f29c8e8fbc5eeed4a55bfc9b1aa" + }, + { + "href": "./CD12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ef0af962ae8332a6d7447d47d7036224152c5e46258d28078b3af238f9a5e081" + }, + { + "href": "./CD12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d4bfe9699aadaf9c843244dbb42dd2f27bd9b0bcf10918ec033dc4691e9733f1" + }, + { + "href": "./CD12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd4328c9e71b960a53dd4fbc00f40e8690a84501329de7d3ffdc10945c87dea1" + }, + { + "href": "./CD12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b3610e434e5f555130ac4265738f89dab10e568cd82c0725737dbfcf22f28268" + }, + { + "href": "./CD12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122074997000c9fcbde89354d6325a0c126ca3aeb31c3a27882b4a090f3890e2bcc5" + }, + { + "href": "./CD12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202ed4b67ad07880bf9c1513e6b7849674bf33d4b8e535546ac5e9af735c3b93e0" + }, + { + "href": "./CD12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202d36d59659c6799168b25cc23ece6b448c0f464e4bdaa244de95c91d4a839b1d" + }, + { + "href": "./CD12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206601dab82521e6177a83b77c4e2cedfa4e9847f1f54b4227accd2d2b3a8815f3" + }, + { + "href": "./CD12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ccfba2341629cc81bfa69042fdd80dad3907c61ac816c824395e77bfe4ee1fab" + }, + { + "href": "./CD12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ba4b81996a61b7bf20ac7e5b0db3e4c555f7eace67429d9eae490f7d2b841a86" + }, + { + "href": "./CD13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e367f5eec4f8bba44fd587af25be17202422efceb29b8557366e39f83755fc86" + }, + { + "href": "./CD13_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205e5c01bf8791f3254639220f36f7d20c81b8718e348a034e0cb45fbc880bef61" + }, + { + "href": "./CE06_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030bdea42c37d4e124b814766ca8324641405ebf885d50b73f0d10c5bb5fef055" + }, + { + "href": "./CE06_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb42f367f50f9043c0b8cda373251cbdc39d5476b03654a4c5cafbdc7cb16cc6" + }, + { + "href": "./CE07_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f0c0002158d86aed31a069da01fa504ec4326afb6c41452c2d22788c9afb2f78" + }, + { + "href": "./CE07_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220403a4e79bcca90f4edfcb8b280dfacbae061f8aa07cd3206966935ca7d1c8005" + }, + { + "href": "./CE07_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203f9e223bf092de552f523dcaf25d8595e1a1199bc34cf8e15367f6b227defa24" + }, + { + "href": "./CE07_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207f62f01aa32b6f7fc3506e028d3efbe39c649e2dfd1e894d283968048d5732c5" + }, + { + "href": "./CE07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e47e822514d5d1c85c4e2d1a67e0ad340ab2b6b0b0f5ba16d034a415e9468e86" + }, + { + "href": "./CE07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203b561cd1ef77301fe32a4db9e48a6ef7d51a7ae59e15996a9772631f181fcc27" + }, + { + "href": "./CE07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207e3508c240ebebdeb4723fbb7c1f252c29fd7f3b596c95863f423fd1ae1432bd" + }, + { + "href": "./CE07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206890bddaabd20aca6d24f37ad737f1b523466b37d3a9b26d9cc1db78cbb57768" + }, + { + "href": "./CE07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7be9ce19395d6f157f11636be094d2d6198ddd7e8f5aa404dbbc3b65b8a36bd" + }, + { + "href": "./CE07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220402aafe548e4b684a1f2e7b0b89b0f6d3599c2dcea202dc61e543dfdf2c74d3f" + }, + { + "href": "./CE07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ae050b078ce8a77cd52c3a6b245ec40a3b19ca132305519a31fdb1f2c5825b99" + }, + { + "href": "./CE07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208072d4a8df3ab90622ac1b2a8c815cd8cd51d89ecda5b03b86edfd59d9054bc3" + }, + { + "href": "./CE07_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122070eb6ae5494f5894dedfa9ca605ab74fce4b75bda4817711acf5ffb22c2650a1" + }, + { + "href": "./CE07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122033171b89993268111cdd527713cf416bd34581f40eb236330fd69d99c1c30443" + }, + { + "href": "./CE08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220837e0c0b6f9fb2d3bfa42033c77a71213467722888f06b1423169ffa95af0668" + }, + { + "href": "./CE08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208d6376c531e5a418383535331e1770bdff5536535cfec6f5490b06596486089d" + }, + { + "href": "./CE08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122074d1a1d2a5529bbc6b21c429a40e0d488f501d976c214a4c93c4b3c7ca5cc01d" + }, + { + "href": "./CE08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d7f1d58b2a04672915c38926c560a115e25561d009c005f37290a6617b779d1" + }, + { + "href": "./CE08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122091b51f86e7bce208887b4107b83d74d9a24be80c20ee2e323cd95b9977fabb21" + }, + { + "href": "./CE08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d3cf6b25688d21dc3362ec580fe94823f5fc17d7e67b4455190493c39ed8a2c5" + }, + { + "href": "./CE08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203a9ef7782f018045de2eea698b9280c95cd3c665db68530b067cb68b29a9a50d" + }, + { + "href": "./CE08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208cb6d61779f58444b502d1ea6a1c652304257e1ce9df38a4d0aa07389adcc284" + }, + { + "href": "./CE08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205e0a18fd9dfe2acb944bab75b4aa13e44dc2f413658a388f6000e97289b5bd73" + }, + { + "href": "./CE08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209de78b94f53f5a0c20014fcc3f69be27e871a670643b23b4c321b1c2a331c60f" + }, + { + "href": "./CE08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010b4671c79154124c12cdd5573945af78906ef4041e8742baf220cea75fd7e53" + }, + { + "href": "./CE08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a091fc6c07bd7b538fe74ac689874898707876cc0feb6e94b8f2da2ed2cf3fd" + }, + { + "href": "./CE08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122006a74b5ea12425afd39210c60c6033c2f9a2703316c18609cb20de22697c0c22" + }, + { + "href": "./CE08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200d43fac311c80862a510cad7af4742bc2d1e377c121b3053f83646399b056d16" + }, + { + "href": "./CE08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122084122b2dedba024b2b94bf434701ac30585d58d4d0c6c0a0178595bfe383a274" + }, + { + "href": "./CE08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d64e93d90e7680ef0363d8c2033595c679636affd305d7bdfa7fbe6959c7a0c3" + }, + { + "href": "./CE08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207cbaa71b5f7aab6eca882d9d624ce1f61a2157d6ddc76e9edec5463a04d11f40" + }, + { + "href": "./CE08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbe8a67604886b16a0923e0c76681f6da760e54564be1ad307ff7350676b4872" + }, + { + "href": "./CE08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220690ef35f8b1a4d91a7f77521cd85fd33269bc84ceda47a2969f43a3aa886ea6b" + }, + { + "href": "./CE08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205243c57a73d201686466cf607bd83799628046c358850f2189e213cc31eaaf8e" + }, + { + "href": "./CE08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd8e4d1fbe177c4dc9b703e99e24e790f1c0d8d6140738bf852e544cd8a67fe0" + }, + { + "href": "./CE08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204fcdf4abe62dfac2887cbe6e822085191f5688f49d12d46ee7078149ca8c20cb" + }, + { + "href": "./CE08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220502cdd7c31b416dab821abe6dc17720408344ed63bd79dd1a6b124469f5c26f9" + }, + { + "href": "./CE08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220740928e39b6effc1c194881ad3a72b4ab18c9de7b053d8d650aad78d880eece0" + }, + { + "href": "./CE08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122099634f264dbdf655ccd1827fedccfafb9000e46324360c5eeba414a684ecc44c" + }, + { + "href": "./CE09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203d8b30e6988780f54a6a3d55d6a240360990fe29304e398cf2940287d6f3ce9a" + }, + { + "href": "./CE09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bc5b68a71440b2c33876ecc0129a2db1f9b1269b461652a17089f1c6fe35fee6" + }, + { + "href": "./CE09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046f7a4d133202594a87cd86a30bc9f28b46ab68a182b62c49487fb7df497986c" + }, + { + "href": "./CE09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c0187f7059abbc3abcc8c889e2547c681abf471e9cbb8d1e85849fe14cd14e3c" + }, + { + "href": "./CE09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f17b9ba2b529e2105de6f23fdaa4d4837bf71f72a23b7b80fc283ba8eda4110" + }, + { + "href": "./CE09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203e5c10556d565759657972d7382e1e40a56962d2c8bd25d18ab221958e5fbd42" + }, + { + "href": "./CE09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f154cec3849d549111d1c0ceff6281905b02b02d1355f5417bf644de5ba17cf7" + }, + { + "href": "./CE09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200bb3910d81ea144710fc12fa95d5ba57655f920923a37df79b9e654c714098a5" + }, + { + "href": "./CE09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eb14a70bbd846b80f8403be785ac614a8c44069b0614909469de6767d4cdbf42" + }, + { + "href": "./CE09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b71cc8c4ac954efbd204422e38ec92864d2dc92643eab437afe4c0ce77b8caa" + }, + { + "href": "./CE09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ea586a584e5a71eda6ea041bd3a798aa9247535813213957bc4350dbc845f23a" + }, + { + "href": "./CE09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f27a67cd30edfa5e800aac08bf882964cb38f15e8e84754e29bcba9d7f803b17" + }, + { + "href": "./CE09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d90405299a285785fce140984bebe174e3ae099c17ec4e326ec8843f5f5a4214" + }, + { + "href": "./CE09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122016518dd708c81d419ecfc4c976c2a5dfe8988727d79591d09821ade35d2ff739" + }, + { + "href": "./CE09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220708c4413d4ea56377edc655a987785a77d1f74cde69f79da2d13764ee2ac88b4" + }, + { + "href": "./CE09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220629d66b3b905b75d423045b7eee14795dc6104a1128a3c532381339a2a80dd23" + }, + { + "href": "./CE09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207c4681af2406bd502e1bdc5cc6a1ede091b806684816a8223c782f2ce8476b99" + }, + { + "href": "./CE09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d29c2cd8f16be01667e730cd0add741b1418e813a24e17cadf092d38747b110" + }, + { + "href": "./CE09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a82a307bec72a20fa22a4e0347496e9b29f05b2c51eb156a29f7746bc31cf0e" + }, + { + "href": "./CE09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c1efcbab68fec313aa4adf12729ddae1aaaa181908d0f118a0af1fb3a5d4838e" + }, + { + "href": "./CE09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f7a80593933953670a8fdf9aded84b267a8fbb6eb7b17502832843582364658" + }, + { + "href": "./CE09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fe68b05ac642b1b9131705ace15bd2ceb905c4e5234abcbc582bc17fd01ca062" + }, + { + "href": "./CE09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202eb25ebf0eaa72a852781eeb61efb2d12ccf513a4fb180f270b7dbca76a8fa55" + }, + { + "href": "./CE09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb68ba027159a61e2d0355ba92a948a549e0383ddcf5b95e103f4528e7e50e21" + }, + { + "href": "./CE09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f578871248d7a40740588bf14104c4261a5eb2728170b8919692d4d4f778e525" + }, + { + "href": "./CE10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ef8b78e69116224edad96508c7a1a6fdfeda8b14291c1033d69a056e0597d1d6" + }, + { + "href": "./CE10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a31c19f861ad071f14e936714eda679fe5ea378e88f5554dc4827177690b3fd6" + }, + { + "href": "./CE10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206e4b37fb784337eae871bc8c434c78f63819a04c5dd0d931e2aa80029bbbf3c5" + }, + { + "href": "./CE10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da4ce9ba09759cd55fba8fffb38388569dd688fdf992cec15a1205525be30983" + }, + { + "href": "./CE10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e326578d9fe4bd9583095924184c1e6d97559f3a8f1780a9eedf948f089e2c33" + }, + { + "href": "./CE10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e079aacb7e657378afe35bec560a9588074c50b393239a6e25abeb27a3546491" + }, + { + "href": "./CE10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122027e3d6a03e68477a70050f38a4c4844dcd66c5179d8b6368683da594322e8e9e" + }, + { + "href": "./CE10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fa33e6575feb527edb3aed9cc50a352c6a528627913163b1da1d872791a45357" + }, + { + "href": "./CE10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fbbc3f3e7d781bf5d6d0ccec6d8bf519fe6d1e5a2c40ee2cb6332804bad2a5e" + }, + { + "href": "./CE10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf602cd375a73dbbb83821fcc8ae5f5086f608fa1f8069d1895d9406f14adddf" + }, + { + "href": "./CE10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201d4430f1e28d255ce93c00958601036c89f282ff3a34fee032fbe3714c1c3b1e" + }, + { + "href": "./CE10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e626f7a485f376c9bec31d1d1cd402cd0c0d8405db2b159342f461af811ec7df" + }, + { + "href": "./CE10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f7d53fae12b96ef058d61d0de9032694e6c2a71615d78038fd88f33dfb3b423" + }, + { + "href": "./CE10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207bddfafe2bedc519a3f066a47c3d55048b2b5f74ef2aede7db3ae2fac37f8910" + }, + { + "href": "./CE10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122006ac5ceae0b6e21c3f0825b2c5b7242fb2f796415490ac7b84ce6c726106988a" + }, + { + "href": "./CE10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220621f01b06ea5fdcb646e58611218631c2df97b07c94d9992ff05731fcfaf6725" + }, + { + "href": "./CE10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011a9a395cc357f85a33e72247709a8dfbffc5819460986509983b501db44c420" + }, + { + "href": "./CE10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc8df2c5696faefba73ee6013a32b450f0a1264371c46a3efbc45325fca485bb" + }, + { + "href": "./CE10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202169c715fe68bc417b48dcdf8c4231aca443e6ea39bd24b96a76617d219d9974" + }, + { + "href": "./CE10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205532756e028c868dec4fdaec38a5932ab9e6af8a2bd39d6f29f866f49f565c85" + }, + { + "href": "./CE10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ac1a70017b3a2797450d3e3ac53712da28df0ea5deac55c559edfb536bbffc2" + }, + { + "href": "./CE10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209cade666c29828b73faa9654ce6537b8841df46a3e283e7b565375a0125d1c9f" + }, + { + "href": "./CE10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122084afefa4d5e8bc819f0fca095e6c083dafc1f86f426eb09b3736a08b6354e030" + }, + { + "href": "./CE10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202e6baa0851935f2c89a2d1146d62618a5f0aea36b12340e8881c0ebcd7d83311" + }, + { + "href": "./CE10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204cbeb2da0e172c657e2b27a81b95b44b325aa57643f595d7c4f2a6a5337108dd" + }, + { + "href": "./CE11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d579cbcd9b09ba196aaee7fcee386aa2de780c5a35b917ce0dea35f44baf125" + }, + { + "href": "./CE11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207db3c26410cfc409e80e06b4395d225809c01ae67ae6138dac5a8fc6405fc062" + }, + { + "href": "./CE11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203daf75c9da4dbeb3dba648f5b6518b2e521e09fe6ff562a66a0eded35791e1da" + }, + { + "href": "./CE11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207550bbd882bca70e7266a9402088aaa8154f5f44463a14c8620e0c0cd0bbf790" + }, + { + "href": "./CE11_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200a2cbd2c0ba782f5c6e99046893f4aeac93d7c4a0c3516820822868f8132836d" + }, + { + "href": "./CE11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220592d231ee58a77e6fe53c27c16e47b8b656723ea9af9cd33ba62bdfa2de6e4cb" + }, + { + "href": "./CE11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aba6698bd68503a4ff0a5f09d6d3819f87c13bb18a6cfb65a2a58f930f0f6b01" + }, + { + "href": "./CE11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d0cf9ab9ba54695068f936a3316c6ed76ccfb3d4f371d5b7cdf9811967992c6" + }, + { + "href": "./CE11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220634099c845608beae284f838aae38650e92d553c9a54e6295b4b537e2e92dfb7" + }, + { + "href": "./CE11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220517ec0f99cab71adf47cbf14848f082b186130e586d42380b94bb0d633e066c0" + }, + { + "href": "./CE11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220462566720fe864a8a7fe83bdfefbe69acd2af8f932e9d4873754b68a6313b870" + }, + { + "href": "./CE11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f3106de44ab503aee9b63089fffd601b243dc052154f983dd513c805e054b4b" + }, + { + "href": "./CE11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf02b289b37891489ef593bb1c16584edb05a464cd66ecdf805ed737e367c8dd" + }, + { + "href": "./CE11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122019a9961d70bb75a43935f6f6fcd72242a79ef768bc25e67f96c7a7e9fb91a01b" + }, + { + "href": "./CE11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075b76147b30c3427c560ebcceac15774a07bade2a67e4cf2ce5955801173c83a" + }, + { + "href": "./CE11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206568adc034844d12a1e76a0f55a107a0fe94634846c98df29ab77c0ad918d482" + }, + { + "href": "./CE11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220860b5fe4e8d6940d6426bb974ffd946f193bd7b143749884dc86489e7ae573b4" + }, + { + "href": "./CE11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c799b804f9e6c59afdfa98180a4e6074f37f18b8ea65c88eb23e4dc6444d2382" + }, + { + "href": "./CE11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b51ba21df794c7dc9f9a479d1dc8c8e673fc6aa07c3dadbc63870021a55e6e0" + }, + { + "href": "./CE11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fd9171bdaafd3db5d588f32e6fdb4c6038642a4bd47fe0e01a1aa33e7db987b" + }, + { + "href": "./CE11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206456679e2d289fa7243255020307fc0eedb51c3b4fe957199fde04d8a45a4a49" + }, + { + "href": "./CE11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200217acd653100787ccf9fe697cb1060d169b58a20324b9f6a1b92944160a799f" + }, + { + "href": "./CE11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209ac3a4ce5d5635cda352662c37c8953942cb2f8f21a02b6d4305f03a2adb8825" + }, + { + "href": "./CE11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122038bddb865e062b8cb8026da7d759d6090daca1490a3c242b7dd60be24bc52e55" + }, + { + "href": "./CE11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e23aff439b8694cdcdfd015dd93b6942854e44505dc422cdc6d191c2e3b3eb8" + }, + { + "href": "./CE12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010ae43596d0722ddf30672519ae3f48bb8fb1c9569251d37a3973829784bf54d" + }, + { + "href": "./CE12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220813320a7f1664ac34233aac4dffaa33b55b26add589f8c8e49697015a227a078" + }, + { + "href": "./CE12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094c60ae612afbc93c77d99fd53cc2d9c6dae28059e9a827fe0a008171b1f4ae1" + }, + { + "href": "./CE12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122066dcca87702cbacc01ce355800d62d27707a8886851d85c9f25eec5de44e0ff7" + }, + { + "href": "./CE12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017aaa667cf720f6f0ff6b64380e3740e84271120b05e17a04f65eff45cceee49" + }, + { + "href": "./CE12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207141e3cd144505ad1da13502013fbee7167a448b3700c62a1c8035b73b6c7643" + }, + { + "href": "./CE12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f728faad7d1d183ae7fb12aab3543581aff83e11a384dc775250d3e32f6e0ad4" + }, + { + "href": "./CE12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bb7cced16b93c9250ccd9eb507d46cc5a4a74cfac3222e4f6c58bf48fea05314" + }, + { + "href": "./CE12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b9f5d8288e52f9aac14894c86b32587c3e0ba5ba8308b9c89b65dac1a7dce5f7" + }, + { + "href": "./CE12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c15338c6353558cac48d3dca61cf4eb5bfdcc7ceaac6b5d11c3d71c78e36711" + }, + { + "href": "./CE12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f6d0bbcb64540ce479aa4775fabe7a46150820291dbd7d446b780d085c6ed38" + }, + { + "href": "./CE12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209f29f57ad12e19e3973f3597666ddbe653f580f0a83e2b157a33c57ed1e456e9" + }, + { + "href": "./CE12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209c189ef3200ddd7fbc4d6fea88deb7202a465066831a4120c405d418e70ff993" + }, + { + "href": "./CE12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d15ee3c627c51bd4209c2b539b81d32a2de1802dded2882630b64a61c9b99eb9" + }, + { + "href": "./CE12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cb1ab7cbc553603b8c13e41095809c6ff02e902af0ca676d76cfcd61fdb5dcf2" + }, + { + "href": "./CE12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011c6a27d08334e8c21f2164c05225d0494a94e9cc2ab572b77356138e5e8234c" + }, + { + "href": "./CE12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202015d0c65079051d1e3b10ae5a011ce97ebca75c8c2cbb56c29edbdb2acf5e3c" + }, + { + "href": "./CE12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e1004062139dfaa3ba76ac4b35163a8b428ba223f315b10c5950ed03677e1235" + }, + { + "href": "./CE12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f3ed4d097c390a82c4f0feecba2dca08a69e4ec08be8a55d4b56bc00e255c7ea" + }, + { + "href": "./CE12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220780c9dc0d1912ce2f19d2840bf65828af18ee82252be16d839d6d61d04e49ab2" + }, + { + "href": "./CE12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f398a3ccacefb77bc3db459b98e3a10c0117a5edcd984a1a11f4bab4090cca7c" + }, + { + "href": "./CF07_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017cd09fd7c8e365d8a139c439b2de322ab885d9f5149feb277680bee5a7f3a0c" + }, + { + "href": "./CF07_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207703f913df467c1aadc36a511006d9733b0b3246c81f00a21beb1e7dff33e8f2" + }, + { + "href": "./CF07_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220023e7104672aa6c32f78f1c24de54e1b506c1a4be58acc49c4db08b2cc9719b2" + }, + { + "href": "./CF07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201e0ec1eaa220fa97ca55468288516740c98ae38086466eaf5140ff679e3b0c7e" + }, + { + "href": "./CF07_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa60fe150b9f5135a14e8a7021ffec2ad483cb981d77e11c4483f90217a4fdac" + }, + { + "href": "./CF07_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b61bbd881a69d17009e8d1c1a322fa0ee0db10988e89670d53e0e0689c5bbc4" + }, + { + "href": "./CF07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202667d8d72c1add3b2f4356c245277a014cef6193c3aab820e0b0126c814b6b53" + }, + { + "href": "./CF07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d1587d99fa081e13721307bd4a5e6bc18f57532167b191726fa9faed8d0081fc" + }, + { + "href": "./CF07_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220234877a32b21e85d7dd3d293f4859c4813530c8e30688a6cc6f51a32dd12b9d1" + }, + { + "href": "./CF07_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207fcec643570546eede1b4f25e26730cd2cfe6649b1bab4b3222aba8978eedd3b" + }, + { + "href": "./CF07_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122068493a880f3ad5784e3c44ce635ff4dd1e704465fb89f36ec07298d1db0a9dc3" + }, + { + "href": "./CF07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122039c954fd78ce8dff503c8cea3e1c6e068871ddee04dade90ed1e03d81e5f9fe3" + }, + { + "href": "./CF07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122080917baf62191f51b8669993a9060f6e4725b47c8e401c9ec60ecae5689105bf" + }, + { + "href": "./CF07_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e314ef5f21ec6417867f68142b19c7b1d988240389c7781914db75b227b6ac32" + }, + { + "href": "./CF07_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220afee09137ea5cc345e52968eaa148f2833728aa6344b4016ce8f8b3b84e01005" + }, + { + "href": "./CF07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e30909ffb2293439e14a738560d4c7ae9192200b628d7817983feec7dd6dad75" + }, + { + "href": "./CF07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207c85568d53f7b6b04c901c274fd2287a10f7b02dc95cb2cd68fb3a9b1aaa0b3f" + }, + { + "href": "./CF07_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122099d7b646f969393e142be1e2d1d036b87c6d0e1db26f631a67397ff5d295b3d7" + }, + { + "href": "./CF07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220982e7ae7c326b604990bb945e84884c4ea428fcd001bf760dfed0b7544b9adbf" + }, + { + "href": "./CF07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6d39f7db3d56190cb7d1ade5ef256e0ba3cebc56de0b5be89c55b0277ff4cab" + }, + { + "href": "./CF08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207a18ab3f81992250c0d4bf9be49bcf9125416432dbaacfc22cc0c6f616de491c" + }, + { + "href": "./CF08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220723201377a859a8a7a53777d0aded3f9ec5a2c303eb28600ba45b2a6e09209dc" + }, + { + "href": "./CF08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220291e1fd0ad70303a9b5f7e1c03195f6e921c0924c4c705bf2d2dfd3335422d70" + }, + { + "href": "./CF08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203d94e662bebc265d4357953c3fd887e1f87ab9001a007dc72f3a014c08a67136" + }, + { + "href": "./CF08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208e3440b2af7e4b00fdfa5f15b8028b85f70e2beaa98db8728b77cfa66b069024" + }, + { + "href": "./CF08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d80825fdbcc0abab4e2a18b77e43455ab950a3337d2e259533b56f79787287f4" + }, + { + "href": "./CF08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc0342f7154140b3980a15b5fca131cc19631695bbe281a237ecbf7cde82a0e7" + }, + { + "href": "./CF08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202d323cc840bc4c2958be487d701fa87e1d5f9df0b7dce768f0cc239b29420226" + }, + { + "href": "./CF08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220720ab3fc236dbf2489bcfc5d583fe63f6d19a07c4f16680e312cc7034148f1e8" + }, + { + "href": "./CF08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e5fb265d0123d47e49f8d286d3689200acff699d3dde20e5ac03fb06a17a115d" + }, + { + "href": "./CF08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122040488e76cd0886a39e3f6d78d42ec352a1a03a15b4feca04deaf62935456b45f" + }, + { + "href": "./CF08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d4c977978eb466071f004b06ff5a0cfa4e83e81a4edc14c66e55a742321ec7e3" + }, + { + "href": "./CF08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207a5730797590a9578dabf716195a4649c156213f2d81288757615d2c6babfebe" + }, + { + "href": "./CF08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205e944fd0499bcc03a8bb5c8f04622212d3525177abcba99fcace5059d2740ea4" + }, + { + "href": "./CF08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220185f52c23ddc18e9ed23f0a54a0aa062cfee7976f7a0c76837f3a08ebbef9dcd" + }, + { + "href": "./CF08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cd3d970135e91415fbf65df3e0e34456db252699e6c8024602e2c7701e53d18a" + }, + { + "href": "./CF08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206e4c232f77a6b4ec3709bc2e06395e07319f60785ad8bc6b41ee6c39b16c5b28" + }, + { + "href": "./CF08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205e8ba9fff2d420b778f1b076295648c09f01396e4d422f76485617497eccd766" + }, + { + "href": "./CF08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220627b6c3a7a27a00ce5064472870853614cbd658f219d1cd69ab81ff6a97bafc1" + }, + { + "href": "./CF08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220506946fdcc34dbc8ccaa62b8b4a4789ee16a4a5f98276c5d99364bf7cd750ba5" + }, + { + "href": "./CF08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206aa6726b2e7f0b76bcbf9616ef4e3244fe040cf6c550465d91b7228ee1329899" + }, + { + "href": "./CF08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a4b704a87bc6324eaad6fe62483fe36cc8dc299c0c3bb5fa1f295cfa576b757" + }, + { + "href": "./CF08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d9c3381e45a703f79086a2a3dc8dc712947013ea68a32f65c744e12544fa5b0c" + }, + { + "href": "./CF08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e88edcac23ed735b0f522789613c1f0a7701a222ca9191fd4626e198b1f74f2b" + }, + { + "href": "./CF08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bdd32d3190f7ba3b4641ff1a66bb978a56f53381206ac8870f2a9e6b47216c4b" + }, + { + "href": "./CF09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122054a7453056f1422d88d27c26d37afee57f9e054021df7f5ae17dea1f7a0509ce" + }, + { + "href": "./CF09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bc1eb648ab15d44259a5487877117271faa120ae9bf7aa41c729ffed130ff856" + }, + { + "href": "./CF09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207fdd276b4cdd399d90cc64b3a6b51066f61ea5e6e8c9d5a8a68af5c73436c6e5" + }, + { + "href": "./CF09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ac5951c8f789a7689d0b199023401e0cd6d0889957a0b2e2e9d046a6eeba2a02" + }, + { + "href": "./CF09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200f4ef7ac81ec95705950c994c88a208126f2b04f49baee5cacd5e6ebdf900216" + }, + { + "href": "./CF09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fc3810de84a8ac42b035fb9eb3a84bcac30411225d3919578151d76cb17bea8a" + }, + { + "href": "./CF09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202b7c383795e439e17f177bec4509767e76557328ea01295bbcd1b6c40ef48937" + }, + { + "href": "./CF09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207c1b80cdbf762fc964b2e098d9d989d4704e995187943355fc88a46295a5ca94" + }, + { + "href": "./CF09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206c1cdb9fd67412a386370244397ecc47e5eb97e62d2a35fe63d08419dd298830" + }, + { + "href": "./CF09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220408ee26d8bae2bd38a58fa89245cfefd3ca0a67fb12b0ac2a0ad61037adaccc9" + }, + { + "href": "./CF09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220145b4ec27a3fa2d15f184133f93eae2a20f8f66a7f60c4264641019278488135" + }, + { + "href": "./CF09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220294f6a9c2c9cd3f61830a44e0181e4125d8a4d7a6758f5d890a1391c671e5c91" + }, + { + "href": "./CF09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220546f7f0d9a66d3f0e314e80dcdae5bdbd8bdc53dc713bb6af1f3c8a90f8e0e35" + }, + { + "href": "./CF09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094fc040817441a05afc57ffb74239b880f8878c8580b32a4e26b5f42a1084a80" + }, + { + "href": "./CF09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d98b75a0e0bf1f3a11f6e1185bfb9a76b6af2a6605fd67dc55ef4b8c16d72b0" + }, + { + "href": "./CF09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122078ae4ae83aabdda67b411d24c379b1eee616f438c2eb525b221b0a56a7ed155e" + }, + { + "href": "./CF09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202d85c111dfc25d461416b95be642e08abe6266792e31dc970cafe7b560ef076d" + }, + { + "href": "./CF09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205528cbb4133d5b9b12778089dce45ba537e0f9e9dabaeb540bc851148fde7371" + }, + { + "href": "./CF09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d94c00dd9939aa08aa76b4da0a8b265ea559c2a0dc3bcaa10b52ff61508f8275" + }, + { + "href": "./CF09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122005900aa42ab4519df5ca76d69299b2aa9b07f01b2ba00322ee449d28c4005ad3" + }, + { + "href": "./CF09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122045d04c54afd63b92047524bf2370e20287e0f4cefcb75d59fac0f0cc0cf60acf" + }, + { + "href": "./CF09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200f6c93a9c29294d17a46cf8820933e96a105042aaeac2f29689cec5aaf10a8d9" + }, + { + "href": "./CF09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122051b323609f273c89d754433a19f63556793fc6b747360dd0dacb5bc4efdda48b" + }, + { + "href": "./CF09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b956f9005818e9c6de083d096a59005028d6e87516719b15d7f2df26b2c459bc" + }, + { + "href": "./CF09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203d2e31c0c853f4f07930f8d0106a0d0d4b54440a58606f39ff09e491a7a14e97" + }, + { + "href": "./CF10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122032490839e5dea400b5b5c8e67f0856cf21d9caac1c85bab6b8fe62893f1ae610" + }, + { + "href": "./CF10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b28819139d303d530a432caa6ba7141b96b29d7480b42c67b2f7a302bdaeb2c0" + }, + { + "href": "./CF10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b4976cbdb170a32825b9b465943051b69e0c32b7dfd8b212a8035ca7948188b" + }, + { + "href": "./CF10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b4454bde7677bc7847f0d70bf575fb96ef1172c061875b08ee083ded6d2e3189" + }, + { + "href": "./CF10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203cbe5efbfa3919abbc206c84ecd55f5f903af5fe7e66b965915d693ce39c0c6f" + }, + { + "href": "./CF10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122008b8359a93c9c05ee8e386192570a49148d479fb49bc71511382d04382edd309" + }, + { + "href": "./CF10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204aa28e752677b079f6db828ecb79657935843a1cb0e9f43a2f8191abfbb6742d" + }, + { + "href": "./CF10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122049ad9d9d64b6bef042702582c1b81d499d8b5219a8c671fb6183ea688af09577" + }, + { + "href": "./CF10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9eb509ea1b0ca9060db744e735eb63072f43ea2ee35369549be366bf2a74077" + }, + { + "href": "./CF10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122021608d7f5c91f37905954844dfb8a85bc78a9480813826e1fab6412c0f15c21c" + }, + { + "href": "./CF10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220add72eced150786d7c9a93646c3cadb85ca0ed9e687f837f42bff1821727f607" + }, + { + "href": "./CF10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220677e4b396afaf4f35df8d8bd1179a2396b450564e0191c96a14d7015cfeb8235" + }, + { + "href": "./CF10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220168e7ea764e056e528b0e90c992e5ee13e81b585b0b967422609bef439a53c56" + }, + { + "href": "./CF10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122032e2c50b037bcf4d487e935f105dc02661bedc69a8e7dfd448562f166ce1adff" + }, + { + "href": "./CF10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eece89ed064dcdaf0e1b29dd7d5d0eb7ab8c04663eec084fe4dbd0a71a4f666a" + }, + { + "href": "./CF10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203db83f8100f193f44ee8d6af200b1e99b7c9a018cc69ef249b4ccd407bbdb592" + }, + { + "href": "./CF10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200b12890def1c98d1242df89e5f688b8881e37910184e0d320d1f13e93ca0b7e0" + }, + { + "href": "./CF10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220decf4a104bea11de6df3f8d0d53dd05605213a6faf56cc0208e3ea9344b8bec2" + }, + { + "href": "./CF10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024535fb43c1198a9f05dca57a3ffd873655e74a885ba9119eeeba21492e751e7" + }, + { + "href": "./CF10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034a93c972094e3eaa508f9904ccdbad1c6749bf328fe3f9895a2e6963e474a86" + }, + { + "href": "./CF10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a2c35cd88f21f5d28d242474ff3614a3610eea7346bfea0abccfd7af0c5b016" + }, + { + "href": "./CF10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046e4609ab9da4c81e134322360524361eeca570abeada9a1d3af213663cf85fa" + }, + { + "href": "./CF10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205cc952e6cf18c982273efd3aef818acb11009d786cc4d5b0ec9108370d43d59d" + }, + { + "href": "./CF10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bb4022caea3ba1e899e0be8448260752302a565e1663734bf53e1d5b6ead207f" + }, + { + "href": "./CF10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b998ea6d1b1c25f6771f3342670e090d60eaee48aaf07c66792aa6f09dac18fe" + }, + { + "href": "./CF11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ae975f0a94fe540dff26682803366747884bde0af800ef95562d8cbd8db5ba1" + }, + { + "href": "./CF11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207a03e3c39b4a1a34a22949bcb1a4056de4e6458de669c337c275a11b8add2cac" + }, + { + "href": "./CF11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e4289ae55eb48d3172043a3ebd04336d1396227e99fbea079facc4affac16c6d" + }, + { + "href": "./CF11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202397020cac158b5d81c7357f8e9acb5aa50275857c705fba55f5b5c1437726f3" + }, + { + "href": "./CF11_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df56cb28edfcf3befbeac1257b65c2367401d06231f00516b5e4be1a86b7409d" + }, + { + "href": "./CF11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eba4c308799d074f6aafe542630b14fb522a23a02ba18516c4da26e39c743d94" + }, + { + "href": "./CF11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220587ef9f8312902eef07469092a5ce79e10863ba7ba82c2bdc9fedee384541f76" + }, + { + "href": "./CF11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0a4627118dcf93d492e07cd696765c87f1374a791dc0312cec564dbc99b6153" + }, + { + "href": "./CF11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122004651a68245293a130e736ae63e4f25fd88a2c4c6fe1cc357892742f9a6f353d" + }, + { + "href": "./CF11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220254d29cb7e7842115d2868bf3ebe1de900ca0ba30c375d438604c8d59f24a9cd" + }, + { + "href": "./CF11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f7cb6e2111f5989f9d7ae26fb1b4bed26cde43fb95d0b0a8fee736ae40586dff" + }, + { + "href": "./CF11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ecad2ed6b71faa51fb2dffe3be915c58f94e52027090b54629d5d746b4bb106e" + }, + { + "href": "./CF11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030cc0417f0a4fff1a85e12b13b2197ae389032bf9f0674ec631f44921a4da625" + }, + { + "href": "./CF11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220385f5fcbda0bd5b2acdfd3b66483023f5e74a63d37a17929e0741ddb480a44f8" + }, + { + "href": "./CF11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122016bf23d87612498ae34efabee5081184f3a689397cb723d22592f5fb54b90ab2" + }, + { + "href": "./CF11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d7021b1013c97de990b63377f94ca1b41ce54ff15e8cb0d950e68344cf6c2400" + }, + { + "href": "./CF11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4b2d49c10fd020a50dd6624ddfda5c96439eefae0051372b2ec0a65439459bb" + }, + { + "href": "./CF11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220080a93a89db4e0052295f446c8061250d7f4e054ca7ebdb3a134a3a52eaa2c36" + }, + { + "href": "./CF11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200a850e080c829645a24c1fd7bce619be0eb51c4a6a5935f6c0349de0e98e066a" + }, + { + "href": "./CF11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202c19a85728bdc02f57ab5641c8dd9448334e117546c580a315953263d3e47574" + }, + { + "href": "./CF11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d1148fea6f09f849ab75d4391f76d01637f80eca7e067725a301e6d0b1207750" + }, + { + "href": "./CF11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220118362414d3d68871069e9c63cea527461686f387933ae302083dec34c6dd7da" + }, + { + "href": "./CF11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220003310bd6a7c860de4354b21186631c1c5f6ecf720096e95708aaae2cbc8b68d" + }, + { + "href": "./CF11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a702f2f051ff9822d67e63c3d10ca867384a0229230497c46710b401afd0112c" + }, + { + "href": "./CF11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202e058dc045345e32f1abbe0da131719bdf3286c5b538324f8978fa7920b1f43b" + }, + { + "href": "./CF12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a75a7fce79d79b8da055ceba730bf78be4fd4ba3f5a8d9dbd7cae9095bd9c55" + }, + { + "href": "./CF12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f3158efbd136edc362914ba7a1205e925039a6fbda05d8d9cd7721d97fceeaf5" + }, + { + "href": "./CF12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122053715b13aadbe5ae1705caed0974f2911f0fcb6764ba59d8ccd88c966b2efb26" + }, + { + "href": "./CF12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1d3b4924f7b1670ecf37ed046d181e531c8c59e5c4319f0905521167776d131" + }, + { + "href": "./CF12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203134b96d804c6173166a5253d8531a04e8aa9ba1671835e65c2777a6e31ad550" + }, + { + "href": "./CF12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da0bb8373661900783f1ca121c1cfb7a7e6abe4aaed33fe72eea7bc651ae0d89" + }, + { + "href": "./CF12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220191911b9f723ad4c7e314437d91744ff9868a95dde00192f9b8e8a087e2b84e4" + }, + { + "href": "./CF12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201cf11c49e7f7e51322cde178d9753a741bc33640eb7c6f9d6c5380c910ee101a" + }, + { + "href": "./CF12_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220737c30c9455ff4b99ca495c505a6d8fd36557fd79ef23cf5b230e55d3475477b" + }, + { + "href": "./CF12_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e2f440cc263d3cf5e2dcb4f22a19b499cda67dde074d0b5faccf16cb38be2500" + }, + { + "href": "./CF12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220213839aeb8369c0a4719b93c46cfc8b6262aa63d7c95aa32de98eaff5c654832" + }, + { + "href": "./CF12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d30fa2f8df04359a50090804b46a77ea066f0a0116197c3178d3f75ff4e53e84" + }, + { + "href": "./CF12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e5e1e8ecff00b86661722af0a5a7d4df6e92a56ee54b486c6686d5c4f951120c" + }, + { + "href": "./CF12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220afe43d70119f891dcaa49137c78f6dce546043c17acbfc9ff9b546c5f8a66799" + }, + { + "href": "./CF12_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fa36534565f239e0937612768310474ef01ee9f0912a3c7f8750dc9fc359a7e9" + }, + { + "href": "./CF12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220839505d362f9e2590f273219aef0e712ca8a247b2946546612ebbfe33b6a38b3" + }, + { + "href": "./CF12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122093dc0094d889a6e677186ba024c0d769f0273a070f09831b819e1855b3deaf6a" + }, + { + "href": "./CF12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b20fa35cabb2ba1210d985a7ec29c9211df15ed4a72109a3047bbb614b863ca9" + }, + { + "href": "./CF12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c9a0029a29c95bcb180dbcc288d036088c02136e9336ce91a6110220b72a845" + }, + { + "href": "./CF12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203cd01edf1f0e09eab3f5749ab8a4af13dfdd8450eb385c955dc7383e1a292c85" + }, + { + "href": "./CF12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d6fafd1dd1e965d2f5f339b9d63ca0dd039463b8f952a5fd6896f4fbd8708fc" + }, + { + "href": "./CF12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f68fb9ae61a4eb73ed35b369315929f997780e90be89c2d29644b582d5d98fd" + }, + { + "href": "./CF12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ef0d7fa19e9c9f815329819bd5d91904c7f85b00fe3e1cf566766b170e83babf" + }, + { + "href": "./CF12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203283b95b0c6f6ed7d96ab275b898daf4742ee55b14ff8ffc62955115d4235c3a" + }, + { + "href": "./CF12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f536a1e1ce771f5983f579db986e3b6b2de5aa3ac1964e2111b37c4903cbb99" + }, + { + "href": "./CF13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206c13385f0cf2a95c09a8781286f0a8a8ac6da79a96ec3dbdbcffa5246f935bf6" + }, + { + "href": "./CF13_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043fdb28691adc832e0bc1ae0e779b87a95e15060b32cdf234b51a9cbe2d3d7d5" + }, + { + "href": "./CF13_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200bbf889d3468f40a55f7f2729f6828669bb88e019e5ab0615a1c94bbf1cba1a5" + }, + { + "href": "./CF13_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c23b89ac940c4692a5f15be613204cd4c4ba2ad070aaecb2ee825d872b3809bb" + }, + { + "href": "./CF13_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209f45a464335db6e8a0084104bcd82c1ef1b7f9e2857bb4be5559bdd005cc58f4" + }, + { + "href": "./CF13_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122091a335313cfd8d30863d1036b1489a937e31181acc83234c3d8ece293bf2fafb" + }, + { + "href": "./CF13_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205fd5e63c8ce38d9fbfdc1f0606ec864103d8db755857e3da9b67a65b7e41f8ad" + }, + { + "href": "./CG08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220817d95fbf77522b296f44dafbc1900eddc6911bffec5a311a60fda648d82d939" + }, + { + "href": "./CG08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208b32495cb9b43e82ec41945a40588952effebbbe79447db62742513f6312a465" + }, + { + "href": "./CG08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b20853c909eb0a6614a97bdf25e7412e9e08fc321f3bd08234dce43770ad7018" + }, + { + "href": "./CG08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003e42bac3d028b065a87d586615e1355ddc3bd54ad0f1e3b9d3a0f1aa18c3899" + }, + { + "href": "./CG08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122090c06ce3884872d6336754adadc034d6fdfbb98090dcf586ce170df882c5cdec" + }, + { + "href": "./CG08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b3444374c4a20e63309060d2bef03aebdf5684806ad7c9d529c187c1c2c8682e" + }, + { + "href": "./CG08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209b0a4743216ebbc4912bcf57960ffd14ff026ea1e2ceb62d5eb0eb68ad47a769" + }, + { + "href": "./CG08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220998030bb584d0d5d204e77f4a1e16d7d35d53e944bcdea8ebc5473e1a82e85b4" + }, + { + "href": "./CG09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200b2eb1fe0557beffa4f07e300a5aa26202f53739ace8409cf3db9648988711fc" + }, + { + "href": "./CG09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209b41aba5ddf626557359fbaa49b065d7dc83907550c62c977915cc5fe2ede459" + }, + { + "href": "./CG09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fc6505d34cdbae9905c60b3c235a70addddeecc79415f47ca2ffb7dedd16424b" + }, + { + "href": "./CG09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa428f4964ea580a1c4c20d8d00785bbfe07347361a82c9d9594f6b07fda33d3" + }, + { + "href": "./CG09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a94cf03517d23c5cd0c5fe8a02e1c47bc8edf5f38fb3456040e1929ce20df6a" + }, + { + "href": "./CG09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220074e9576cb30c3f911a4fd95fae44b27c411ba7a34ed2438f1a6349adad46182" + }, + { + "href": "./CG09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220581291cf82d6a69c82de308390b5d4d757222317d2e0363b35b42a2e63ab98f4" + }, + { + "href": "./CG09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207144e3d9c40c13eaad40155f19ae867f74c284276004395504b4d7f763fd7533" + }, + { + "href": "./CG09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220edc5c250bd023f505a9f48e6afc94f2830cdc8d10b844dfdfcbd465b29b77401" + }, + { + "href": "./CG09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fec2b6815bd4848762246a07839550a48a08746b6038dc703ba9e60ef1f46d17" + }, + { + "href": "./CG09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cad7e3808077c6f36e26edc02e6f62d3d734d18b06b80f9ccd3abeed34165e68" + }, + { + "href": "./CG09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060a7ba47c4f2044989dacd332dbcf3d270103e971cd07950714259e2372cea85" + }, + { + "href": "./CG09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f480526a0e82ae8313053f01a962f06beeea0b9ee4a7307bdb359a57d905961" + }, + { + "href": "./CG10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122047faa6961d47183fb3435145f352ce0346194784afa2778fc5291612c1877a92" + }, + { + "href": "./CG10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122048b5905ea37553dfa40b7c8bcca33f94e6fe582d94c9e50448de595341cbbef6" + }, + { + "href": "./CG10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b405230c3ae4cb52eb170acce26f629d2679845f9bd0b461ba31f9c3efe8c89" + }, + { + "href": "./CG10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f7eb8e00598d154281b32b84e824109595af4dd299aefe18d28a366faaf35f67" + }, + { + "href": "./CG10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220416e0ac072de656a13399be5d716e81f48d3be167e72a90ced1d285618df0649" + }, + { + "href": "./CG10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204295a786245c4b179397f9b2abf3238928e6f4c044f4e94f8dcbd0fa96050a2e" + }, + { + "href": "./CG10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f091e0fd5a88ae2e4c53372005aa7e400d754d8999413b75504a57c0483175e" + }, + { + "href": "./CG10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043bfff358795239dfeadaa583ab2303ad3ce2e19ae6eea6d64d126b3e4ff337d" + }, + { + "href": "./CG10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122055583c65b9fd1e12685cef98943b8f162db727277a35b457b0347012d22f2fa6" + }, + { + "href": "./CG10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122084273b5c82cdbbb9791d99624304cf3a71de4c8328af00e828ed6f5bc571b623" + }, + { + "href": "./CG10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a2237d236f8c837065b8414a9c8abfe6975cca72bf6688a0f01714374a927bcc" + }, + { + "href": "./CG10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d2f19abab21b298063436ed0c38c60ac114620bcc085b1d3704e74f96cc3a09a" + }, + { + "href": "./CG10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0d90928deb9fd55ac2f556b9cc69365d194c6849cd7d8cd89d9fec395c8bee3" + }, + { + "href": "./CG10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209249781387397b6983e9d7b0f20bf532f0dd3fda26d1a33d8c7ef35537f01055" + }, + { + "href": "./CG10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed85e74ee4a5309c1a2344a56dec69f35ea6936cd1c964bd533d75e09134ba3a" + }, + { + "href": "./CG10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df7e49e0b929ddc0623b670526b0eedfe4b57c76fdebfc43c1ece839bba1702f" + }, + { + "href": "./CG10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a9a862c7e7805d82acfe213f37e5400d4cf09218a7919c0f89f00194cb32b02" + }, + { + "href": "./CG10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220021858b207f831c61f1d93b17ac48155cace772d33e1df1da641b69a7a5fc156" + }, + { + "href": "./CG10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206edca238085a4bdad79fb9b7b3e0f141418bd415bccbe208cd1632432e2a26b5" + }, + { + "href": "./CG10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122013172571298188cfecf4e54316f90193ccf7c12a8ddad989b39a83b15018aaee" + }, + { + "href": "./CG10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec5bba09984815ec5f95acf2c8e1e93896e4345a730b2b12c211be4e6134c5bf" + }, + { + "href": "./CG10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204abc65dfda070abb89417bd8db40035e5b10a42178b354de0f41bb9098c2577a" + }, + { + "href": "./CG10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0c12cd28d636f6647ac1926621bf95aa11784ebd155fbf82ad04fabc07fdc13" + }, + { + "href": "./CG11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122007a81d4b7197ace82922effdcae6855ffd00ac81d313987cd62d09c1a3873692" + }, + { + "href": "./CG11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122047cdb0751018d8e08eeea13406db7ca11554e6e1301249873770dbc481e3c0de" + }, + { + "href": "./CG11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220501d64ccba0a9d5d5970d766632ae2c6218ad1d0a27723bfd361379920ed35be" + }, + { + "href": "./CG11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c42d21f3b9acb8d2022e4d796e7f07f1e38ea5699559bae6654be3d879bc6be6" + }, + { + "href": "./CG11_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f905f0e76580b8553aac49062d0c8764edaf18072ad4a23d13c0ffe383001b19" + }, + { + "href": "./CG11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ca5c72386eccfdb412f14265d90f180e14409db72e44c8d47a5a543417c30da" + }, + { + "href": "./CG11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209b49fcdbd1a8670f5e939397caf827abe80ea271c061875dc46acf845fe00e5a" + }, + { + "href": "./CG11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209ad6bb879d728d2f571b45b07546229f01304e09997d65d3952829fd19f1a666" + }, + { + "href": "./CG11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220591320181a23b4a6e3e622215807e1c9030e2ffcc2776bcacb7ccc8b97cd7bf6" + }, + { + "href": "./CG11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201e1a40dcfd943922a5d1cdf24f52123904b5abed694e93af8b529d70dfc71586" + }, + { + "href": "./CG11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203bb2f5242b9ee129cd0b46ee6d425f43025325090e2e459a80793de5a29f19a4" + }, + { + "href": "./CG11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f3b9cbba666c9e68fc36a786a4a025629caffe7a5d02f97b01540f85932a4c77" + }, + { + "href": "./CG11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122078f910842a7385ed9ed2389927e9e5860b0cb93d6ec7acab847918b572896d77" + }, + { + "href": "./CG11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b5fd71f163774abf64e25100c1b8b8b73d879441a9290df08bb03db80e8f31e5" + }, + { + "href": "./CG11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f309e49c4a39d8a5246131cb076979161b038b75ce1ed5b185933316669fe9f1" + }, + { + "href": "./CG11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200da119c642aeba7a941f98b9d64117debc3c886ef4ed3e0701d47c10c2840ba5" + }, + { + "href": "./CG11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220951c51a9ee4025021201d597103e0c720040225f65d913ed6dc05241d26cd988" + }, + { + "href": "./CG11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220319a8222696809491e01009a58cbb848860104a44d1c1dcb14ce09a1b9b63149" + }, + { + "href": "./CG11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c81193f937086fd00e0b584fb088cf1fa7f852c4dabc5b601d9952623cc59b24" + }, + { + "href": "./CG11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f88d1c13d60c37b65ba264ff5410c76024cf779642861cccaf7fdaca2f050bb" + }, + { + "href": "./CG11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122018c1359be39b8dcfe2f664889334a3dd6af9005888783bae57d9eb186e36eabd" + }, + { + "href": "./CG11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eebe163a487e3d9152b12d8270e5e5c3ec7fb450697e1e63b07f45c8d5275bb0" + }, + { + "href": "./CG11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205814f4a3d1c8e170b8edaf238219d7517f542aadcfe5fca78bb17f3afe5c97e3" + }, + { + "href": "./CG11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c2166d3ae70678608dfc71c711647c6a500089fab37d7606fedcd8aae7c720b1" + }, + { + "href": "./CG11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203bc3db94543dcfff18ba8f57c1be234aeb3a7262ab1f0f31897b17b2b4cc1610" + }, + { + "href": "./CG12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204524c56b03210e26db3a5b5b097141e6273f740ce850b39569225f8317bd8956" + }, + { + "href": "./CG12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207269932cc905c431b3e5c65dc94e7128a06a70a11648403bc51cac3f9ac54a6b" + }, + { + "href": "./CG12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220450da7da15e636dc435e960146ade5b7befba325ae60ca6644514bab3c3423c3" + }, + { + "href": "./CG12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201ea5be9a0f78db690c3a65e467e99a3573385d6f3d4ab6c7a09f43681f4ed049" + }, + { + "href": "./CG12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c39676498b493bcba638d85d5979f1282af456ea97ae80c5b47a566af6d7003e" + }, + { + "href": "./CG12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220448543f6b11d5706b05fa8ffe8a0dfc28706d3733425437e1db7a73539a426fc" + }, + { + "href": "./CG12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122006e69642fd985412f094f5d3a5542d61df5a556accf7689658fad8b6397c3406" + }, + { + "href": "./CG12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220787a9c5b0b40b14b1364a7e0a5c3fffd9571f6f94be3296386983a7b374ef612" + }, + { + "href": "./CG12_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b58a3b1a99816bb9944f01bdd2ef1f07b4045436189e312b25df3a317a73d09e" + }, + { + "href": "./CG12_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eae18fd238f61f9aad889ba9f4657e278bd22336598dd522bc796fe83c942b48" + }, + { + "href": "./CG12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eb9778e83865688061b8b1b14ded8a5b6fd8c97c9279c785a0f1f0588ec0076e" + }, + { + "href": "./CG12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034606a5091661c32b78b7cf913097e76c522d6cb27dc1a821f008ebeceb60127" + }, + { + "href": "./CG12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c8d87c951a2bb5c27efb53ecfc68a279178b8fd1f0b470624ea5694de61a048c" + }, + { + "href": "./CG12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c427a6bff7791cccc5e10684c8a886953525b441b90b2ef46328db72d4653255" + }, + { + "href": "./CG12_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bbe1939990695d1f13f68b1a27d34c8c48f72d0aba7b557bbd627fe0f6694f90" + }, + { + "href": "./CG12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073339113583093490b6c2986e287bab7546de19a8259f7d0630bd29425fcfd22" + }, + { + "href": "./CG12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ba786141040432d9c6d7e04859786e09b87c5dddbc2d37a77b24938add8b96e2" + }, + { + "href": "./CG12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073bb30f5d8b763016444c6e1399f68fc89eb95f66a73ba26957060d312c414f2" + }, + { + "href": "./CG12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fcb238d1a1e1b5868059ec9c0f62b5296e91752146f2777689ee26e3413c052a" + }, + { + "href": "./CG12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ef43094af8f97cf16340bbadcbc320a2d95baf25dd8ed827dbef1b05940ca319" + }, + { + "href": "./CG12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bd9eab4806df576e28263996a4a94d53f531803e7dce92dfdeab4b2edcab5c51" + }, + { + "href": "./CG12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207f1b42eb0c25f9a56276781ce904f7faecd6f343efebffd27d05ef36c50d09a4" + }, + { + "href": "./CG12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201af0fd16cb2669670606171e25e218a49da11885a745265f1f1bea64b84abcc9" + }, + { + "href": "./CG12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cec7cf094bc918f3b8b009b333e5b7f3dfea857d3e5340adf26fb479cb9c251d" + }, + { + "href": "./CG12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e17caea00367d20b669b4be82ebd0e1a3b35d9b53c2d20cdd14a35513ae707c0" + }, + { + "href": "./CG13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220de32e33f8e2b76623a094807f7086f14bbca8e968f68ea259e89fd94b68000ad" + }, + { + "href": "./CG13_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eec1fbad40ba7c4fd4322376e7aae8bb14174c08fa466e30c1a0c303b90f5ccc" + }, + { + "href": "./CG13_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c214ca861321d81695319c000fc9ace5f8784c0fabe34be4e160bd535cd7027c" + }, + { + "href": "./CG13_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200f92c00aed27c8860fbf6f22a33339f292dbf201656da93c8576907f23019150" + }, + { + "href": "./CG13_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122013ff79254bed130f5a7020f316147e6ea10e3cbcbf93064518fdb36b56c87e50" + }, + { + "href": "./CG13_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b92dc98b572162b47653cf9bb147a6a9f1afe5b71b2c3541753da0ca2cfec9e" + }, + { + "href": "./CG13_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122058b01044ac45001a3eab89c1ce35ba3ca7f019d531e95fe3af927028dcebf444" + }, + { + "href": "./CG13_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122038d5c5680c093d695b1627df4aa3430352e34999bdd2ec0ce049b00cab6887dd" + }, + { + "href": "./CG13_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7decc19c01d54b47f89ace5368afa2474b167bc23304421ee99c0020a1b7801" + }, + { + "href": "./CG13_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220988ae349c00f81b9f14c79de9c6015a38f939c66ffdb2954b3f151c5a5f4e1ce" + }, + { + "href": "./CG13_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bbaa79523caff66eb49b3c6243131d7e3e3e2d9964e70edd558850bf469e821a" + }, + { + "href": "./CG13_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122076f4d18d603326caee1b5e30143389fdbd66e712fbf65d0bfd984b85f0ab7d51" + }, + { + "href": "./CG13_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b544eef6273f1b851c0d3e82847c4209a2b118134c95da04bb663a244c13c64" + }, + { + "href": "./CH10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e70adad01d0f708025126e1b87b58cc777ffe293cf4c5694e0d9dd0048ff734c" + }, + { + "href": "./CH10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201ebed753a9ee51a1f5bfa6a28085d5fdeb62ec78ce9f3869e83211afb23b2490" + }, + { + "href": "./CH10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220131eef92def44c7c8b870dbf0be500d470f52a918481bfd97e6cecacf0d7a93a" + }, + { + "href": "./CH11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043992ade27d468485ef6f05a0b5ec97a808b0bb329d93506db5b0300d6856552" + }, + { + "href": "./CH11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220334763acaacf082a0b090ce6fd2f4e4e19d429c4e690264f934ad1eb58f18eae" + }, + { + "href": "./CH12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204ba2e458bdfa94350a2025852720c338b85f4f74f11bd4c4f1d0922e156e4958" + }, + { + "href": "./CH12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf0a8904fc005ad6864b6f85cf4168d5915d4d2984a088f30039e9d3be369d6e" + }, + { + "href": "./CH12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220213a8b7e7e9e43b69c597831d7caea6ab9b9163898b98c19144f3e1deca402e5" + }, + { + "href": "./CH12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043f36975cd389a03600b75a7a81b665dbde7615b8e4c8948a8e70acfdfbcec8d" + }, + { + "href": "./CH12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220510ab8b239a7f905efae2b9583462d5a1ef1a658c22343805a31b6b487d7cb09" + }, + { + "href": "./CH13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220059b246f91ed11e32b4a70e6a73513577b08449c82977a235165eca0c0aa124c" + }, + { + "href": "./CH13_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220164a9470dcc6788dea449133f56d846fd1c58d6533fd1913ac40dabf42932e59" + }, + { + "href": "./CH13_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017167d26dc98dc451fe6c61e662a90d1c9738261d222e9fdc5fdb31bfe62bff0" + }, + { + "href": "./CH13_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122036b2bd2c6b5f94621f2e9a3830b573f9af999b7bbef43ac52ed2e4fd40fc873b" + } ], "providers": [ { "name": "Aerial Surveys", "roles": ["producer"] }, @@ -625,9 +4012,11 @@ "linz:geospatial_category": "dem", "linz:region": "southland", "linz:security_classification": "unclassified", + "created": "2024-10-07T22:07:45Z", + "updated": "2024-10-07T22:07:45Z", "extent": { - "spatial": { "bbox": [[167.2567474, -46.6893848, 169.3363348, -44.6247872]] }, - "temporal": { "interval": [["2020-12-14T11:00:00Z", "2023-04-25T12:00:00Z"]] } + "spatial": { "bbox": [[167.1806453, -46.6893848, 169.3363348, -44.6247872]] }, + "temporal": { "interval": [["2020-12-14T11:00:00Z", "2024-01-29T11:00:00Z"]] } }, "assets": { "capture_area": { @@ -635,8 +4024,8 @@ "title": "Capture area", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "1220ca45adac51367d4e39e529f8344b589375289e7fa163afac7f7ae2bd213a4b04", - "file:size": 36861 + "file:checksum": "12205c4a744bea8b1fd2da022429def80d863b7d2e3ff57d0c58e047794ce9a700e0", + "file:size": 49095 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From 2b19273bbe06f6750f30536eddfa5fa0d4ebdcef Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 16 Oct 2024 13:27:10 +1300 Subject: [PATCH 301/309] feat: import Waikato LiDAR 1m DEM (2024) - Draft LI-1551 (#313) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-37.5824690,175.3103331,z9?style=es-waikato-dem-jkqth-get-location-548618316flat&tileMatrix=NZTM2000Quad&debug&config=2uhjHUfkYivzMYTanFf8jL6pbgmiDdSeBDSKEK5yWeUYKmAZY5UdBqafEDSGKrtxQsW31wsmcCyFrwqcvYu5Fek7B251uTnYcHStaHYhPfRBEAuu32GDuBipSAkKqjn99Hk2zKyKijfFWMm5tUgMF9jLDXZ4vrFXNhMeyb5g7DJBqwssxVPnQnVLDRCxV3AMr6cvrr4LL7AyvHcTKfKPkYW3yG3ghu6RfJrEbLkcyc81PJisT) **ODR destination path:** `s3://nz-elevation/waikato/waikato_2024/dem_1m/2193/` --- ...A6R9ZFHKYH6K8XSAE2J5A0A-1728951654516.yaml | 8 + .../waikato_2024/dem_1m/2193/collection.json | 438 ++++++++++++++++++ 2 files changed, 446 insertions(+) create mode 100644 publish-odr-parameters/01JA6R9ZFHKYH6K8XSAE2J5A0A-1728951654516.yaml create mode 100644 stac/waikato/waikato_2024/dem_1m/2193/collection.json diff --git a/publish-odr-parameters/01JA6R9ZFHKYH6K8XSAE2J5A0A-1728951654516.yaml b/publish-odr-parameters/01JA6R9ZFHKYH6K8XSAE2J5A0A-1728951654516.yaml new file mode 100644 index 00000000..1720fcfa --- /dev/null +++ b/publish-odr-parameters/01JA6R9ZFHKYH6K8XSAE2J5A0A-1728951654516.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/15-es-waikato-dem-jkqth/es-waikato-dem-jkqth-get-location-548618316flat/", + "target": "s3://nz-elevation/waikato/waikato_2024/dem_1m/2193/", + "ticket": "LI-1551", + "copy_option": "--no-clobber", + "region": "waikato", + "flatten": "false" +} \ No newline at end of file diff --git a/stac/waikato/waikato_2024/dem_1m/2193/collection.json b/stac/waikato/waikato_2024/dem_1m/2193/collection.json new file mode 100644 index 00000000..9f41317f --- /dev/null +++ b/stac/waikato/waikato_2024/dem_1m/2193/collection.json @@ -0,0 +1,438 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01JA6R9ZFHKYH6K8XSAE2J5A0A", + "title": "Waikato LiDAR 1m DEM (2024) - Draft", + "description": "Digital Elevation Model within the Waikato region captured in 2024.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./BC31_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220abc69d5ed6468b43388a74fe62cb3bdfc3f5c1f026578b83022e3cb1b8457a57" + }, + { + "href": "./BC31_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122031088e236d17631fb7a14d3375809f37fc7bc71f4b1a224af4ff6765b51f61b5" + }, + { + "href": "./BC31_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206753ed1aebda0b0d5d7d33373d9eccf27e66627d8f5577efd4a90d23ac4df643" + }, + { + "href": "./BC32_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c215149f19d10602015dde06400349abc17e911f99dd8ce0dc7ea59b7f1c4ca9" + }, + { + "href": "./BC32_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd97d20b762c0516fa2de3628e6ca51b837d96ffe497682bb232c638e3de2cf5" + }, + { + "href": "./BC34_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cd2da16481a8924da41dc341e524fee3622aa88301ee1d9b109fc05635271705" + }, + { + "href": "./BC34_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b563f1c668e5978db58d6ed578065fe81201ee496412de1a47cf4e01d8060a49" + }, + { + "href": "./BC34_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209936429f585d0bcc86aa3e857db82df84e02ad88b7a25e6362e68a2e57b861f5" + }, + { + "href": "./BC34_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206145064a7dbe1cef942fc3f797308b95040fbf6e7fcbbc0048980030094f9b9e" + }, + { + "href": "./BC34_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a26940a103359f0c7bd14bfa8ea1424cad3b4acfb0a1decf06412dd6ea96f611" + }, + { + "href": "./BC34_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbdc2b619f6cd172be9e344483a712222eb8b0b059787d60c2fe106acb39bcdb" + }, + { + "href": "./BC34_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209223b4be5cd54a1711d021985bbf89e19b049695700b536d06996731bc2ce7f5" + }, + { + "href": "./BC34_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220158a84d31424e232b20f0c86602de03b8db9b9ad6a1faa43b8229a03221d2a9e" + }, + { + "href": "./BC34_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205b91246c7757450bb2937e1c0ebb9418a31199016cc6f8774b19c0f4c9e7cf85" + }, + { + "href": "./BC34_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f78f94ecf74c840e0b437f014ee643082e59aed9e2b45ab2594b5379eee2a18" + }, + { + "href": "./BC35_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203b6da9a68185701321ac9b01dfa3c938226bfd5e4930071373a69fac9a8fe4f7" + }, + { + "href": "./BC35_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a736119c8a654aad072cfc9703322d5a24081fb2025a98b7a258de5afd20eb3" + }, + { + "href": "./BC35_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204e41384322e167481e3b383c588ea717b7872978df10036bdf799a24265e6698" + }, + { + "href": "./BC35_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d533f89ced9806a60b6c41ef9002d90f26bc31bfe8b73b004fba1241cd099b3d" + }, + { + "href": "./BC35_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c5a1c7dd0ff4b3b97c10cd3e2e12966b5f09c1bb76fd065045f8ed7dfe20fff1" + }, + { + "href": "./BC35_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204c70e630c9466ffbf4db368c9093e1598cd633a0470e12ca05f61fda16088df0" + }, + { + "href": "./BC35_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208f9262b817fed944e397e8cf3aa0d54371b9681a112a4ab2b48f03231f9ab7bf" + }, + { + "href": "./BC35_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122007505c8ed08a9c7e17d70dfae99820899ec028a4919aac46563706a3952d6d59" + }, + { + "href": "./BC35_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ac5c3238acb6d89a4b3eba3ac641cf71ab7cbd52f28a3415afb1283c648935ee" + }, + { + "href": "./BC35_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207c9732819666676a4ce2bb9eb1708af17e8dfb4dd8077260906c7ed64fbea0d8" + }, + { + "href": "./BC35_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122047243b19ae62ff1007b69f347bbeebb59186edcbda516e778906a208cf6b1a55" + }, + { + "href": "./BC35_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122088c36d7996024cb35b541d7ba035cfe335a7528654c49187479a11f5d9a251cb" + }, + { + "href": "./BC35_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203d36c43161afde8611fb4ac8b61ef76a1c932ff072376fb29f915e164a424922" + }, + { + "href": "./BC35_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b74a7912ee28157b09ee5f665a6dc710f917b6ec32d8ad01255df19d34a2f9d" + }, + { + "href": "./BC35_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201ee0992c8316a1abe9488a545428667715542cf2b07f9ec25f7253c35897bbd0" + }, + { + "href": "./BC36_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200751180cecd22b8f43b3a953d8379056d449297341d2dc834e517d070e0e923c" + }, + { + "href": "./BC36_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220695474fa728ba0368c77cad9aa213c4a909aecda8461eaae1aa7b8485c5bb6fd" + }, + { + "href": "./BC36_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204f58b656c7b37a7106b6231d7853df33682e2440a948d151c720477e14ce9fb5" + }, + { + "href": "./BD34_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b00b00ce408d404ba85991b5d1b689be2da2a72ff4a01747259babfaf9d3ef73" + }, + { + "href": "./BD34_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e1398af558f6ac69f2f0cb799f20c8301271e3cd20969fb3addd478d8f3f0706" + }, + { + "href": "./BD34_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b8d637b53141148e7055980ccf058e6b3ae5893f27a54b59d1f38c5a6af82a61" + }, + { + "href": "./BD34_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122052f5ffca443de617fbdb413346b0a1ead9a02bb679717ebe925272c5f3cffbf8" + }, + { + "href": "./BD34_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f0cf0dba409dc5e6fab54a953582c6695c616ba1abc451b66d93c56c2529289" + }, + { + "href": "./BD34_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203ef59429e7c27266bca056805615fc088fd7f7951b3f3547614a478cb04d05e7" + }, + { + "href": "./BD35_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209871c3138b409882455a3d53e06b4a2500cea43e8f99613d086fec52c1f14802" + }, + { + "href": "./BD35_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6a1def81e62ea1b151bf93ce8b27b91c1f2821e1ddd969c9723a62c2d8a7256" + }, + { + "href": "./BD35_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202520fd5079b76b05765458ab6c80c09629fcca8fb9dac0adfd07e95b353e329e" + }, + { + "href": "./BD35_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203293ee15e7740e508856b9abd2f2f47e4c444d10f6b88a02c784881692dac1d3" + }, + { + "href": "./BD35_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202bcaba6bf2c4767fb40135b5edf3d9355c419315bb4595b0966d350fcc6aca46" + }, + { + "href": "./BD35_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc58a6f008b208d9ddc8897b3b51327e026bd664c82061206b0775d316d3ccbe" + }, + { + "href": "./BD35_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203327238feb64e7f82cfa24702015471a226e8d6ae00e63b2be89c3b30b00570c" + }, + { + "href": "./BD35_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fcf66fe45c51fc7c7c0f776f3aeac28346270fe66aa75c9a09769c695010256b" + }, + { + "href": "./BD35_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122069a5ea23b0eb78271ec9e5ed2a427ad710cc1cdf1ed427e924760739b366e42f" + }, + { + "href": "./BD35_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122092b7a69c2cf780751aae3fd5b0870b3bccad87c441ce14e3c9b19e9ec2993f76" + }, + { + "href": "./BD35_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fe8d7ea3d690ddf4f032350d636ee276b6dc40accc375609e94351aec4135a31" + }, + { + "href": "./BD35_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bed816b16311faf6120092ab785380aac01182d2521d7a1a438eb4c7a015faf7" + }, + { + "href": "./BD35_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf45ede8e0ef221b4d6c3372d57523cb7e7274bb110be998cf0db04c4ce6682e" + }, + { + "href": "./BD35_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220046b04bcc19b53f620ebb26594bfd74a1884d0f97873bfb0af2ee49022ed2f50" + }, + { + "href": "./BD35_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220593a1c91768d1fd697bc2f1fd8c37d02dafab6e87faef2cdba86e93acceaa0c6" + }, + { + "href": "./BD35_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9ed2e4340415f005d4c2a79eb3f5785abced2d614688753db5110046607cb6a" + }, + { + "href": "./BD35_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200eae52f6e9a2fe51bed4948e0d34b9aa096cbc1f959510af4070eaf8ae6838ee" + }, + { + "href": "./BD35_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220824e2da1bd1f0c90520e3d5a297d6b4add2b12c0a38b6a8f43c0d6cdfd43b50a" + }, + { + "href": "./BD35_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122086ce3d0c7bf125d850e3dd90f8d75f0d945b7fc35729fdae404dfa4c8a6c413e" + }, + { + "href": "./BD35_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f273590a97958dadc5c35bcba7bb4b96b06d94f5a99526ca14d264f5d06a08f" + }, + { + "href": "./BD35_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c5b549ff7860f6a554ebffec6b0b9c30f9410c915871a5566f00066adbd88871" + }, + { + "href": "./BD36_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a7f1a1726aca19a0180cf6ede50abb8989c1b99ad41b406620245019c06950d" + }, + { + "href": "./BD36_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5d5f5be06791a428100e1225241b2afc2c95709466bc88de1e606e05269a3f8" + }, + { + "href": "./BD36_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b4ad66307d794cdf5851a63e1c49ecef20790372f7b632e240b23506ced39da9" + }, + { + "href": "./BD36_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122085c3b4cac7b1b66ffbde273bcd369ccd76a1fe3437352c691cb853e8989bfb8b" + }, + { + "href": "./BD36_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206152e930f35eae86f32c1143677ce8eae88b69171afb5732ac62fe2c79ddf356" + }, + { + "href": "./BD36_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b1c6c16132fe18486e49060a056bbd33f26214152a933cb84fe6b81a3a82c987" + } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "ongoing", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "created": "2024-10-15T00:20:00Z", + "updated": "2024-10-15T00:20:00Z", + "extent": { + "spatial": { "bbox": [[174.6540045, -37.8985301, 175.9722922, -37.2649909]] }, + "temporal": { "interval": [["2024-01-20T11:00:00Z", "2024-05-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12209ce7f0917eabbf125f7a5d626c12fe3a52503ead68111cefd01ae7e51851206a", + "file:size": 4992 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 4edf0a0d0f0f312af9e00e53b055ee77506203a2 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 16 Oct 2024 13:27:13 +1300 Subject: [PATCH 302/309] feat: import Waikato LiDAR 1m DSM (2024) - Draft LI-1551 (#314) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-37.5824690,175.3103331,z9?style=es-waikato-dsm-n4nxr-get-location-555473530flat&tileMatrix=NZTM2000Quad&debug&config=2uhjHUfkYivzMYTanFf8jL6pbgmiDdSeBDSKEK5yWeUYKmAZY5UdBqafEDSGKrtxQsW31wtjewH3wH8ow2AtfeDPAoFewT3jSaG5FXE9cFrsyE1FBafCLBAC9h7vWXaCdGV2EGZExJKtkztB6b9q5YJSjbviXQDUREEWSqS2KLzXCrcND5TLUk1ZFNeRNNh2MiJkduT5xzXY7thJbmKynFG9YraqJf6RtbUhePXiTwk2EMHqB) **ODR destination path:** `s3://nz-elevation/waikato/waikato_2024/dsm_1m/2193/` --- ...A6R9Z4XM3K81N2VFKJ4MT24-1728951671324.yaml | 8 + .../waikato_2024/dsm_1m/2193/collection.json | 438 ++++++++++++++++++ 2 files changed, 446 insertions(+) create mode 100644 publish-odr-parameters/01JA6R9Z4XM3K81N2VFKJ4MT24-1728951671324.yaml create mode 100644 stac/waikato/waikato_2024/dsm_1m/2193/collection.json diff --git a/publish-odr-parameters/01JA6R9Z4XM3K81N2VFKJ4MT24-1728951671324.yaml b/publish-odr-parameters/01JA6R9Z4XM3K81N2VFKJ4MT24-1728951671324.yaml new file mode 100644 index 00000000..956cc9bb --- /dev/null +++ b/publish-odr-parameters/01JA6R9Z4XM3K81N2VFKJ4MT24-1728951671324.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/15-es-waikato-dsm-n4nxr/es-waikato-dsm-n4nxr-get-location-555473530flat/", + "target": "s3://nz-elevation/waikato/waikato_2024/dsm_1m/2193/", + "ticket": "LI-1551", + "copy_option": "--no-clobber", + "region": "waikato", + "flatten": "false" +} \ No newline at end of file diff --git a/stac/waikato/waikato_2024/dsm_1m/2193/collection.json b/stac/waikato/waikato_2024/dsm_1m/2193/collection.json new file mode 100644 index 00000000..e1970b93 --- /dev/null +++ b/stac/waikato/waikato_2024/dsm_1m/2193/collection.json @@ -0,0 +1,438 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01JA6R9Z4XM3K81N2VFKJ4MT24", + "title": "Waikato LiDAR 1m DSM (2024) - Draft", + "description": "Digital Surface Model within the Waikato region captured in 2024.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./BC31_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064fca9c247fd1a98a47942b86fdf26d2d2adcbf6fd67d17b26ae0b7b4ab4eba3" + }, + { + "href": "./BC31_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f7c8e5dfd907ac6b8ac7b89821e1cc0219ccdc7a357d1d7258e222340343c6f2" + }, + { + "href": "./BC31_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0d3d23842ce15e1c07947e13a22555252b314a5e263f9d2609466addaa8e75f" + }, + { + "href": "./BC32_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e9aeb44a6c457ae0ef70c7583f84429174020dacdd23b006d432df064843e31d" + }, + { + "href": "./BC32_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220355f9a24812f3ca005425011c751d6297deb131a42c96ccbf783a458f2441e90" + }, + { + "href": "./BC34_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c887c5d7b908f9494139da16030fec60be3e30ecb3db459252f84c71bd0cd2ab" + }, + { + "href": "./BC34_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eb446a253e3bc0861a8405cdd2ba1b08932207de90d7f9a11ad1d30f45c33b1e" + }, + { + "href": "./BC34_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010543a69f5a987544c991fa36913427b9009c9e14b1a04c8d7ac74854c42be8c" + }, + { + "href": "./BC34_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c39c01e4b7840a4f9661c60d623f56f8a2e981e30d049848ad33e790f975a31" + }, + { + "href": "./BC34_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d3cf36c2e1dba1d2618b45a4dec8d8fbad137a44a7d2d85a6e7d233bb269a5b8" + }, + { + "href": "./BC34_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf6a4d20a7fc5b28ecc0e332102d114805fa4fbd185a9061caa187a4e05eaaf6" + }, + { + "href": "./BC34_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb49b0ad0d40563c5701b9122ca1c19756629a510e093a9221e4365ad96d8a2f" + }, + { + "href": "./BC34_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122049f1d7c969c84888eb8d1011431ba33907b317dcfee386dad4fb51a23f4f8b63" + }, + { + "href": "./BC34_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ad9c686981a6d24b5d99736cfb09242a79ebf2ea2a7c045ace5e506f0e299313" + }, + { + "href": "./BC34_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206a37781d5f3d5bba70fd08ea8e15656cd896ae1706ebdad77de6764a3804a05d" + }, + { + "href": "./BC35_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d5045da99dfb74c67768a8a86f9c70876225a8fca2932958b343efe8f4883cc" + }, + { + "href": "./BC35_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220faab63a4f59ef6831e4e0af2973fa8c52c1862b46ae6b3957734ffb1811b0086" + }, + { + "href": "./BC35_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209e67b61e474b5a0a4cded62544120a0def6f52c9c11629df9b1f29c017172e0a" + }, + { + "href": "./BC35_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075a8618aba8fbcdc17532de4c9ecef9bf2ec5dad303d0381bf05c1b0b8ab5c57" + }, + { + "href": "./BC35_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122000a2e462c5eee8a5a4311c7af2299d2f732804d0cc0faa5c799db5affe08d18f" + }, + { + "href": "./BC35_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202fc778eedb0481a93a4c62aba776a1d911e8059f325dd255142745e24acf48e3" + }, + { + "href": "./BC35_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ebcf52f158c3bf990d011c884d6565e33da4888815b483108a5680fd1aeccdac" + }, + { + "href": "./BC35_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ee11ae72ab3a55ad83d3011defca25a85306c917b4946c85d51d46add4161131" + }, + { + "href": "./BC35_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a373de727efe9cd2d4a540e27b65af05e9e507e8a56a452ac6142df578a717e" + }, + { + "href": "./BC35_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122065af9cb7ac568bc24890001df183faaf7aedebb19b0aab53957e5d3af9521f96" + }, + { + "href": "./BC35_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fa6c48678facf730dd3da4c227c831e6f4ac0a8347a87a0ff405147d7368cb8e" + }, + { + "href": "./BC35_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122099db0176e741d35a6bfee08ef37f15010903fa8b72ab50d6ed03410c508d24f8" + }, + { + "href": "./BC35_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220174e90bac1607e2192f48b32c00fc56c50d79ad363e95a91105b431e47de6f61" + }, + { + "href": "./BC35_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122081b1256706bcb033671798d91cf903c4f89b4ed482ecf14ef8a5005c51436a7f" + }, + { + "href": "./BC35_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122055e1edb3dbd9bd7e1b82aa906d341bcf4e97ce1ce486757fd3b089365c188892" + }, + { + "href": "./BC36_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f6fbebee767903aef080b79293834bc9e6371669dee958c9f665b104bbe2a655" + }, + { + "href": "./BC36_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208cfd38647b728477a155118e059f346901fa9fea50f6be41a0a1d21e48348dcb" + }, + { + "href": "./BC36_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f4265bdc2f405560dd78ea56733fdc19d6983aedcf11875792f4c8ae06bf0b4" + }, + { + "href": "./BD34_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6cd8a737137f596918819883da9e532a09b69113bc41bd35201f8ca9d49f148" + }, + { + "href": "./BD34_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4f4e99aee7cf99f1700635e30676625e8ffc49c51375ac88435e09aa9148107" + }, + { + "href": "./BD34_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf262c5d060f96e6daa2157340352797bfc641b5c6e5f5eb86b73ec6c992e11f" + }, + { + "href": "./BD34_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122019d83fe41148b043fb77828165092051f2b2e721ab6433f715e068524c6c34bd" + }, + { + "href": "./BD34_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202caac5856b52cbe43a61e7be6935bf126b36f65191d4e3aabba3e95055600841" + }, + { + "href": "./BD34_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205309b548a9074c0d16f134fec6044bc796180effd2643787a5781924fbea3814" + }, + { + "href": "./BD35_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220489f6f3bfa19c5321d9b6b03ad7ac380e1324fd75e1eda9743f2cebf3b665130" + }, + { + "href": "./BD35_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122048255990d1d620f48e43b95dfe651e668730d26285ae880afa45d14e6f601396" + }, + { + "href": "./BD35_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eefc55576b6e1e9b258e89f9791ee00a49faa4c711616ef99afd377a871d75a3" + }, + { + "href": "./BD35_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207653e8e5f7379f8ef938000b116649395cdfb3e6824dc5f028361ec120fe3571" + }, + { + "href": "./BD35_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122027496cbaee2b306c986e1279838cf67d9e4d1069c8f5d438325fae8a2a14c959" + }, + { + "href": "./BD35_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f84092bc8ac7cf945a0425128ed711202e8b85e5d5ad999358b3953c12a3763e" + }, + { + "href": "./BD35_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a998cb1af4a2a23ad81bd928e48654c94354395d02a97474757260acb858200b" + }, + { + "href": "./BD35_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220463a090ccacfdbd19cdf4fd4707d4bdbabfbf76eda3deae319239916ad6c7bbf" + }, + { + "href": "./BD35_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204cf81b5ab67061d9d21160c05d4650a83000216cba70f0c5c46f3709fbf6ef42" + }, + { + "href": "./BD35_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fc9fc792501b4d21bba8edded48ad4d6752f597b1676f5b28fdf70518b045d35" + }, + { + "href": "./BD35_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205d4c10305bd093f28015c9c208a35627cf084c4d9a02780e2717ba5011707edc" + }, + { + "href": "./BD35_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122052a42364ec30a3500041d012217c0f81cee0179c92243b8cb1f4c47446a8710b" + }, + { + "href": "./BD35_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024b811a18a2993fb19bbe8e222a94e96ec396c91757cb3179802e636a14a43e0" + }, + { + "href": "./BD35_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ab87ebeafbfef47a174cf65f1cc3df4adc26db23e1500ec426f378f38f64be5f" + }, + { + "href": "./BD35_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ffafa337e54c45af5232fa95810969ecad1442931e342512c78d4092626dedd5" + }, + { + "href": "./BD35_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122086ffe89c496aae70c7d14a9ba06367d862afff6145d5e091afc3f27d76a24526" + }, + { + "href": "./BD35_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206cee6047bbe7e754382e38773a200a64f4e6fc49ad49ab526daea368d99d85b4" + }, + { + "href": "./BD35_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200ac49d677a695172561f5afd81040fbee1f282747b7b00dbbe2079fafdc42c07" + }, + { + "href": "./BD35_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a3bc3300b09b30542e216c5582d3852c769473f9721acf41c0fc64b56629ba32" + }, + { + "href": "./BD35_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208d1855a865a18727ec9fe2f3f20312285d781b5b4e7e63d2191238d4ce5d807c" + }, + { + "href": "./BD35_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060f11a7f79653815d7d191b8af278410d000b49d2f1af162807bce33b5453345" + }, + { + "href": "./BD36_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ca22b751799e858df01fa552a07cc67659d182aad52092a19e24e3186f954917" + }, + { + "href": "./BD36_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ddf8efa6968b45131285346a51b702947612fcf0766cee259fd2d45cced550e6" + }, + { + "href": "./BD36_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f7602a437b77105438405a7ccaadef5be8abf500e8bd88bccdb7b7880e3f0800" + }, + { + "href": "./BD36_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d2d37a43297ef1178afbf020b5ff468ab433695305713109efa4503b4d55476" + }, + { + "href": "./BD36_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d2d70c46c15e3176131144180239fd39100b020e237287654e48d9119e99d8b" + }, + { + "href": "./BD36_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9aea93637feb308128e6c5a191d0f9afcc377007a4a6d273a16cb767f12b353" + } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "ongoing", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "created": "2024-10-15T00:20:31Z", + "updated": "2024-10-15T00:20:31Z", + "extent": { + "spatial": { "bbox": [[174.6540045, -37.8985301, 175.9722922, -37.2649909]] }, + "temporal": { "interval": [["2024-01-20T11:00:00Z", "2024-05-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12209ce7f0917eabbf125f7a5d626c12fe3a52503ead68111cefd01ae7e51851206a", + "file:size": 4992 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From e7377118bb87ac06833a0ba27388a31d6bae94bf Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 16 Oct 2024 13:28:18 +1300 Subject: [PATCH 303/309] feat: import Bay of Plenty LiDAR 1m DSM (2024) LI-1545 (#311) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-37.7448932,176.5952930,z8?style=es-bop-dsm-8jmq6-get-location-1326859691flat&tileMatrix=NZTM2000Quad&debug&config=CQr2nXzVjNrEMWF5849pyF7nmpSt8Z2DkiWtPJYK3ocMrfVKXNrPExU7VaCt15ebqN9RkiR9CndzqegYfpqsWrJhF3ugGW6aGnXtMBHYipxcuufLy7zuuNBAYFerz1xgRfZdu5UyMv7haoAx1ZHmiBhTSnqFYmvChgm3c8BtJ7mLrNLKTGso6w75CcvoXckgmxBzymnoAHEtzYkZqbQfZv1y6ZqsQJ9ZJhyACWu) **ODR destination path:** `s3://nz-elevation/bay-of-plenty/bay-of-plenty_2024/dsm_1m/2193/` --- ...A6M14V1Y8FA6DY57VFXDMEX-1728947041287.yaml | 8 + .../dsm_1m/2193/collection.json | 498 ++++++++++++++++++ 2 files changed, 506 insertions(+) create mode 100644 publish-odr-parameters/01JA6M14V1Y8FA6DY57VFXDMEX-1728947041287.yaml create mode 100644 stac/bay-of-plenty/bay-of-plenty_2024/dsm_1m/2193/collection.json diff --git a/publish-odr-parameters/01JA6M14V1Y8FA6DY57VFXDMEX-1728947041287.yaml b/publish-odr-parameters/01JA6M14V1Y8FA6DY57VFXDMEX-1728947041287.yaml new file mode 100644 index 00000000..fadb82af --- /dev/null +++ b/publish-odr-parameters/01JA6M14V1Y8FA6DY57VFXDMEX-1728947041287.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/14-es-bop-dsm-8jmq6/es-bop-dsm-8jmq6-get-location-1326859691flat/", + "target": "s3://nz-elevation/bay-of-plenty/bay-of-plenty_2024/dsm_1m/2193/", + "ticket": "LI-1545", + "copy_option": "--no-clobber", + "region": "bay-of-plenty", + "flatten": "false" +} \ No newline at end of file diff --git a/stac/bay-of-plenty/bay-of-plenty_2024/dsm_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2024/dsm_1m/2193/collection.json new file mode 100644 index 00000000..d51d57a4 --- /dev/null +++ b/stac/bay-of-plenty/bay-of-plenty_2024/dsm_1m/2193/collection.json @@ -0,0 +1,498 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01JA6M14V1Y8FA6DY57VFXDMEX", + "title": "Bay of Plenty LiDAR 1m DSM (2024)", + "description": "Digital Surface Model within the Bay of Plenty region captured in 2024.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./BC36_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a6d4d1aea910414d7fad1a5f1fa745479aaacc9b0d6b5dee8993bcc5ea5ec4e0" + }, + { + "href": "./BC36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073be4aea319790d52058de1da82c2a6384e957a9e6e3ff04535489afad1c574e" + }, + { + "href": "./BC36_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122002c2b029be1f3748d6850f5af5b6de76a48decb247fca697a106367ee8e224ed" + }, + { + "href": "./BC36_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220839dbb1001414be13d4543bb8091197f6b7ab92913e2a335ba8b8d1c37d2e727" + }, + { + "href": "./BC36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202e071027b42615e653bfe6d0f760c10d2c8914347cc224e2014b9af44dcd668a" + }, + { + "href": "./BC36_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122018a3e8bbc15b9139869af6e1053ca88f44b1bd6869f2a8f4ff3fe71fbc837d31" + }, + { + "href": "./BC36_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010d6b6658fe34055aabc5977aab4c9aba7a0a673d830fa8f823aa21a275f9498" + }, + { + "href": "./BC36_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c19d506c012c75c695f0f29027c68a07777bcada9d6472e637d3da32bb08b73b" + }, + { + "href": "./BC36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122085d7f069da88f5b92eb368b8ff3fd4c4dbda4e39d00207d2bbc08feefb97a7d1" + }, + { + "href": "./BC36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c6f1deba9b754edc2e54f064f671c25521f9b8837fa73a40136edc81f598db9" + }, + { + "href": "./BD36_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3ece33dc7483b8b7db33adfab07fc65ca7784f4c56716018d546f0aa3a02625" + }, + { + "href": "./BD36_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220460ea4576986e4988212a29fd38e1927943631637307e9d5db886de58d991a31" + }, + { + "href": "./BD36_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220386a304bb61e7221e33782ff04d36baca7d5e6c684cf750564d2e1e863c55637" + }, + { + "href": "./BD36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f639ba1c7df1c165124bf5f12104912a53c8c58054764685d9eb0f5b7c61035" + }, + { + "href": "./BD36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043e408454f1e67f2ec8fd5ea3b79ee84cd31b9bab3f8aad30e6cb2e28bd3cb7f" + }, + { + "href": "./BD36_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7ff8384c828962d660500ccf9b7bbb7974a48b89e679918cee4afba433238e1" + }, + { + "href": "./BD36_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f27ca6259b9051989d00ac0b2644711a97f78614c4fc0521e6550700115c432" + }, + { + "href": "./BD36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122001c1d6478a170ef21c821277d0c4260bf0a67f3efb066e20de46479f23be831b" + }, + { + "href": "./BD36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203dacfac3b36e5d61da269a227aec248163eb2c904c99366b2b0aa121907292f1" + }, + { + "href": "./BD36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f19dd62560dfd762a8b629b7175dff2a706839f54ad7554023ca4c165a24ec92" + }, + { + "href": "./BD36_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204e492c02878064f0cdc196482202d3bb3b144e39ce85268ed3b1fe59e919bcd0" + }, + { + "href": "./BD36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b1f1157e41cfaaddcc2e303af1db64bbee3adefc46b079f0a78a4c920a64b956" + }, + { + "href": "./BD36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf1e1742bf5f2f4f6ad8f338519bbe32c0785bb9ef8179c1349d0eb7e6eb2a29" + }, + { + "href": "./BD36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122083db95d2f528bc9a64355a2f758a2089cada56414bcf2863b25609f66c4b74b2" + }, + { + "href": "./BD37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c5f71950963bc27889a5eac185f40f70de1cb9b4c91ac67f9d5c904affec01d0" + }, + { + "href": "./BD37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d235d19be388d94fa7d8a0163f5388b8fdd8976eacf09e97cc624f2afe7de772" + }, + { + "href": "./BD37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204e315239fdd7896fa2c048e059feb3b4f17033ec1e39328fdb3bfa2a613f4645" + }, + { + "href": "./BD37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220abf9de964f088d16be44ed0fe43f5e250615e10c4af932441444d4f5b8c0c465" + }, + { + "href": "./BD37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b52fbf441151db3d1a9fa2a970da44d0763be24273922c8d857f5fd9d6a4627d" + }, + { + "href": "./BD37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b522c70893821fb37022b9bc8c7e03ca6e5af1e598448faf6282b935eb4e5b86" + }, + { + "href": "./BD37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220620245cbe5696fcff1f69885460b73583894c3355b4ad4f31c7f81063a862088" + }, + { + "href": "./BD37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205870a6a50628f6e2d24d3c1b996bcef5885e576a7b138403c9a0a5a7840b96fc" + }, + { + "href": "./BD37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122023e1ac5f0c7b0fd4e45f76841e580889781f6588b8c13947aa43cd7ac9b7eb91" + }, + { + "href": "./BD37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d6c96cc5a982a407268398825ca825992ec0b36d878c4403150df3eb797186e7" + }, + { + "href": "./BD37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c0d669c324374c191f00a7072fa9ad00d09a8346734973b3945a046004e2edf9" + }, + { + "href": "./BD37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d1dc543522e9c5d2298d042b3d54581a2d97b3f0108b9a1fc3e091f7ca03776c" + }, + { + "href": "./BD37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203727139409fe572ab8c27cec87cb08907aa397e7129a15e54681a43353311e81" + }, + { + "href": "./BD37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa1d1e506dcbf035f2d730a918d6a31607362d4cfd4c5ed8be3fbe41f26f775a" + }, + { + "href": "./BD38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dccead9f3bf01d1d207b1850e796238f7672ee424a5f31b0b747c1d77b5d43e7" + }, + { + "href": "./BD38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206c3884eef905923e927daff96a52fc1bd062f0de8d4a87c2701987eec1fd6b37" + }, + { + "href": "./BD38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fc922c7d5703ae6ec355207c5dbef69bf98b1baa3d65c814f8246a079accb955" + }, + { + "href": "./BD38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204e1fda3b115531595846a0c3dd71c5365a3bad0ce7c6fdc1ed99ced6b1f7571a" + }, + { + "href": "./BD38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220551a304dc424889f2b4d826757ee94347470b4c57be05684ac06d441eb0bf57f" + }, + { + "href": "./BD38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c526a79a73d4240e2cca2248693e2404399725381848364871230b9c0c938b2e" + }, + { + "href": "./BD38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202138ada1ee0aefa3061adea0ed06d367328c605e426ae59d0696f646703bc9a7" + }, + { + "href": "./BD38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202d319d2ee22308522f795cc511eaa787a5b8062d8ba07f268d937657bfc26dc0" + }, + { + "href": "./BD39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204886014ec34f80d144fa418138e7f2a7e43708459f1401eaeb9f15c2600372c2" + }, + { + "href": "./BE37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204759ec8b330eb7079ccd38e0019567becba2090d56bcef1884424078c6c63d64" + }, + { + "href": "./BE37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208a453bbbf8bb6ddc7566d14dfcda64be469185c9031127b49040f12602f78cbc" + }, + { + "href": "./BE37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208245e6434574689d2b8bfef274e946ec4f8c459bd8326132ea0de0939e347056" + }, + { + "href": "./BE38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122084b11a58caa6df5fd864b6650bdc0462c08a32e4998ec4af5e14f4f9c0648c10" + }, + { + "href": "./BE38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122097e1b7b8734bdb9384f980c8c714f57711a8385d2caf5ee97c1b0b061d3014e7" + }, + { + "href": "./BE38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122063dc6f3b531e345c68f8cce02e551d7b5ea78df0233f167c61c7735a0ba5ab56" + }, + { + "href": "./BE38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220beb98d71923cd1cb64e630fe2538429e56da66b08b034dc1a8e4bc36d5fc715e" + }, + { + "href": "./BE38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e99270e6ca278e872bb9f23c52bfe56218c5fe3956ccf740dc56a739dcdf4b91" + }, + { + "href": "./BE38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209eca4d7b3084db05bc5c33645c187a5caf627a68abaf02d5c3140b80447f1ab9" + }, + { + "href": "./BE38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003a9fb302842a647dc443eb7a160381d57915282ec3d30ed0aa02ff6c17bc9f7" + }, + { + "href": "./BE39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122042671f126f45482f346b3b39852e47f1e30115bf3cb87d5d577ba7ce85ef964e" + }, + { + "href": "./BE39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220afbb30d7dcd795d78c200249e5820a799e404e89c80234efd91ae69df8278b37" + }, + { + "href": "./BE39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b86ea0db5f4e86fedb4f07b054b8c6a6462566154747b36f0a2a1ed931bd4f30" + }, + { + "href": "./BE39_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b3169750f5fbc4be9ef518d4ae20f147a70d6fe8ec2599fc93f6af33c2a8336a" + }, + { + "href": "./BE39_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220daa7ed147bdb4720f5673593c5ef3022cabca3fac9902b046cc0a8547b1a0a81" + }, + { + "href": "./BE39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ab6460178fa149b9478a566131a7c9993d53953c6c459f3a80bcda4ef4cabf5" + }, + { + "href": "./BE39_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207f2287e76971f4bba5442fb80c021b9b8d718321462c1452341ce08d52d3058f" + }, + { + "href": "./BE40_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122008377e9bf6224146dcf7873a58f156641079c81e7a8c31444ab8481bab350040" + }, + { + "href": "./BE40_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220edf83b0360f1e40bb7b76929a9860d875a9f84940606627cecfdbc1be3a5eef7" + }, + { + "href": "./BE40_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f6d5619a7a51b98ba6ad088a3bc94c1d00fb5be13dbb1e50152416651e663a59" + }, + { + "href": "./BE40_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208bd06e134829f1f4c7e93617629c5829d2f6641a83e2db09b1ff5796615d4411" + }, + { + "href": "./BE40_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f8af03a7ffb8a890465352e8ec7906ec66d7a2d0c3e86b787bfd14a8c1de5f8" + }, + { + "href": "./BE40_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122097f1b10e81b40a8aca5d8569264a391ebad67ec8b089d06bc33ada60488ef453" + }, + { + "href": "./BE40_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da3051cf8888d87dbb3d1f124aa257a26134f998bdc74d5ae46232821041918f" + }, + { + "href": "./BE40_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dff15f558a3b3c314f1109a58bc6b19f7222ce68ac60126589823888d92d7920" + }, + { + "href": "./BE40_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc196741e3efcf537fac1537e7b6d0a61fec85189647a6528c0e38cbe55f3580" + }, + { + "href": "./BE40_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b9b2b32efcd80eec6bb03460cae667dbea7b9ad5411ef8e20015aa15ffa59976" + }, + { + "href": "./BE41_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122020b6aba197cf6dc7aa4cf22b2df7ef24e91cf3cc2d1f263f1d35896b4a5be6d9" + }, + { + "href": "./BE41_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122098aeea24ce7e8b0f145e229da4d952209df0c5eaaa81462b1a2603eb1e7f5b11" + } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", + "created": "2024-10-14T23:03:11Z", + "updated": "2024-10-14T23:03:11Z", + "extent": { + "spatial": { "bbox": [[175.8509111, -38.11634, 177.3479462, -37.3721055]] }, + "temporal": { "interval": [["2024-01-31T11:00:00Z", "2024-04-29T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220bd01afb9968b273ad270894ecbda7d2a336a8440644b1c64a5c01c8c17ba2712", + "file:size": 12455 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 5ca03d963970d0243a39baffb5e95edd27493187 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Wed, 16 Oct 2024 13:28:53 +1300 Subject: [PATCH 304/309] feat: import Bay of Plenty LiDAR 1m DEM (2024) LI-1545 (#312) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-37.7448932,176.5952930,z8?style=es-bop-dem-rwctr-get-location-1842088985flat&tileMatrix=NZTM2000Quad&debug&config=CQr2nXzVjNrEMWF5849pyF7nmpSt8Z2DkiWtPJYK3ocMrfVKXNrPExU7VaCt15ebpiLm37zZnZJEaYHjcGcWsuaAdjZYpV1HYCVNGxkJfdjuUcwn4RdcrEZLTHUHLyNbWCfJ3gQtmUWvVcMqhCk11EF3pSZvXM1cuexRsrwaV6J16EKEbnjRZsZKZenpB5Bi65KKJm8Dk9U7zKYEBDBJX9UeELqwzw9Ff2Zwpi5) **ODR destination path:** `s3://nz-elevation/bay-of-plenty/bay-of-plenty_2024/dem_1m/2193/` --- ...A6M14V5JCJRCE5W8KEVX8R3-1728947059959.yaml | 8 + .../dem_1m/2193/collection.json | 498 ++++++++++++++++++ 2 files changed, 506 insertions(+) create mode 100644 publish-odr-parameters/01JA6M14V5JCJRCE5W8KEVX8R3-1728947059959.yaml create mode 100644 stac/bay-of-plenty/bay-of-plenty_2024/dem_1m/2193/collection.json diff --git a/publish-odr-parameters/01JA6M14V5JCJRCE5W8KEVX8R3-1728947059959.yaml b/publish-odr-parameters/01JA6M14V5JCJRCE5W8KEVX8R3-1728947059959.yaml new file mode 100644 index 00000000..354d1895 --- /dev/null +++ b/publish-odr-parameters/01JA6M14V5JCJRCE5W8KEVX8R3-1728947059959.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/14-es-bop-dem-rwctr/es-bop-dem-rwctr-get-location-1842088985flat/", + "target": "s3://nz-elevation/bay-of-plenty/bay-of-plenty_2024/dem_1m/2193/", + "ticket": "LI-1545", + "copy_option": "--no-clobber", + "region": "bay-of-plenty", + "flatten": "false" +} \ No newline at end of file diff --git a/stac/bay-of-plenty/bay-of-plenty_2024/dem_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2024/dem_1m/2193/collection.json new file mode 100644 index 00000000..76d3e01d --- /dev/null +++ b/stac/bay-of-plenty/bay-of-plenty_2024/dem_1m/2193/collection.json @@ -0,0 +1,498 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01JA6M14V5JCJRCE5W8KEVX8R3", + "title": "Bay of Plenty LiDAR 1m DEM (2024)", + "description": "Digital Elevation Model within the Bay of Plenty region captured in 2024.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./BC36_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208227b9323d2b84a0fb0aa1dd68963fd470fbf4ac94153d132915fb9fd49aa63d" + }, + { + "href": "./BC36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dfb617470a5f33e470d418f960b5133adedc271fcff8a65e18154339558967c1" + }, + { + "href": "./BC36_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200c95e0f64422994315376092d85f47fc26afc1212963afed009da1cf87a36c22" + }, + { + "href": "./BC36_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208ee947d50909372277f11225bc93c3336ecc391891568a6377cfe82d7eb1af2e" + }, + { + "href": "./BC36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d4377deadaf6c1ec61be8e9b2c5fd131bf1a3873aeac6fb0cfcb72953367eca2" + }, + { + "href": "./BC36_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205523e61f46d68ce77bb60247b1d6f1070871a9b9a704da823278e69601d228d8" + }, + { + "href": "./BC36_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207db5457ff63b72c454db59e6984fa82d5f71a3e658d376c6802e8356adebfa57" + }, + { + "href": "./BC36_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122052b158e56e611596cf427ca4b3da1231624ccd0a2ca2d88e8873bec61e9f0df0" + }, + { + "href": "./BC36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122098487399d9b5c8c05a3537aa186dd1b3afc73c47c815393ecc1570bee5907e7e" + }, + { + "href": "./BC36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122040fe87ea6d1d6f68735a4b3dd360bae21eb416350214d9ccfede5f88313d841a" + }, + { + "href": "./BD36_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dcb0ace0c30a7ddb679a88dff7e71ad58271f940a3523de3c5e0b06a3d54accb" + }, + { + "href": "./BD36_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e624734d49371961bd30cec358307176fd2296bd992b5680aa23b033adef05ca" + }, + { + "href": "./BD36_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a3036f876d0fd7db518829b6a67b05ec0423f9f4753ad7065f8679b9e07bda48" + }, + { + "href": "./BD36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f82f909682a29687a33f201673e4e84f8b60e104f768718cd0c5c0ecaa0a3f4" + }, + { + "href": "./BD36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a6fce3d75767ced792f54ab053411f89c5d89df1ce17d098e57ee0bfcf35cfd3" + }, + { + "href": "./BD36_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203bbf4e48d938f2613695c1f1492335d11fa7b3ca347ddf07920abcaa475811f4" + }, + { + "href": "./BD36_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b4c665f5e02755553bb64a3acd0bcb20b32a2fd41cfbc0e0e3298bdaaf0ffec6" + }, + { + "href": "./BD36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122004982faa1f74a2c3936e41d8bf8c31f6001929b863af72f66ec4e3f80967843d" + }, + { + "href": "./BD36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5b1508eb0aa322ae4e6c449ef702f312d4192c9f4acb9b1759c0a92836534f5" + }, + { + "href": "./BD36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209ebb2c17abfc43593b894375b881dac2173365557e8d3de406faaf6eed33323a" + }, + { + "href": "./BD36_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208ad3922af948516925d54d2b7ceb947a9107bf171fa1f8104490e3c9096b2b40" + }, + { + "href": "./BD36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205b3f76877b9762745ee519fb0da33faeea89317479c96e043c272c769785105c" + }, + { + "href": "./BD36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c87b290e9d54ae1d28be9c469a5dff72d61f010e807be2c14d4f7dc63658b746" + }, + { + "href": "./BD36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d78cc94fedb8b869bcfd0caa60386ae83d48bfed7881b85964a3ed0452f7fa2c" + }, + { + "href": "./BD37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f6cb515f4bc125cbf691cafc3bfe91d3e0e74bdf3207c6486a14ec73f627e398" + }, + { + "href": "./BD37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc10a052ae0661c14a9c4b0c09309ff286ed399f96d5a1ef169fdeca741ac69b" + }, + { + "href": "./BD37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f6104a588d10c628e70e9d65f8a39b105e078d8c678c7794dc1e44420103a2f" + }, + { + "href": "./BD37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122014e86ce7a38a04945f666c21c7daabd72e491f8fc4b4088d672e8878db711a4d" + }, + { + "href": "./BD37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220067247154802bda4ee001bd7df9e91913508fd8e15568839e19b7032c2963d5e" + }, + { + "href": "./BD37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205d08dcb05125b0deeb7eb2ef7563dafe7226efa5e850a6d8d4c2eda05cb3d9b1" + }, + { + "href": "./BD37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fbbdc4a61c70916f2667e5381d2af0bee1969309781c42767b7646dbc2088990" + }, + { + "href": "./BD37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122009ec2294768b52aca348938d0889277197892393acccc2b8dd139dae9ccecd9c" + }, + { + "href": "./BD37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220addaac8668d8da77fe4441fa8f0eb0b1b30ef6c89eae2d397da2a1c49b44b22b" + }, + { + "href": "./BD37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220acd850a156f4ba379ebb0b57a37c16754c99cf226c88df2b3186f0b1e51da5d7" + }, + { + "href": "./BD37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207bcc39f297d806c0200498236ad1eb6d43af9346bc8a3178294651daccdac137" + }, + { + "href": "./BD37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f38cafdaa3ed9d91f36204354dc3a0d45dfc8fc91684871bfc934f4aa9453b2" + }, + { + "href": "./BD37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207dbd48f13d0a8d343351a0e808011422babcbac491a2542fb0666bd144982f12" + }, + { + "href": "./BD37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd752a69d8da9e3fcee4e4ca07baefc63e857893e55a52e75b5ccf39e15ceea7" + }, + { + "href": "./BD38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204752e5e2a1f3f4b0581729eda24fc31fee841eb928bf3b86163795964ffa88fd" + }, + { + "href": "./BD38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220134f3cbd3c55012cba672d277ba49326feae43675d3a354ec02ab09f13d8e980" + }, + { + "href": "./BD38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bc18d9bf6539375fe7269f8883a5d027507ea90f35f68b576ffdddc2324f5954" + }, + { + "href": "./BD38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122086b27052c645208f912dc6b8593521e2aed3f418b9e30b4649786d7098f43351" + }, + { + "href": "./BD38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122001a10412b9070ad913597e5f9cf6b5eada0f53c1fa3ebdd78fe87aad0621396b" + }, + { + "href": "./BD38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a56865d3a0c552ae841c6c1327d16dee9bdc0b9014e42abefb456e1341f52194" + }, + { + "href": "./BD38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204205da49bf1f17f81d6462bf9b45a844c65e9b344bc50c4d44bc59b3df0f5cd8" + }, + { + "href": "./BD38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122004375dd3059f48d2f97fb40c196ffb18d203df202d16d8ca1d190f763d5c6c51" + }, + { + "href": "./BD39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220763c9c71e79b6c586e85864983c4fb61833e2bca69b541b5ba6294bc91a2c197" + }, + { + "href": "./BE37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4b2a6e5636b6655776ab372180c5ecbc33587635cab90cc4f6a88bea5f1952b" + }, + { + "href": "./BE37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220796692f7177455128eba611e0daa9fa2462dcae4840847eb459191f1452a002e" + }, + { + "href": "./BE37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa4937335e98d570a6f4df4e4e0b4b8dc1be07bb1f0c0633fa93d3e63b4216cf" + }, + { + "href": "./BE38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203a543571d4018460af07550b8cb6b2b6f719c87c080f1e6fee9c396bc8bf2c3e" + }, + { + "href": "./BE38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220296d5bdeb96c0a4afec6102fe1b20e14f10fdbf25d5a78f97e491d227588606c" + }, + { + "href": "./BE38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220306401bc09c77c0f28b765ac3ad01591415c5a66b69d0bf430b65b9269e5835f" + }, + { + "href": "./BE38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b61024627b805397b7018ad6c6440321d7f2c0e67cef962a30ba4ed91375523" + }, + { + "href": "./BE38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003bb564f6cdd40138c7deddc4c0156bf8cdff7ede1c4acebf68c309c29a22cab" + }, + { + "href": "./BE38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220068ed845b114973566dc92a60e8d0611b1ee8ec25d1fa1b3f143c646b0da2967" + }, + { + "href": "./BE38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220edb18e7fb0c3d01c09d35eb90de91d6efab071c25b16d62a0cea75942a35a77b" + }, + { + "href": "./BE39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203de6d065d2a14ab7dddf241c6ed29ffdbf8d1d3f8a3c873708afac75a9ad5859" + }, + { + "href": "./BE39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122070c72b5f6d4369a27042abf1e3973bd8f3b8535849a3b5ad1a327152d2432ac9" + }, + { + "href": "./BE39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024d5cff6f54d8b8f23ebd1a6dc7bc14a676caecf73f1fcfad90d8e713d38bab3" + }, + { + "href": "./BE39_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b2fca4e56009e6e09e5a7fe2203a283eeaa8614a5f7efa593bd2c1973b710f2d" + }, + { + "href": "./BE39_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b40b893e7f10b543f002f21c0332bea47a319ffeb8af06ac0cbf8db32e810056" + }, + { + "href": "./BE39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ae1231af5ce1c3694dc69f124728ac8761ff7fca049f2daa208476fdd8445560" + }, + { + "href": "./BE39_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122095b0a1dd0759ff51131f32df8bf3a6d7fe67f6a92c4880634139cf222d61857f" + }, + { + "href": "./BE40_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206ca03cdf8a26ee0abbee9ae8210bde6f4524edb24b7d15b512fbfa04e8558199" + }, + { + "href": "./BE40_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220702735ac35e6d57109914ddb33b84266ca4779800c7841d30345c74f6ea2aa21" + }, + { + "href": "./BE40_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a6f1562d177dada9c982510dc3deef3b2bb6d2de3a41bcad73d5efdce38dcfb" + }, + { + "href": "./BE40_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e1924f32c870bd000f439742a7c50484940c6eeee872143f88da6aeecf71c23d" + }, + { + "href": "./BE40_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205771d2630bf00ed22e0f409f04bc5844369f117ffdc163ada8c9129531bbd6c2" + }, + { + "href": "./BE40_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d5aa4f8d55e814889a193ae17957e0c9c9fa3990f04e64c306eeeb20b9e690e" + }, + { + "href": "./BE40_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c9feaee9e87ffc4ceadd5acd71a3cfaa907a6dada5e366fc1d07aaafb462359" + }, + { + "href": "./BE40_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203737ace27f96f66a647e8da1d2d78ab2769a225db09c26544c84c571fd83ef60" + }, + { + "href": "./BE40_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204cd6f5fb3da1c1c114954cc33797af5db7c37aab991d7774b8a613fda15c5e45" + }, + { + "href": "./BE40_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220565e70790713853485fb455f442d745dcf6d62e6aef70f4024e8fb30388ec851" + }, + { + "href": "./BE41_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e69e6824745b191cfb99fc2f4adad6ccab4539599098ffe9e0c206064b97b157" + }, + { + "href": "./BE41_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a02dcb0508271a13366a6250a4df73c9277b701b5fbc19ff49a5a9f4f3ff94d1" + } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", + "created": "2024-10-14T23:03:42Z", + "updated": "2024-10-14T23:03:42Z", + "extent": { + "spatial": { "bbox": [[175.8509111, -38.11634, 177.3479462, -37.3721055]] }, + "temporal": { "interval": [["2024-01-31T11:00:00Z", "2024-04-29T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220bd01afb9968b273ad270894ecbda7d2a336a8440644b1c64a5c01c8c17ba2712", + "file:size": 12455 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From b3d85a8b9ab91038a7d4d1110679dd8bb7b5ab0c Mon Sep 17 00:00:00 2001 From: Victor Engmark Date: Thu, 17 Oct 2024 13:43:32 +1300 Subject: [PATCH 305/309] docs: Why GeoJSONs are not compressed TDE-1263 (#306) ### Motivation Explain to end users why GeoJSON files are not compressed in our public buckets. ### Modifications Add file with documentation ### Verification N/A --- docs/GeoJSON-compression.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 docs/GeoJSON-compression.md diff --git a/docs/GeoJSON-compression.md b/docs/GeoJSON-compression.md new file mode 100644 index 00000000..d1f085e8 --- /dev/null +++ b/docs/GeoJSON-compression.md @@ -0,0 +1,23 @@ +# GeoJSON compression + +## Summary + +Toitū Te Whenua has decided to store all metadata _uncompressed,_ including GeoJSON. + +## Arguments + +Pro compression: + +- Saves money on storage +- Saves time and money on transfer of data +- Metadata files are highly compressible, since they have a lot of text strings and repetition + +Contra compression: + +- Some tools do not seamlessly decompress files + - [AWS CLI issue](https://github.com/aws/aws-cli/issues/6765) + - [boto3 issue](https://github.com/boto/botocore/issues/1255) +- Any files on S3 "[smaller than 128 KB](https://aws.amazon.com/s3/pricing/)" (presumably actually 128 KiB) are treated as being 128 KB for pricing purposes, so there would be no price gain from compressing any files which are smaller than this +- The extra development time to deal with compressing and decompressing JSON files larger than 128 KB would not offset the savings: + - We can get the sizes of JSON files by running `aws s3api list-objects-v2 --bucket=nz-elevation --no-sign-request --query="Contents[?ends_with(Key, 'json')].Size"` and `aws s3api list-objects-v2 --bucket=nz-imagery --no-sign-request --query="Contents[?ends_with(Key, 'json')].Size"` + - Summing up the sizes of files larger than 128 KB we get a total of only _33 MB_ at time of writing From cf1cb937c969e3bc57bd52f9b950ecf7523834d6 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 13:49:14 +1300 Subject: [PATCH 306/309] feat: import Hawke's Bay LiDAR 1m DSM (2023-2024) - Draft LI-1538 (#316) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-39.6106510,177.0532967,z8?style=es-hawkesbay-dsm-cvrhq-get-location-222380769flat&tileMatrix=NZTM2000Quad&debug&config=DVPzG3UESFRRo7fnBBVCvfQXpQHcHtusThuWAu5NgEf3cwMmL5oqg8rVervW5RPUt1sqwKkrQQBLQR3vH7TizF7iTbEXeKriypd7WfWeYz96i5VcRR4K7gFZmpL5yzZ8A56V5m5Ygfpec4jTpE58RDTG9h4125sHUVGME2LeFVexNJFppjtVJEvQATRX77vigRSAvaeSQydbkmNmpqZKcgTMPiqn93eFSAJFBW35PXqhsV4X6UxEUZ) **ODR destination path:** `s3://nz-elevation/hawkes-bay/hawkes-bay_2023-2024/dsm_1m/2193/` --- ...YCKM9WF7ZWQ4DPCFFCF8H40-1729469054672.yaml | 8 + .../dsm_1m/2193/collection.json | 2395 +++++++++++++++++ 2 files changed, 2403 insertions(+) create mode 100644 publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1729469054672.yaml create mode 100644 stac/hawkes-bay/hawkes-bay_2023-2024/dsm_1m/2193/collection.json diff --git a/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1729469054672.yaml b/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1729469054672.yaml new file mode 100644 index 00000000..24d63142 --- /dev/null +++ b/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1729469054672.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/20-es-hawkesbay-dsm-cvrhq/es-hawkesbay-dsm-cvrhq-get-location-222380769flat/", + "target": "s3://nz-elevation/hawkes-bay/hawkes-bay_2023-2024/dsm_1m/2193/", + "ticket": "LI-1538", + "copy_option": "--force", + "region": "hawkes-bay", + "flatten": "false" +} \ No newline at end of file diff --git a/stac/hawkes-bay/hawkes-bay_2023-2024/dsm_1m/2193/collection.json b/stac/hawkes-bay/hawkes-bay_2023-2024/dsm_1m/2193/collection.json new file mode 100644 index 00000000..5e235402 --- /dev/null +++ b/stac/hawkes-bay/hawkes-bay_2023-2024/dsm_1m/2193/collection.json @@ -0,0 +1,2395 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HYCKM9WF7ZWQ4DPCFFCF8H40", + "title": "Hawke's Bay LiDAR 1m DSM (2023-2024) - Draft", + "description": "Digital Surface Model within the Hawke's Bay region captured in 2023-2024.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./BG41_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3047cd25732854a5f3b64dcb5edb8dff94764b0aed2ec56ef006fee7b00b990" + }, + { + "href": "./BG41_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b68819f6dbf49d48b5b2dd3baef678236bc167b43e71989021a1c8fb034fe7bd" + }, + { + "href": "./BG41_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201414c7dccc7c28cb88572ad2252725cf0d40f6468c8f13fb5c84dc0640036759" + }, + { + "href": "./BG41_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203b7a151a8193f841fe98c48dbc238c428e6a2b2c85cc44b2186e0dfc709b2e9b" + }, + { + "href": "./BG42_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122077a5b4cebddde0519b429edcb9188a97e90504f85c101f6be20242208dacd71b" + }, + { + "href": "./BH36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c65a07b083f9ca6c367966ec5e6ed9da5a7573353d0570d3f143a47a8b6ae8b9" + }, + { + "href": "./BH36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fc1c15f9bb5b1148d1ecdb0116a482403cd5d4c0c730a82d1429c7cf148373bc" + }, + { + "href": "./BH36_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cea35799915eb88a7b5a249a0e9fcf706ecbe18697190cab8350fa0626672bc4" + }, + { + "href": "./BH36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ac6449d26e660ffb5591ce2cc9538655f96eee68d061c8c2275eac27661603de" + }, + { + "href": "./BH36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207e06f81078d514c960d66dc0d075c6417b3525cca60e91a57569134a500fd620" + }, + { + "href": "./BH37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cdb5345700b4825ce245351060724059086a534e7da543e9cb5301c2feb1ea64" + }, + { + "href": "./BH37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200f704112aff5bb77ef081034113927dca79ce2e1ed3f72ef81104f02654c27f1" + }, + { + "href": "./BH38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220736a83f51ebd31bf94032c3953de306e93998a82b414561521b7426d57992b3b" + }, + { + "href": "./BH38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4edaefa7908c8558203bc43f1f2bb1fb5f4827ef84356b8579cce2d693590e3" + }, + { + "href": "./BH38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043bd5cc7d31232351dfe68e1438ff4481ac65069e44cae7dc1727c7e76aaaea5" + }, + { + "href": "./BH38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122035d1e43df9bee48858c42804350d05fd8d52160682d1c3d5f22ff5105a9d5d91" + }, + { + "href": "./BH38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208530ba714e9558766f149ca0b7cbd2bbea497a13544916f72300d1fc42dc6eaa" + }, + { + "href": "./BH38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a07774f005429f166aa1e6fadb076bfd9ff225a5612911efc999eccbc3a075f6" + }, + { + "href": "./BH38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208f10498dff310deb5e4e49470f83c26864badac64c073f806a4c93e40e659f37" + }, + { + "href": "./BH38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122008c39ca55528a8b89265ffce1bd69555394445d568008e9302f56ea5668b7e71" + }, + { + "href": "./BH39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204985c394ecadb409d5eef554091bb611421809774f587cd61cc38c12a508bb74" + }, + { + "href": "./BH39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122033b698271030d9a5170072b5cd2018e1289bc8ce257528a6c3b737f2f1e05065" + }, + { + "href": "./BH39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202832585dd3d3c02e16c2d0381af22009d561bb5f2255652a0e757fb3aeee3003" + }, + { + "href": "./BH39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f0db838489d4d077fc91dde466f846ba96ec41f62b2af079547d730448ec57e8" + }, + { + "href": "./BH39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fb67c81468133ac7765111fa1539993227f9c786deb2fa6508e990669d26a9a" + }, + { + "href": "./BH39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024c454629ad6479dbe2db2e146ff52f51559bb70877a931a7d1ab66208f9ea1f" + }, + { + "href": "./BH39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122056523fc3e0f69d775ce34cac4aa116889d94291be859bb780f1a4fc99e03c724" + }, + { + "href": "./BH39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cb07efb799050ef9a47331a1f05b00cee051d134b4813f35adc5a2c9bae970ac" + }, + { + "href": "./BH39_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205cda6ecf5f7c7118aef3efd317d079f2b30cc36b8b664e95ce13ffa52e526fd2" + }, + { + "href": "./BH39_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122040df70a66d2d49556f8aa90af1443b52b05e36ad109c3a3f568a51af352ac267" + }, + { + "href": "./BH39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da6cf7ebfc31068775976093239485def3f30a1e57af285f939f8f953d0b904e" + }, + { + "href": "./BH39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064c030a37172a7ce63f72432beedd86683fc764b2737cf6417d87cefcbec9910" + }, + { + "href": "./BH39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d3a0e79f2da911c7b2ad4e5b734b2b9e0e3204346efc47d49ab6dc53499ef28e" + }, + { + "href": "./BH39_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122006c891df905edee154dcd9e16373658d31e8adc16e773792c15f9c15df006df6" + }, + { + "href": "./BH39_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205c0d232bc3486d0ab985b8ef945cab89359f2e0b1713462941e0942e0c00443b" + }, + { + "href": "./BH40_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f25ccbcc1361e8c59b2ef53c00a905ecd69463a7b3ce7ace191fb83a2e634a46" + }, + { + "href": "./BH40_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122098fd279f901502f84ff2270dcddf6da2041dfdab11764ed0810097e91e03c4be" + }, + { + "href": "./BH40_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d3242c11e3ab429588c1a6390508ed04b473bc1a380ed256ad023411ddb67b7" + }, + { + "href": "./BH40_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eeb04a8a84cf3fc2fc15a55e69f1094994c78102b4727872223ef96495806db6" + }, + { + "href": "./BH40_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d82daf184d71cafe81a249fe5675e4621fc1c15962ae6ccb97cfcac7f6367444" + }, + { + "href": "./BH40_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b26d24c50fc52eec7c63a9584904eabe83a972b818d2a5601c2ba60703e69ae1" + }, + { + "href": "./BH40_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122084f75c5d2a1c8111a2281962cdca198482066acd8eb5a09c27d5898f6624b54d" + }, + { + "href": "./BH40_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205dd07cc96da1cb1afb61a5f261786bf19c295da507b11b55f86b1a846c7aeeff" + }, + { + "href": "./BH40_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122095c44227d06e6006e70df34bf9d0f5a072c7fc87c394605c6ddc6d9da8181773" + }, + { + "href": "./BH40_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209629bd42c4547ba432adf1fc84745b414f566600daf9720959de24aa38025ba9" + }, + { + "href": "./BH40_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d7b552cfa80eb1884e800b220156c382f70db5337447b4d5ec93fadc15680253" + }, + { + "href": "./BH40_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220308e99f0aebcc19ff4e408575ffe03607d174b5fb39eeb33010b369c975977d3" + }, + { + "href": "./BH40_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bbe348329be838569b4a34c2577444893cd9c0ce22e681d481ab06bb429ce197" + }, + { + "href": "./BH40_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cc10c24dc5a2c49f91f9654b684ed7fa9fc0e91a573752f5543f3cd93dbe1606" + }, + { + "href": "./BH40_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220792b41270c7aed8dc707f405dd2ca1b5431b9e99f8eef76c971c63510a512830" + }, + { + "href": "./BH40_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c4edb3ef02ebef97937bc72ed6b6df85cb8b090601e52287ebeac9f0bb63c63" + }, + { + "href": "./BH40_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f55284b66c50d95f927a335f05ddf9698336f24aecd3270ce05159335a7c97f" + }, + { + "href": "./BH40_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201de663990582ac517963487072d3f8b9dc80a173b4408d2d90a55610203445db" + }, + { + "href": "./BH40_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c74d747372a76567828e2a97bc1555a48a76702c601253f8cb7fcd3b0e9bbeb7" + }, + { + "href": "./BH40_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d83182155ad35f4bf2021bfad94aff1d552cb0dbe0f69bddbd6d056597b64562" + }, + { + "href": "./BH40_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122077634f6d5b6a49e25b1ff1dcbf50c36a2ebd9103ec0dbd1f7667c34f80f46e78" + }, + { + "href": "./BH40_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122057c270594ae2faf3910b77eb0de46c067024a11adc2f2c450238056d2370d268" + }, + { + "href": "./BH41_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220802c9fed30ceb73a333d2ff08401d85e832fcd7d88fc449c05d2b00e103e6087" + }, + { + "href": "./BH41_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204fdcad9c1a6bcd175cebee78c8771d29967fe670453735a5b1cbcf2d58b9f50c" + }, + { + "href": "./BH41_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205b9703d687e03c80cbb786fdfb829a1ae1bf81a23fbfd847fb9769ebb165c164" + }, + { + "href": "./BH41_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220104985b90293c60ed7113e3638b74a8a136c255c7af8716106ca45d08c4f5397" + }, + { + "href": "./BH41_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bbf8c9d8da0e1cd5481d2c8be1ee0f98d03f29ddab3a4fed132a66d277a2444e" + }, + { + "href": "./BH41_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220076dae2e84ef0ab8368ac62960ba809a712085cf7726406d55980ffc0a14d9c7" + }, + { + "href": "./BH41_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e78f7f70f025a8f8be815681fc7a8d2bc8aeda331b5ae700283d3ecf3211259" + }, + { + "href": "./BH41_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220379242f521e6824555ae1caa2b3a971eef1d6864d9c11f58300bf493d22c6064" + }, + { + "href": "./BH41_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206cba026fa4edc32d0ea2fbe4390165e81750c26bb4eea64cb2d8591b560ea2ba" + }, + { + "href": "./BH41_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cdaa4845b97667ff6ea10bdd3bc2fb4d963e0a9f70afe479d350863f65a2b8c8" + }, + { + "href": "./BH41_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c1873e00874354bd9d6ab3748b795347dc8d4f083a27356bf48ef99625715a0f" + }, + { + "href": "./BH41_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206e9d1a766e93c461d1fe76fc952ff3daf159f898b915ae456e149739be3fc176" + }, + { + "href": "./BH41_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ca3d5f72f10be86347d63cbd89a8ee2d363667c4c1078885d07c99cae843d99d" + }, + { + "href": "./BH41_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200b15a5e429bd7d562f9e9770e49d5312cc077b153c698d0c5171b7091da70417" + }, + { + "href": "./BH41_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075dd79f62dadb3354ecfa23f3c345df883a9f2e9b6450ede2d4fca0981f123c4" + }, + { + "href": "./BH41_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122013557598e31f149852845a34b1acd5e46b01f7a1dee46de3707563a41eda779e" + }, + { + "href": "./BH41_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a86aed5ec2d8e86ba64c05b0f21a782acaf6291942ed1243aa5704d7bb4fae8" + }, + { + "href": "./BH41_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206835de1589ba48d2be7b1aaa354eacb3c8526e34f1283fa37aa97beb06798447" + }, + { + "href": "./BH41_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a08abdfc8b5b1bd4e9cd1c7258a92d8e4cb2ebf97b2dd7f1e2fb70793d31bcde" + }, + { + "href": "./BH41_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a686242c675242bcd4b933bfb81b8e195c0196874553b0b0cce59787cce7fe5d" + }, + { + "href": "./BH41_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c8c1a8404d08b7362ac4d12a02084dab750c243414c3923e1f374d50c77ed13" + }, + { + "href": "./BH42_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200f8b3e4d46fb23c7dad0ff0105c3d15686128fa3b7d06a5506e10a8ea4c7f7eb" + }, + { + "href": "./BH42_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f6dd812782baf3435a8fe83b84766d99887bf420506808a26131bd4bf87b2557" + }, + { + "href": "./BH42_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205522b1eb5cbd6c84bf50f58553223ac9cad004c7e2c267ee485ce089f18d5b4c" + }, + { + "href": "./BH42_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e47785338f41eb9ce9358e44d43602379800b60f398354c6cb08db4a3c050468" + }, + { + "href": "./BH42_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220027d2362c5094f362d282b64fbf4bfd5418de21ff86c7e1074642b7d5229a104" + }, + { + "href": "./BH42_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122098e88fae1cea45fd6c1282bce2226141db09a0755310939178ddd41509319874" + }, + { + "href": "./BH42_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208366f30a82356c8b3f6f62ada686a9b9bfce4465fa088754c5f4520641604109" + }, + { + "href": "./BH42_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dfaba705b92d1761803c8007cad5692fc71fcf946a45d41fcfb080c61e9cf516" + }, + { + "href": "./BH42_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220807d262b73af80fcdaf481c7dc037942213a93fd62fac94b625d9758725c8ce6" + }, + { + "href": "./BH42_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122041a7933c0cda867d469946f567bfd61aa16d07151b66ea8e7529e18a6e096359" + }, + { + "href": "./BH42_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208a8c46dea28f7d8c33a545f53cb636a9828eb2a7cde7ef54e6e34a10f51b6da9" + }, + { + "href": "./BH42_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b275839b6ecf6f72e6e4e5d989cad1ec21268dbd518f15464c6f444f285ddc07" + }, + { + "href": "./BH42_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209cd68c132c69ea5def138e2348826d058557406d88862edca59396831401f925" + }, + { + "href": "./BH42_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cd2d1ad8f641b711b15767983bdeee44e1d94ca7fdb65166e85ccf6273bfc721" + }, + { + "href": "./BH42_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e32bbd9a5dfb693d4d58c681b1c36e724b35ebe0b29e88b72f96b5f64a854118" + }, + { + "href": "./BH42_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a80b1fd1c226f1035ad000e953b040c65ef1a807f59f07e9bfe1bae0fc4a4ff" + }, + { + "href": "./BH42_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122089581c8bb668d7899f27e5bf062ddc254ddbd52f5d8c56c07a49a6edac10ad0a" + }, + { + "href": "./BH42_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220219aa62cae974d711f7dde98d108d817798114da8198e8b2afdbdb9396e0d71c" + }, + { + "href": "./BH42_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203ae2c3281e6a5bd1c4df9fb79426d622ac17038fb916f578f06d657f7d770edb" + }, + { + "href": "./BH43_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220db4acb35d4e41d1d739f3b129bfe63965172944f89b7d734f7a4dbe6b25e7d5d" + }, + { + "href": "./BH43_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203cf041115087c4f864ed298d78e6e973f1cafc8f0fc6b0223afbca72e58ffc52" + }, + { + "href": "./BH43_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122096fd2bbd72d54ad43cc64e15328edf19285e52724f8defd309919ff6511e044c" + }, + { + "href": "./BH43_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208bdff37e6de78878fbb0f1b384c8a10869cdea02f90c303231ecb8db4c8d1aa5" + }, + { + "href": "./BH43_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4a1171b2408da227e608028674822016d2f0deef8403cdcd82ca981b91adf6c" + }, + { + "href": "./BH43_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fbcaf2288a244cefc9f48a663e51193519683ad6df964ea37b29bff5ee67892b" + }, + { + "href": "./BJ36_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204fde4d2861370adaf8b7894d4006298a53f8186d192fa7a73f83984f91c52fd8" + }, + { + "href": "./BJ36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa5420b939837d413712db68b6472c959850bcf2a8d626b791149d8f91742379" + }, + { + "href": "./BJ36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7d25da025071c59ed1015d995687965563fe8d837661ed36dabe3ba0b0ce23d" + }, + { + "href": "./BJ36_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043a375209dc5b4e9c5ec360ade50276855028c84fa6fdfcf493a5326f4e3ded3" + }, + { + "href": "./BJ36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb4cde02188a098707280c87ff008c63d15e4c3c79f9e949db56eacaf7b78e9e" + }, + { + "href": "./BJ36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204dd20a2f8e55eed183700fe0de50d8df7de7a5006444c89b279ded3992fcda8c" + }, + { + "href": "./BJ36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122082af0093aab856a3f1af4c0c86d5eb50c41b799d46bfa737c7513d5eb6b40175" + }, + { + "href": "./BJ36_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e2d3195868e5e80f71bd66f96f37e7b69cb87b6769638121d04d859ce943db0d" + }, + { + "href": "./BJ36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207e01b164118fbd345a06538aae6f795ecb259c8e5cc85a9420b3f25ae9953444" + }, + { + "href": "./BJ36_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f7717a46c2e26730e8d2251f9d82f861e3812fd7173e6193e1154eda5be5b7bd" + }, + { + "href": "./BJ36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201ed3042c134b9220897b819bb16533e2b40abc0cb933ec06e44c380365615ed8" + }, + { + "href": "./BJ36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d0405e8a508778fabdb4e51106cef99810c21894dfe3d01d09fb155527e17f2" + }, + { + "href": "./BJ36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dfd1d776f966e8fe512af324f1f0d8920c685ec7d69c979775c2610abaeb6acc" + }, + { + "href": "./BJ36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eddbc20a84d4bc071d938f49cb3a1816e47fa2d59d7ff2fb190e3cc98a544e0d" + }, + { + "href": "./BJ37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220329db4d86ddfd2b165184a48b28531cea2c0a04b805e48cb3ea977c1633c9d51" + }, + { + "href": "./BJ37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220395f67223cd69ab73260f39e4ad30c5e0ef0ca0172cc20ebf6c87143bdb5aeb5" + }, + { + "href": "./BJ37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206ec0458e10958341d4dbbb42b2aebfb7458a3d9e1ab9a608c1b4fb4c1d700de2" + }, + { + "href": "./BJ37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122031a3e4947d1cf45586229b08d2e698a1a0cb9471922725e80ab81626f2140b51" + }, + { + "href": "./BJ37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206a1fa12738b9aea2fc109076eca03941991796508e18ec2994f206840192f75b" + }, + { + "href": "./BJ37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206c6eaf596cbdb10f273088d22e0585b510e8c3d2c34db336e9fde9a4fbc9164c" + }, + { + "href": "./BJ37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030fbea9e6408a19d85a49d57985b086a119c5c0dc9cff42c8f726bed6ca21509" + }, + { + "href": "./BJ37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9394e7b4c35bd27eb103c360861c82ef3dacf9203d4a3354aa5cd030682e052" + }, + { + "href": "./BJ37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122027754c74f66634487a6f17dfa777cc38010d027c56910290d9291f640ace205c" + }, + { + "href": "./BJ37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bad3049b04014ebc7fe237e3167514913019edb89230ed0529be7ae4b82a3305" + }, + { + "href": "./BJ37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b59e07f8642e14117e154cd5c8bdd18e03f7bac09565d1e8f779883bb6502560" + }, + { + "href": "./BJ37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a518d7c96f0cb52f619bcfb1aebd703538a87529aaa077b1f28811507685caf0" + }, + { + "href": "./BJ37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205492770ca2ad9ca622d913decadbf1048cbc19f2fe1a87c5c63330a4e9492e90" + }, + { + "href": "./BJ37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200bae6982ae88ce9128d8c51ac5fbebb70a19131e78a8ea789ee184b92fca1c9d" + }, + { + "href": "./BJ37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209b207c4085ffe3178f3ba5f7d1064b89f67073fd49051655923ffd03d1977543" + }, + { + "href": "./BJ37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207747a57523bd0bdd7f3a852786f7618c5deb421f04c738a59726bad4fcbac76e" + }, + { + "href": "./BJ37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c522b056145aa88de9540b3163498f11811cee64fae39950a258dce30cef0690" + }, + { + "href": "./BJ37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220027eef706ba54a1b4bcaffa84160d2a0c1c0b64459d3bdf215a19e02bc315b0f" + }, + { + "href": "./BJ37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122044eb9a8ef8dc6f1d3a7c91a18200c69b7e639fbc592b75dd345c86d3b0fc28c1" + }, + { + "href": "./BJ37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be8f72c7b504b820b11eb267a62e1c179fc629e55cb2563bf48de7558a4cf723" + }, + { + "href": "./BJ37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203fed032340160cc4a9028b727e3527d71b74d7fd1470c1b1ebcdbaa456e7825a" + }, + { + "href": "./BJ37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f99cfc8e6871a4fab9454207be712a4408b51cc8ed3bc0250eee05256a914ff7" + }, + { + "href": "./BJ37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec2a591e2c1f3ea5e8addd4895ea5f5e9d29986f1b30df87db87820520cf6cac" + }, + { + "href": "./BJ37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220345280ac40e56bbd02a634824c6c1856c2833f37cd684297ee64599b771ee4fe" + }, + { + "href": "./BJ38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206590a95f9cb75388eb3a36ea2a9bce9fbe4ee1ed76fccd7e72901dede1fe5c6b" + }, + { + "href": "./BJ38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df9bafc93edc0889ca50e7b59924938d237ce86c4b8d11b9c81f8cda7862700f" + }, + { + "href": "./BJ38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5d23606c76033f135bdf6ff7ddda89fb16fe5c0e509531c46eebaead65d71f4" + }, + { + "href": "./BJ38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220465c16199dd6a70e14346ce6794df8dd3b6b8f2f52a9f03c80ef034ddda1821c" + }, + { + "href": "./BJ38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220839de273fc54f6e655f71839684b153786415cb68fa7775466fd30da31d77896" + }, + { + "href": "./BJ38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e64ed03bac1eddb15c0b6e68ee206ecdb5037e08d63b41609304bc9ed34e0787" + }, + { + "href": "./BJ38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220630e4cdfe6b1e992af9b7fe987e09a5a50b1104f0d557b9ee6270d714ca6700a" + }, + { + "href": "./BJ38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209b1521e5e614565286b24253b46ed77c2b7369303e138fff1a193f60ba8190d9" + }, + { + "href": "./BJ38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df050c53fd77814cf5da99bb85adfdf2289b84ffd9061d44effba07014053957" + }, + { + "href": "./BJ38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203913cd842b57d5e52a9181dd25ff10e4a7f13957bb03c9e76530388d9f1afb5b" + }, + { + "href": "./BJ38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122027ff35e2585b53aacacb2414e86cc83002e53ccec17c998bb00f23023958d839" + }, + { + "href": "./BJ38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1960befe2b8eaeb8db02eaf0c3f36abe9e9833b484a04598818c089ea30423c" + }, + { + "href": "./BJ38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a2b58e990fee0778fb46b3c97d8b7d0660ead002907008a62bb71376ad320c7" + }, + { + "href": "./BJ38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c90e4a7d7aece55c99c671e9d08204cbd6cb3c80f2e03abc80d057a2e9e28947" + }, + { + "href": "./BJ38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209967fd9374a33065e871dfc65ab490de50dbe732625086fb13e4a7c64fecc3d1" + }, + { + "href": "./BJ38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122076ad9b26a9867434073502c067caa89cf4bc07c7f67982f15a76bed5798e1422" + }, + { + "href": "./BJ38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed4fdc77dfe52b73859182e8c7e893b5a0efd3b90c08835f47d5aa1e00e01fd7" + }, + { + "href": "./BJ38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb7f74da6af409d90b7934321ae361b3eea529eaefe89e017a8e6995ca253e6b" + }, + { + "href": "./BJ38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a22ddb59880108f5b327ce16ba3a050fe09a9129983f8cc0f8b515be673bd8ca" + }, + { + "href": "./BJ38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205c3ca5234b1a0282b88d9a530ffa6278746f2db2811636fbc3ff78f8017d1073" + }, + { + "href": "./BJ38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122000722317320c783fa25e561de989ce6b80dfbada48f308a68fc33ded774d6445" + }, + { + "href": "./BJ38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f2359fdeeaf62e44c2c68df0bfb1017f729ce4f017b989d9f678f6783c4e3eb4" + }, + { + "href": "./BJ38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010b0eba82fd0647f97304fdc7aa9c7935e97cb584e48f919c0af1c28bbfca11e" + }, + { + "href": "./BJ38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e48cd9918a824fd2feb16c2c5e8177ecb295b04d54770314c0b3eec6ad654bf0" + }, + { + "href": "./BJ38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022a7610215fa81c48b5a8b544985c891a7272b244b11ddcd4ac8c546df9ed139" + }, + { + "href": "./BJ39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209142666220eb872e2f4e1c2e524d5df05a8f983e077a6eba28583f1bcf6df748" + }, + { + "href": "./BJ39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122078b45b6572ef3125c378cc872e486add31732cc53007543efec74677626aeee1" + }, + { + "href": "./BJ39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122018f9beb98da7000d32b31270d704e66950048eb0e86042544e54e3925dc022aa" + }, + { + "href": "./BJ39_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bd65cad1a829d442eb0677fe84d3b25d5e5528ce44ffa2a0d24134e580103083" + }, + { + "href": "./BJ39_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220332ca1ff3bd4c37ed239667b215b094029c235fd15c7d199f4903cf4f41fd9e9" + }, + { + "href": "./BJ39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4be2e23a4df374e2caa53601b88e19d1d9b2ebe1e09979f792c13c551741f72" + }, + { + "href": "./BJ39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a62ac3e48cc210d4e3885ae41b53bc8cb9be00df7bf23783c1fba1875d0f5661" + }, + { + "href": "./BJ39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a6c388504809025a98784b882fe57153e542d8322f78784718425709a59a96c7" + }, + { + "href": "./BJ39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122027ed6d7c94faf1580b2e0c8b93a422aba112facaacf9445055e7c9f8cafece46" + }, + { + "href": "./BJ39_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5d1d913116556cb960ae6b7b5a03a96e367c0dda0d9a4fe6df62f083d79f6be" + }, + { + "href": "./BJ39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d3fefd29f268f99243cce6f16a846962edcf81d798b400c683c88ebd15b1999" + }, + { + "href": "./BJ39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075f0a1f906914a7e42071b2556b9e2a01decc4da00f2a7332133dbeb7920051c" + }, + { + "href": "./BJ39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209c6a7389e07438142ac4ba9d7703cf23144288c5af9eeec46468f76b564bd5e5" + }, + { + "href": "./BJ39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e7f3a00729d8c4d01f41f58a26f87c0ce6344d0b633e3496f0fcdbf5874404eb" + }, + { + "href": "./BJ39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209482e86bf1055aa71c4af863e74643a9d9cffee59082af95d5c853057e8f1e18" + }, + { + "href": "./BJ39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064a8b2f44349bbadbcecff7d7a07ab8c5458863081fe28ac1aa811436954ace5" + }, + { + "href": "./BJ39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbbcb80955da8fa43e1e6dbe0704b8bae3abc72a5292ea3131cca990c265f434" + }, + { + "href": "./BJ39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122033fa7ca5219d4230aa19545ff2068435dd456a16855b807228560f7484605251" + }, + { + "href": "./BJ39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ad3bf79fa9ce7d08dd37c06de82bdf632edfccc3ab31f0c126069af80ce3ee0" + }, + { + "href": "./BJ39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122079cf02e5a1d0c8bf729b5bc189dd68389f2062a6ac6f494b806e0390d04ad6c4" + }, + { + "href": "./BJ39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220242cb8e1853cd144ca6823ac9d17181656c1c2fdf1c2d7d99f42cf31f260c26e" + }, + { + "href": "./BJ40_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220910fee66be94b7e8598e1d0d7edef9a78ee237f051bab03d7800b8842b458cc7" + }, + { + "href": "./BJ40_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208bd5ffd3c9ecbbf3f23bfa8ecf6a4a0007d09ca61dbda34f369a27c2302c7487" + }, + { + "href": "./BJ40_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d94ed004dec6aabc9fab0e3e05c29c61d47563bfc04e679cd1cebbbcf1b2954" + }, + { + "href": "./BJ42_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122025825c25a381dc1cdb7fe47045fd8d3c4139fd51b101096ae5a2f60b0e1758e8" + }, + { + "href": "./BJ42_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203ca4a65eb6811ce14d0fc70b378d08944db455e139b0921d38393596e240985d" + }, + { + "href": "./BJ42_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5af5d7dcf7bb62df4ce540f32fcbb125c2dbf379bd90e874f6b3401f6261dab" + }, + { + "href": "./BJ43_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c62ff0915b08e90a76228c18a2bb75e142eff85ae4311b356aad6755b9d9024f" + }, + { + "href": "./BJ43_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0cd02eaa6475f8579ac0ee0edec44d9afa3b7a814872128fddfcdd5f3c44014" + }, + { + "href": "./BJ43_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be16288e596756d51f4e94d20216dd3fbc33c14142101aa13fe3f3563bf9e44d" + }, + { + "href": "./BJ43_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f132ec29597f0eb4b9d87b7863e59c8aabc71fe2b809ffb23ee1fc9e2e14173" + }, + { + "href": "./BJ43_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf1a1c9ca6b598d6d661f402289a523915870e499f1700f241cef373968a61a6" + }, + { + "href": "./BJ43_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c99f424f8269671623ba4c5b314659bebff5b543751a159d4eae931dacdb0ed" + }, + { + "href": "./BK36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf6a013b0e8047090bf82045bfbf77fd081c5c9aa90322314e8af58b38024be2" + }, + { + "href": "./BK36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220589a9f1c53a1ee87058b9125f7b7f6c4087c6005cb0cc669f5558c3aedf4cfbe" + }, + { + "href": "./BK36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203f39b16e7c36806684c7c6aa0fdced87985123a76450c0dcb1c158eb664de077" + }, + { + "href": "./BK36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064dea1c5c50f821c79e6e03890b8f3991abb80a0eb70bc2cc58f8e5f3a816bd7" + }, + { + "href": "./BK36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a8c4117e5c8f5ddc4e59d4cd50eff7a8fa19734563c13a7dc1adf73b36824b97" + }, + { + "href": "./BK36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a907e9a03ad8bed7553e5ec8514e2c8441298277b6fed6471004a63dca240d7" + }, + { + "href": "./BK36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220865357d519e9346fb7ed85d04622efabc0a448fd8994f39b4050c2aca4336eb3" + }, + { + "href": "./BK36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c2f006878171f402af18087b070708610d92737536a0d5af96212a8b3c601c28" + }, + { + "href": "./BK36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f2fee0295c6089cb6648a9f69db9876af9893ae72d193a3ad15e95dc3d44a33" + }, + { + "href": "./BK37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122083cb0dcf49470ff15046062537dc2dcd06da120acaa0e1cc782bc2d9d4ffbbd2" + }, + { + "href": "./BK37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a3fe38c7239737c32bb0c135944ebef6b2f289c1a320bcd1207b591959f65c1c" + }, + { + "href": "./BK37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202808e4c607e0b6e56a70f695cec8e435de2a35d183fb4ac32b8362473fb4445f" + }, + { + "href": "./BK37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa9a6389010b0defef83dd6bddcb0998cb158218ad54ef2e2a508c0f4ac38815" + }, + { + "href": "./BK37_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220830ec08831aff9b865c99ac484627e6eb84fc0de2ec1efc74fa2ddc2c0fb0b6e" + }, + { + "href": "./BK37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c99d77dcf2738856528784a0e659b0aea95bb31f5a8d2c8cd7b4732fdb8a7c9b" + }, + { + "href": "./BK37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201372fb3dfa5bfe88e9d6038abcaeb144c7c190180213a92c28fb0a022d6705dc" + }, + { + "href": "./BK37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5a5fa1098e480b81906107c0e0b26662f045d2dc6a32e3716f93e616a0c9a35" + }, + { + "href": "./BK37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203e9b967d073e419db96a40f71887bfdaf10ca55acfa2f245fac41023f8992823" + }, + { + "href": "./BK37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a77cb1b70c73d16ee1866a3ea6d9560e493bf1afa8c4aaf0c0efd35389687b57" + }, + { + "href": "./BK37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d143d6d41f7c659bc9d5b2b756a2dfc1f6a508d62af80cb1e9cfec2b53e4f4d6" + }, + { + "href": "./BK37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f083cf0a974795222d3d4b4a242a02f6c27a99847bdcd343b2dd783d91e63c3" + }, + { + "href": "./BK37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122085ad4714414e0974317ab675a82a087bb20597b53005be80904726594ce72b52" + }, + { + "href": "./BK37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122001c997d9ed991085f67a9081006ac8c70ba6bede3722dd49f63071fccc5e5dd9" + }, + { + "href": "./BK37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122066ec0d2fc515258f11873ec4459d8d9960aab296952e127780e4708711e8d9dd" + }, + { + "href": "./BK37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003a37454d212aea54279c79a2f6a8d92b10cc12ce2da656738bc91cc77188951" + }, + { + "href": "./BK37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b25e93e4b76d0ffb73d6fc3edb3dcea066b254a8125239c2787fb1c995f25a2" + }, + { + "href": "./BK37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075956886ea18c057198f839b8fb8af4de7d0c63e8218ebfcab9919c828e361c3" + }, + { + "href": "./BK37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201cf2832f9490109b1ddcabf94edd99199f884a4d2961ad74c7cf6da4df34f80e" + }, + { + "href": "./BK37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b60e0cb119bda7c9d220869b520d917feb173582bbe4bb1ae8ff26caff5b7503" + }, + { + "href": "./BK37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e2f4d263a24797cc1b84184cb9c5a0503bb072afe9bc9d81553add0646fed14d" + }, + { + "href": "./BK37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017e236aa58fafa5f713f02a6c78a14227d8d7d620f3da8bbc397a31caeb197af" + }, + { + "href": "./BK37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202b6e242bf7131b480cae8f34d45da6de5b9c7ba99c57aa3cbad4c464f877b4ae" + }, + { + "href": "./BK37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df943950514c1b7879e5372aa53b7a2bf8495724e0782d5ee816b0f1c0b0b389" + }, + { + "href": "./BK37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5b388c99b80b33fffb8bf2241a054a5c681bb8b80616921407071980c1e2847" + }, + { + "href": "./BK38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d653209a3ec2e679938079f33cc18d55dedbf01e8371cae5e6ed48bdc5afd6d1" + }, + { + "href": "./BK38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be01b522beb6f20dd4f3a0df1c0210ac5c2630e948ef99229dcb40724cbd02fa" + }, + { + "href": "./BK38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dad73ee1420d66790ecb01d342297640df0f48fd992768fa9670a428872ca03c" + }, + { + "href": "./BK38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c6297f92bacf0e7f2f74a8cfa864be7c18be5d762600c4c1a037b10b6567d510" + }, + { + "href": "./BK38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220112b629b629bcfb7409ee0b56612d66c4fa231a09719e5e25608ce2fe093a35e" + }, + { + "href": "./BK38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011f6ac6c91d8ed31ddf76fbb47a7acd4e2abb27fd2db3a72f7852fe8b3044385" + }, + { + "href": "./BK38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a6b6e2fb9629126eb7909336024c2161247129e7d0c264bfee1077706e62499" + }, + { + "href": "./BK38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e964b2d0a26c6c1ce7c9607929dca66afb6a65a806b8eb5b558d2c80a7b76414" + }, + { + "href": "./BK38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201b208e60fd4122886e77d30f58546d3dab4325f191a37d6058e186d638342236" + }, + { + "href": "./BK38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f02c10779669ad612c714c5f2d180e02287faba0ff98d162ce53e4e7b0a6f227" + }, + { + "href": "./BK38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122032588d4e530ef2ce556409abacabf287e0cd9f324b6968fcc7a38c5ba8b47cc6" + }, + { + "href": "./BK38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220774b8d9290ceacdd6004caed80fd3f806ff93a893baf805935c9565da5b53a5d" + }, + { + "href": "./BK38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ca51a029b4edb450b2baa2f237d108d5dd260ae58ededbbef555073857c2045" + }, + { + "href": "./BK38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030b22a17a345988ee7164eea33e84986c4fafab32237c7ce4699c8d3e740c618" + }, + { + "href": "./BK38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220738df18ec2dec7ea16d8c62645f7cfb411d615a28c3da33239764f2c68b4de89" + }, + { + "href": "./BK38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220246bc13c454766c2086a18e06654279d8ed487c3631153754f68b1721443b966" + }, + { + "href": "./BK38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122051b9fbac39cac674ce38078265685a2fe2f20a356d60cce4c918e9fb25f23e8a" + }, + { + "href": "./BK38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202c2a5218b94098f7c4253e1f6775cd6e92dd46926aa52247e58693cdd67c5629" + }, + { + "href": "./BK38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220243542cff5b574df4189d52b5f48a118a4f59538cded68f63707033f5a2faac6" + }, + { + "href": "./BK38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122056c90be3e3e82b1f536bb94fd793db987ca64d0b997f503665ec2fa2aa4a14d5" + }, + { + "href": "./BK38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220622cbe70eddcb4f54a6e2530b60b4a289309b9e6bc0cd0d44657aa018315fdaf" + }, + { + "href": "./BK38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122049f0960eb9e2f6df543bb28250dd3ed0ca2f5f4dcc675aeb6d4252cf6851ab7d" + }, + { + "href": "./BK38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf4208516415c190a75e0630600a8df277ad0946a6dae9124239d273dbf2aea1" + }, + { + "href": "./BK38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e99a04f6e993545cbb907c255aeea8cdb3a3a34ea6ddaa94fb98928297573d3" + }, + { + "href": "./BK38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb35dd4e9fded45ed80679d396c6040e68b9d5fe251dae3bfa849f6dcb25803d" + }, + { + "href": "./BK39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a9b1cc4ca294a730499cb28450b2a53437a2849e4e021ee9f9e1c528855dc52" + }, + { + "href": "./BK39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220667da1a09235591b1d12b278ad252d065e8695a5290e1f5b3a6cf1f70e1b1d8b" + }, + { + "href": "./BK39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060269813d32e457cc69735f18926f7fc2bf3d07f3494da30a8c545eac989da9a" + }, + { + "href": "./BK39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e21babe0356211c63db9855e7c61989761d05ddc20c213f1953b82930a46e38d" + }, + { + "href": "./BK39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202b7339d6234d4f313aac14b04cb9eba1a517c8dccd31058474e9091c0827eebd" + }, + { + "href": "./BK39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd9830478435d375bf327ff0bebb26abf370d23e407921b3e6eee52995b6c142" + }, + { + "href": "./BK39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fc9aeda40bd19588834d0f529d7871793eecfd4fdc55b18955e97d17400b5b8c" + }, + { + "href": "./BK39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208d9a0004818d00b0fab8c4e4ca4c291a5a2d5459e9d6e9b51f926e8063ec4be6" + }, + { + "href": "./BK39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c11db104f850be7ff0f5cac4d1eefa8000de146b29f8e221987e2a6aa1546536" + }, + { + "href": "./BK39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e10fa7b7d7a6383b910bf668965d683c7ba3221e6a550ac066d89421d1c8ae80" + }, + { + "href": "./BK39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da8b743a48e2f9e22b62c4a169c12b66decc774ab3881929d39403e38f342206" + }, + { + "href": "./BK39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bdbc96eb8be66b211f90a5c445f5f15fc4ecd4e4c2471232710f125983c126e6" + }, + { + "href": "./BK39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207ddbac0814f3d607c5672e982e9546922ae31dec2e08b44c968b440c36f482e8" + }, + { + "href": "./BK39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209bc454d936e0385f07117b3d0bdc22f9c19a060d6d08f54918030a671a0db0fb" + }, + { + "href": "./BK39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d019441625281bfad368cbfbb4cbc9d20d0b6f56cd44984e4a91444f1f67cc8" + }, + { + "href": "./BK39_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f6dcd4b6c0b13912083cbc9705f6e8bd8d5823425779d10b61ad099ca1b9826" + }, + { + "href": "./BK39_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202ab71b7702c2836389520d3cda9dae1c2e7431ccf9bf6138db55ca9600218c95" + }, + { + "href": "./BK39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e36ece95f75014ceb743526748f4bcae551d8fe831c66eaeb2a7c71c8472cee0" + }, + { + "href": "./BK39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122058a6d053359448b43c713e7b25edc913b473d74d2026b42fd401889e51cacb34" + }, + { + "href": "./BK39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220891e48cca3de819f872d7ec13f264bc56ce19db13ae45fb55e83cdadfc51adcd" + }, + { + "href": "./BK39_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e96c6924c7bc24c767b8e2f26305092ebb8055bd73fdefac104d5f768b00fd6d" + }, + { + "href": "./BK39_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203792789128c6b2fdbd108dede6164629cbba9d67ced0553e9d0f78fa72b8964c" + }, + { + "href": "./BK40_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122001648ef3b9f800a58cbe9394b92f76382c916e7ebfb5629afc0ca663d4f0c0fa" + }, + { + "href": "./BK40_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122006ae586115dbc0df8bad022f7e613f0d5354c1b15f0b936fed4c71b9edeb0789" + }, + { + "href": "./BL36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204ba0e3c7b21561508103ce860e4706b5b3e17b1c54815ab62791e85ae0f99e00" + }, + { + "href": "./BL36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b45550dccdf58f1caa1ea260816c41276a5f7e15ce5a50e9d0d579400e08b3cf" + }, + { + "href": "./BL36_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d48d9b6c18ea783cc999062ed5f06046ed62ceb3a96af7e9794ed39e5298092b" + }, + { + "href": "./BL36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b5ad09af49f4b40dbb475b61882370c8b2bcc2fce094e7194e74362b3ec005ef" + }, + { + "href": "./BL36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208840ce6d7f4d9e7a9bc277f71c4414e7015e5126e68e41de333f42ad91638f3b" + }, + { + "href": "./BL36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c0a7074250dd3e5341927c0c795c3df2a9f2e5a4ff228f43021b8008e1459978" + }, + { + "href": "./BL36_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220af15ec2d29cb797b9580bc01e3e3df2d316cdbea47ce9abc379bbc3b3efc3768" + }, + { + "href": "./BL36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f75e4309c71b05f99d0f1368da67f29ef14bbe5436bc7bdb0a165c29b989b1ea" + }, + { + "href": "./BL36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a2fca8887f9fede7820840eae093bc02461aabde8735a02dd206650963c15faa" + }, + { + "href": "./BL36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220416246ee812e893fb25c76f5c429cbe0c5dd4eea2ae93740a73da8c6417b363b" + }, + { + "href": "./BL37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220742705c9912d203a174116e54cc90c2b0f59afcda1664dc2a82196fadd9df9da" + }, + { + "href": "./BL37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c1211e7274e18b70d12c8e68af4fa53e193872084927342fbbd7ed0ee3b09992" + }, + { + "href": "./BL37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cd7c9c3d908f41e70e9deb762062c44a77c6e380b5ca6752b887341bef2bb24e" + }, + { + "href": "./BL37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207f281fe5d8c73ff7ac54f04c3a5b1832cd6b614cd9ba2bb7a84992b64c1d3ab0" + }, + { + "href": "./BL37_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fced5b6562a11bbf80b280c598fe9b531c61ca374e9e1c4eea3b2fdfc404b267" + }, + { + "href": "./BL37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205a2450b8654f43f8ea356e754494ed2c924db2138f5cef77b859bc6d0fa11f97" + }, + { + "href": "./BL37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204abf94fba47588c1e0f2da82a0dcb60fb28d51b191b19a4f34d1202d2187b17c" + }, + { + "href": "./BL37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205a3b3350c717c28b64da3c77b2d22bbdef2b02dd79dc4eddea18a784d96efb1d" + }, + { + "href": "./BL37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208bbb532fb4efc458aa5b99d7043c27899780b8432d7fe57c19d30310b9eadcf7" + }, + { + "href": "./BL37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c18638a86344b3ff99fc2dfb55c14e88a4181b5dcee28b5331381868e5b916e4" + }, + { + "href": "./BL37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220791b7ebb1f4dce55b5db81bd51ffb0518017593cdd63001e4123db2cf659b664" + }, + { + "href": "./BL37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208719e385e9c4da5a11391a8b807ec0144c59e79971db931a12233969445e5c3a" + }, + { + "href": "./BL37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d7f619fe100322a61fda8738ff7317b8087ddec0b489fd0f97b957b41bcc04c4" + }, + { + "href": "./BL37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122048104d498461f28ca72c7b4db13388b69aab601ca0d2f9586bdc0dee4bd40083" + }, + { + "href": "./BL37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fc1b5e077e352399964c6a04e850a430f6c55dc2f933165aec7de41a7459646" + }, + { + "href": "./BL37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122065ca8baae73317a48d0b0bcdbc01fa166f5b981b9bbcead0a55ce5e138e75499" + }, + { + "href": "./BL37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220876014d352f304da1c9bcee1db908ad276b9a4b612e23b544f4da486c99ecbfc" + }, + { + "href": "./BL37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df8f7bf4882f99157057cf313ccb2e15d5669ac9532c803c1f58a058e394f133" + }, + { + "href": "./BL37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3cf76beb2ae5d0230913433dcb89d546fd980e3b238cab794792d7787f8cc25" + }, + { + "href": "./BL37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220217f5050bf68957de4b7995be557c80f2003ca10f024734f8ed4d39b47aa99f3" + }, + { + "href": "./BL37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209be10b1f467fb0c350752a7c4c4eea5e34055ff871630fdbe329ac9b7e4d8ea2" + }, + { + "href": "./BL37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122063c1738d7b66dccbee89171017174062e5642d044b4432c9ee0b832547dd84de" + }, + { + "href": "./BL37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fa4fbf13dde12f078b4ffa5e1ac134f2fa7d132881bbdc1409a2d72f3ba62be4" + }, + { + "href": "./BL37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a407dfcbeb9cd1cd13f420380e971a3c9929f214a94f6b76426baae498ff10bc" + }, + { + "href": "./BL38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206693cacc9fe427b85ac227f833e2cc60da51fd216450645ea42ebea773df0716" + }, + { + "href": "./BL38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d222afd7187a004a58016592cd918664c88e587bbf803e58634e37099626ab0" + }, + { + "href": "./BL38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da98a49d20dc7dad99edfd4b06df0e1ae18199b3a7a0e1488fe0b9b4ee355875" + }, + { + "href": "./BL38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f0635521c7b9921c9cc7d832589acdd8ee8598cf1bf2508355818cb1982d9562" + }, + { + "href": "./BL38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206afad81de6a172770727dbf2be3b9c9517c2617e08df423b75224d07e55920eb" + }, + { + "href": "./BL38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa0878e4109ec6bdecd18c0a9f364508603bcf63fcfaeed5a2ff75460ffe1fde" + }, + { + "href": "./BL38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e1364ce8c521dcbe13ae0fe63145f609b49728eac0a68c675add7e9e7e32b08d" + }, + { + "href": "./BL38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220681ca91684d3f761ae7a4e573ad71b62de30133802d4433dbadb5a7e58e675dc" + }, + { + "href": "./BL38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c641c7fbd6745b2e92063e4d5a3013639aaa48a4c35bf164b209d72f9d3b35b6" + }, + { + "href": "./BL38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0f628e2ff23d3ba281b8cd6901a9712dc59f549befc64bbf788c268fdcca67b" + }, + { + "href": "./BL38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220977b27f852e4f649c61b2a9be014ca53061070fe0d51a6c7ede0f47b82ecf0ae" + }, + { + "href": "./BL38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122096d2406b34bc4b9374e78deed0b0a72d15d7835ddd30caa421c3ae541c5fcd57" + }, + { + "href": "./BL38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1809655c051f3b1ea2e59df2f838c78875b458c582dfa00ad24e82094b22af8" + }, + { + "href": "./BL38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220169af32dc4ca4b04ef78d3f6aac8a9fe9b5993fe8422b78cad9584d8a3b50a08" + }, + { + "href": "./BL38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201cf6689d9d320bf49f25540b9fd979ec5dbdd373eee8f9105a34e865419ed91b" + }, + { + "href": "./BL38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6b0fddb2b66baa4b0f86b168a5221e1fa274f518c4d5ba7059e0c01d19f3441" + }, + { + "href": "./BL38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122067a20f4bfae71a86b7556e34a7daaf36ef5e1e0f1beae03fd069b8ac3f1f7b11" + }, + { + "href": "./BL38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201ce22821778be6ea4f2f4c336fbb79561d69b42c9ca1b7a3416a36981061cc4d" + }, + { + "href": "./BL38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc77586af71d21e73d9a66b386b95f97101f74657a7c70e6183908cb248cdd02" + }, + { + "href": "./BL38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b3fa5a2d94114c1fc1dc7a09bd6d8552e533e8665c4a162f16a7ba28437c01d0" + }, + { + "href": "./BL38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220552ff048f7c490e7443eabb7a706953abcfe3500f0a65f237520e9757c0fc792" + }, + { + "href": "./BL38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fe27e48ec7e96a57cd7ded26c4c4a61e8b70d8cf2ebb5ec1dcc8d2b69fca7a9a" + }, + { + "href": "./BL38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122069cec694cb23a42b1f66abb97abf5e53cb8e3ff6f36c430c2d3061433e04ca77" + }, + { + "href": "./BL38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f28d7d81da080e1b3604f2be6a0308154204340c8e84866295d8cf731bbf673f" + }, + { + "href": "./BL38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220209aaa9a0b451d5210e925daa06e4d0d781233c3f0e069224c317688369885a8" + }, + { + "href": "./BL39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202ceafad9f1111a67b80256e1213f45992c8ca9d60da64943ee55d276a18a8c52" + }, + { + "href": "./BL39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122092dbe8e5c6b1109a9c463b456ce33a9f72395ba51453839e9e596fd2dba54a14" + }, + { + "href": "./BL39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122041cb7ccce7e3939655b305b33fcf5a09732011f5dcdaa295ed2f69f373d2e343" + }, + { + "href": "./BL39_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c8d488dec06e932b618377edbd5e97a972c97335c36efe89994a3505a2c6a601" + }, + { + "href": "./BL39_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207577b36aeb14447343fc81251c40947739a50e4493285a4d53158afc6526fc8f" + }, + { + "href": "./BL39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f9ff0aeb24257632a6196b00e012016ef996d16afb5504965f9189bbd3e8b762" + }, + { + "href": "./BL39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034119cd3e8cc4d11b474be496a4d59f838242f379438f533b6f29cc45e3a197b" + }, + { + "href": "./BL39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022dc625e8cd429ad0a59b0e05b30d4e550eb00ebbef4164ce5cfeed20a5701b6" + }, + { + "href": "./BL39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a0ff1f831cdf3a6fd5f6cd8f2e28c96d9748f9c9a5dc78e18d72160ad28b1386" + }, + { + "href": "./BL39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122090d898d5f4f0c7177d9f0af5aae343410153e4912f47a1dd0e292ede9b794f20" + }, + { + "href": "./BL39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122088bc6c9dfdcb59f7f7e52461263f9473a69478b75d31b9dd0aa5ee7009b7f909" + }, + { + "href": "./BL39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e98d17b813b2052a039d09b9980a449e3cb030efeb5b38ffabab61990643d2ae" + }, + { + "href": "./BL39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d3172a1a5ce6ed58906d938a5006ab981c48a28351dd5e86d74d273bfa6d8c0" + }, + { + "href": "./BL39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a8a0b985ce6927b185c7ac2ae02ca6352c426d7d058662d17e66cc551667b1d5" + }, + { + "href": "./BL39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204738870333fcf5b6af7a0d289f9d1eab728454a599dee78650de77d6599d50bb" + }, + { + "href": "./BL39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a5070623918027f3a961a16640883b790f44aacc7215876292d31a75425c1554" + }, + { + "href": "./BM37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202d6760b93d46852218ef6417ec66ceba463e4082ef0100eaa64b375e54af1650" + }, + { + "href": "./BM37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220668212bb90855d9a3d7add136fe50007376e5c2bf54e5bfb3b6e3e7dd44f515e" + }, + { + "href": "./BM37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209550f92bd0cb55deb75de6cf305729caa355868a031d30d979842730e05d7594" + }, + { + "href": "./BM37_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220370dda1774f3c853d676b81d3beca48a31bfc8e73cbbcc6e2e1bdf88f1d5dcce" + }, + { + "href": "./BM37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207e11694b5ef83ff2b19bc78fedae348db00ecfdb31982f295b1a100af96d905e" + }, + { + "href": "./BM37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122093e2187c374ab9ebd08356443d1956316e153d3cc7f17c7ff6ec26c41d186f7b" + }, + { + "href": "./BM37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f9d989f4816566a896c11d71f6b84dcb34b848c9827fea7a928fb7f52905fb77" + }, + { + "href": "./BM37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206ec821dcd11ca6e8762725f941b3689dc7ac770f8c8d2b77031c5068a7f0a166" + }, + { + "href": "./BM37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122041b168c79e456377024a6a07d633e9ba622ad7b87a9715fa5a7ff20b6137cbae" + }, + { + "href": "./BM37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220475b1a555f365e88830b23d591e41e3dd91efec3a4520ceb96f8bca0fdbc0de0" + }, + { + "href": "./BM37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122053a7e60c5e48d9e66f0ae45206793f3fad8f83d2ae56a5911fd7472ffdf489a9" + }, + { + "href": "./BM37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ddc9993da6b0509cbbe6a1c1dc58b5ce1aa6537ad4cf4dafc1e9964b02a1762f" + }, + { + "href": "./BM37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220779a1391ed4033fce587ea663a46146d2ee74ffa27e4a6e932b30d351461cffe" + }, + { + "href": "./BM37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122038623dce3032221fd106ebd3dc737a116cef415b74a98c29e145b7c2f71958f2" + }, + { + "href": "./BM37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a24b1193f361f0e1b3f2a9ef5e8529eb5fb45f91ef440dae5b6144c66a5ba028" + }, + { + "href": "./BM38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034c6ab346b97cb4520adc133c97502a85543833286cb36ff663b3f8b5fc787da" + }, + { + "href": "./BM38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203a708c7e3b424ee0c5b8425ea1d172a8c170177cd4ee2c22c9e23e6a91c4aed5" + }, + { + "href": "./BM38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200105606c6bb5da9017fcccd90c9a4f9f78e30b3572c2c3dc740a5cca176df7fb" + }, + { + "href": "./BM38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075d43e64bfd9afd47140ce520752ba28bd9246e3501d4b51fc45cfa532bd5890" + }, + { + "href": "./BM38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122013603c5c5d33949518c948f9cc76e594d0ad3b33f9c4255885e0e5ae6f24da88" + }, + { + "href": "./BM38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094561796853677ea889fc7ddcb12bca0c70f5aa6f44b59380c5f2ab378977d88" + }, + { + "href": "./BM38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220035cc0ce5cc40683dcf0e596277cdd22f307483b4572e8906c2d9c533ccb2936" + }, + { + "href": "./BM38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202c5267ed24ae813ed4e9dc22ecc163f80a1d265abbfc09b5522ac943a53a95cc" + }, + { + "href": "./BM38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bfae802cd88d9a3ca9f74690cd2907802e962a49e485d31ebf0605167390ce86" + }, + { + "href": "./BM38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064d29660fa0951642a958db0d3ab15939d8aa637c03f7cb2ae1ee689529783b2" + }, + { + "href": "./BM38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220315663d3d4f8e9eff7d938af638690dbd501d94d520db20ee1b4a19fd824d8df" + }, + { + "href": "./BM38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cc6e89b39811b8e6cf7d8a0ae760427a285245baf10187f8da8746692ccf6174" + }, + { + "href": "./BM38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017508c4ba015379e196e7e0e71d04a52cd0f7c410b83861f3d42d9617f167b92" + }, + { + "href": "./BM38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e662cb36b90b3926ca4d3dc1c12166e78e9f081202689799d3e38d86286e2e27" + }, + { + "href": "./BM38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b965077dcfbad2100c3564de0e2cfb0f72aa1ae5ceb8ccf3c0b8e1e3ac8034a4" + }, + { + "href": "./BM38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d35afdf222fafff9bc908735600826d985b0bd56430ca4038248be9502b6649a" + }, + { + "href": "./BM38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220627504fe1b70a17240da78454ebb391295a5734d8f63068ec00ff199bd8ef0d9" + }, + { + "href": "./BM38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204fef2aff39c953f0638ea02b2ee898c348ddc250166e9d603286c385cc4a9ac6" + }, + { + "href": "./BM39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122019dd996a8a3c672b3f9a6c2a20ac493c692983f760af0d61a476c21d5c1058de" + }, + { + "href": "./BM39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122050848469c09b960ec07964ca10b6c0fcbae80e73c008cf13d26735940de76397" + } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "ongoing", + "linz:geospatial_category": "dsm", + "linz:region": "hawkes-bay", + "linz:security_classification": "unclassified", + "created": "2024-10-21T00:03:14Z", + "updated": "2024-10-21T00:03:14Z", + "extent": { + "spatial": { "bbox": [[176.0260349, -40.4739342, 178.0283496, -38.7469279]] }, + "temporal": { "interval": [["2023-11-19T11:00:00Z", "2024-04-26T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "description": "Boundary of the total capture area for this collection. Excludes nodata areas in the source data. Geometries are simplified.", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12200b085bcda2a54ec2446dc354c5a8725ebd6f19bff41fc19f3776dcc59d9ec600", + "file:size": 665215 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 07f16ebabc09f1387b6b3e1d59f5c123e3ceb421 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 13:49:46 +1300 Subject: [PATCH 307/309] feat: import Hawke's Bay LiDAR 1m DEM (2023-2024) - Draft LI-1538 (#315) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-39.6106510,177.0532967,z8?style=es-hawkesbay-dem-gkkwm-get-location-2157959152flat&tileMatrix=NZTM2000Quad&debug&config=x8LTjPuCJSepSYSAPwHVdrWs2DnJma8MisYjkgrJgBGvZcvefEDjqjfTU7M9LWeE4AsQzmnZ2rDGB9XR9t3xCZ2CBWLSPaVVzJbSWdDoBmgDHNTXF5krgEb2ExXHerjmdSi7mUcMY5vGCTWNHvyBDZUhV3tfF1GCwC8qQ1SzYrztTE8zFXmC8mXgUJZiNc9y1dwSRS8nxgpxhSATeNq1xX6zS9LDuYnyNdrTEef7yx5ekkBgPep2Jg9) **ODR destination path:** `s3://nz-elevation/hawkes-bay/hawkes-bay_2023-2024/dem_1m/2193/` --- ...YCJ3EXF37J4A9130AH7Q2RF-1729469053680.yaml | 8 + .../dem_1m/2193/collection.json | 2395 +++++++++++++++++ 2 files changed, 2403 insertions(+) create mode 100644 publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1729469053680.yaml create mode 100644 stac/hawkes-bay/hawkes-bay_2023-2024/dem_1m/2193/collection.json diff --git a/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1729469053680.yaml b/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1729469053680.yaml new file mode 100644 index 00000000..b78d89b9 --- /dev/null +++ b/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1729469053680.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/20-es-hawkesbay-dem-gkkwm/es-hawkesbay-dem-gkkwm-get-location-2157959152flat/", + "target": "s3://nz-elevation/hawkes-bay/hawkes-bay_2023-2024/dem_1m/2193/", + "ticket": "LI-1538", + "copy_option": "--force", + "region": "hawkes-bay", + "flatten": "false" +} \ No newline at end of file diff --git a/stac/hawkes-bay/hawkes-bay_2023-2024/dem_1m/2193/collection.json b/stac/hawkes-bay/hawkes-bay_2023-2024/dem_1m/2193/collection.json new file mode 100644 index 00000000..9594388c --- /dev/null +++ b/stac/hawkes-bay/hawkes-bay_2023-2024/dem_1m/2193/collection.json @@ -0,0 +1,2395 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HYCJ3EXF37J4A9130AH7Q2RF", + "title": "Hawke's Bay LiDAR 1m DEM (2023-2024) - Draft", + "description": "Digital Elevation Model within the Hawke's Bay region captured in 2023-2024.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./BG41_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122086bd743c7304e563163fd91bdb54f006eb1692837cfbd47dc7c7262845cc9228" + }, + { + "href": "./BG41_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ef77b75969297ba17a5c5fcf4743a9b3ff92fb7c40590e89df58a5592312a487" + }, + { + "href": "./BG41_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122021c4d5e8db1e57729eb648de1b1e5f86000793f86d5f2a848159a90b560d6fea" + }, + { + "href": "./BG41_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a99f2bd7035b91bef10fed6d1ec0c9a349bf5c2adaca8a0f8174527e30299b6e" + }, + { + "href": "./BG42_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209fd97cb9d3c509a6c7969af7b44aefdb489f9ebb87f1a72215a1c393c6169e6e" + }, + { + "href": "./BH36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203bf86916adce3ad93da2c40e1edf4f37c1dda5cb47edc592841d0bee6af6cac3" + }, + { + "href": "./BH36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122033236a5c9ddc7716643c629b6159b7134a824ee54c17fa9ff988688d6036155a" + }, + { + "href": "./BH36_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209dd530a782546ba14f9bd53d30bba15984cbea998b5838785e538b6d2af6eb6d" + }, + { + "href": "./BH36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022b3fc7120aaa59047dfedec20f934f922ac77779880b8058924ad80c35cb297" + }, + { + "href": "./BH36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220569df008b456a9be77a697bb190b63f3fbf71ba4f98b67a8b128dc0045e8de88" + }, + { + "href": "./BH37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e69f6fd026d98165046d2709e9d54deaee57558f69c0639883a0b26992d0606" + }, + { + "href": "./BH37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a61ee004afd0d05c4715794c1651cba92ca8e7947b866ec1625c42034039ac46" + }, + { + "href": "./BH38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f32cad088ad13515fc1851cef8d35fd36cefdac2927b0dcf8bb08015078f751" + }, + { + "href": "./BH38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220283ebf20aaf06a2fb1bd5159daee482c8b071ba357ff78e469073ec745ffdfe1" + }, + { + "href": "./BH38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122062521f9d16feb13179cb1daadd397386c2e64341cd9c7038e22f3a4b396dc23d" + }, + { + "href": "./BH38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220609954339ad7d6c19f4d1de66c0d851c4cfcac713fad3bbaab6c98a3cced2564" + }, + { + "href": "./BH38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060cc6522d4aeb4490a22dc1d946a6a4903368013c506cebf21ab1a0bb9cee1bd" + }, + { + "href": "./BH38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220219ff69c9e00d49404ba8da3a05cdda2e4cf52b37a5f40a4829c1052c07d7dfd" + }, + { + "href": "./BH38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203b126e05d75e827f521c919db42c1b7d3bdce412e87ce1151249e862c7c2391f" + }, + { + "href": "./BH38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b1816e5dc7bc0ea4f169074c594f2e5857b395c3708b0af56bb37ceff84110e9" + }, + { + "href": "./BH39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f040fac1c8c37027d2472c2243c9ab995afa8711832813489ce7188844f5a5d2" + }, + { + "href": "./BH39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208e34cac12dfd625c63fa7b92b7389ac8a8058a1f472b0258f7f336762f616f33" + }, + { + "href": "./BH39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122056ac621f2dada9bb52eecf90dd2f3a5222f8b6d088d53f641da147d68aaf8d53" + }, + { + "href": "./BH39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b2cf22f3c02aadb175470f26b093069c1caf4a86165bccb183571a71a632f453" + }, + { + "href": "./BH39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b8c0e18fa3306ad48a6bf1e5c7dd30eceaaa07372e32dc16212a7372caa9d2d7" + }, + { + "href": "./BH39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200d40bcaad0b8705bad0ac593a7d83481522f6a2ce462afaa9d952d4e62433488" + }, + { + "href": "./BH39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122016697c83302f28bc6e6711634afea1e073c9c697dcae747810fb6eda91fe1d55" + }, + { + "href": "./BH39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be0476162d1330dca43d1450de5d255bd903b1ff743b60b979d6ee7298e50758" + }, + { + "href": "./BH39_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122026badb9c4b3defabe059e8df9a8cd2162507942e1ec54448f86fd308a204f36b" + }, + { + "href": "./BH39_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a838c273004d841f573e007064157a0bfd851c427c28267a051757db81d1bc07" + }, + { + "href": "./BH39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201e8eaab71f44b8a449b48de49d80d9d665b4efbd90276e41ffed5088b4731c66" + }, + { + "href": "./BH39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220de4181465e7c744acbcf774c0754e7de7c2d3b1daf8395e4d1fa86f07ec1d01c" + }, + { + "href": "./BH39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200cac4e6852e6c6a0dc005830eee14853c1963c7d5dac5b94b64d8ecebb1d48f8" + }, + { + "href": "./BH39_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203b8e5f3aaf1d8816dcf6b435c8e69b51cc5bd32ed16b108430aca3eaa57fcb39" + }, + { + "href": "./BH39_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f82cae323f43f84963ca9fce8ab00a0e72ee2e03f35bed37fd830146aa22c1e5" + }, + { + "href": "./BH40_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cb0251775310fab2994102c790bcf2b81687cc15dcf50e5370c4739d88b9f2e2" + }, + { + "href": "./BH40_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122023217402f9ee564b5241f757b820c6f46633d6598cc2b314b947bf384302e751" + }, + { + "href": "./BH40_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ecbbf635dee99be2c85c698ed28e7afa8469bdf2fe2f23aa0a4ada7e04ff0993" + }, + { + "href": "./BH40_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046fc1cd7f519332d7b1d8fff5bf68b14c1a4fdea749dc8d914d3b68de65dcfd7" + }, + { + "href": "./BH40_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202ce96a21016bd137754a9a84bc65bfa60b5ac5977df1ab9e96a5ae7a96a78d26" + }, + { + "href": "./BH40_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220071d135fdde19547a2ad3cc36536c669dea76b0dfaec05dad9003d4acd1a0393" + }, + { + "href": "./BH40_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220795cb3c9636f0f5d744771fc177dfb3f992c1996f5566c2deee3f51742461cf6" + }, + { + "href": "./BH40_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122062f1f8c6422308da1b93fb6630e23db932833ed9a497658c81603f6023c59b67" + }, + { + "href": "./BH40_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f87ec972e583ccdb3205b6207be0c6d404767ed23811ef76bc97f54fde7d4864" + }, + { + "href": "./BH40_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220930e0e1cb660ac8f3bbb9f6f13363b36c6d25cf2acdcee639e3eeea7f2fb4e77" + }, + { + "href": "./BH40_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122067d94f82e186dc5dc87df7c06c8a104ee59034a9e3717f1dc4e2dc3c7593b406" + }, + { + "href": "./BH40_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208fab787ac888fbe75373e4c8104d3285ef2b0015be046b00b50e54bb1b96ae0a" + }, + { + "href": "./BH40_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da34e03d7d6a269bc96ef13c72e17fe790b802dfb66fcb96f5f660c595b3c3de" + }, + { + "href": "./BH40_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200c1badaf209bce61e751e15c42d7904db5430b859d0dd2581511b2cf8e0b754b" + }, + { + "href": "./BH40_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c56141bbb051434eab3c5d0ff485fc9d068a9e54c0389dce8b07c6404ce7e99e" + }, + { + "href": "./BH40_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e8737e6e8ee1caf4d52c00b1216daed91ed5a5cacb58b54e2c4de750e4c27a5" + }, + { + "href": "./BH40_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204cc5495208d9040e348e0eb23afee205799f5de82c245c417f7e573b80a7b0d0" + }, + { + "href": "./BH40_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f09ca9295398e5578eb15a30760c15a223ffe6c7131c4ccfa887272daaceb68f" + }, + { + "href": "./BH40_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204026adcdf00ae0f69ac4609f7c5f530755416901c2e8731f6069dbd77acf4477" + }, + { + "href": "./BH40_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c34f471bbc127fc67a2505d3e7c775fb2498c23bebfaaacc8e389a12b3391f09" + }, + { + "href": "./BH40_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205cc8c5eb9109d5a0ff998938adf2be5072d07c797a6167fe36e98646bbe95ef4" + }, + { + "href": "./BH40_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122048620f6cd9d3026a8a0210d20146916270b67fa93a5d54373a74ae3f987aab98" + }, + { + "href": "./BH41_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203d395072e43068ba178ecdd0b6292bd406c4ee9854019a0371e0c4da4a7bed42" + }, + { + "href": "./BH41_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200308cc7d8ef0d50a561249dd2f21a79dc224991738d18e13ddc4ef0ce9c56de9" + }, + { + "href": "./BH41_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204648e4b2dcdc0ab1ed032523d0dd900c4a1556394ac67d4618ed007e98e5caa8" + }, + { + "href": "./BH41_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cbd5f903d963563bd23de446dfa267186f1be075935bcddd8e7f66f2efdc8224" + }, + { + "href": "./BH41_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209841a1c6854d8d593af8a4dbd264913b2ca2931f0753d33ff1e4a6689b813734" + }, + { + "href": "./BH41_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d63c8a867ff9c73a65c1feda56f4be96af1bcdf7171fc065beb28117b263becf" + }, + { + "href": "./BH41_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bbed3272b3bdc34a3ea311887527f64922c0b68040d31d182a01ae1b21e1132e" + }, + { + "href": "./BH41_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207646d1a0d7892f0876807cb89a2cae336871d79230c0bb9687a90b4e871ef775" + }, + { + "href": "./BH41_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a377b4863d0be5fc603b19411422fa1ab08349d6dc1fea8102a6ad457e5a47eb" + }, + { + "href": "./BH41_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e53f60a6ddcce6a8ab9f665710df4a42ecd9f31a039fb8fc775ec361f1db054b" + }, + { + "href": "./BH41_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a0d80e8441d21324a85d782be82315533591120b573e218063e5f02876e3539" + }, + { + "href": "./BH41_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122001cf21331c4a05b2a6d138f3514262cf057afefa619243fe9dc4bc81cca49f76" + }, + { + "href": "./BH41_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c1cd7b2f8bd1f185ff847b2295a177697ed5a3425dc33d8f9ee053a1f67521c7" + }, + { + "href": "./BH41_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060b0664acbd8f36f425a0276147dfa51e68d6c9715537fc18eb6c4919f3c64ee" + }, + { + "href": "./BH41_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c27b20a516d0ccee52a0d3c4aefda69beae3c795f9cabb9f54b65c91a3dd8f4f" + }, + { + "href": "./BH41_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cc35143cf4aa11d3bf23e1da090146e1a8d67be60e244aab07faa732ecaf1537" + }, + { + "href": "./BH41_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122045a3ca6a9396487f55111d3d5972882f535d3bfa57dd7e4cda3805aa58d13acc" + }, + { + "href": "./BH41_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201319c353e13a6d834db74b4d1f432b12e4212a18f2b1a29dee21e7ac6869fbe0" + }, + { + "href": "./BH41_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043b8e20f98792eda5fdb667601b574822426f55aebb63e56a5133d6d43a2ce82" + }, + { + "href": "./BH41_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220847e230e9216f7db91e6ff9a29f258d897fb01f9bacf16ea392fe770b003e150" + }, + { + "href": "./BH41_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064f4b6245e062b5146c5de6741f21172c4d2415db79361bb0e42636ecc63a8c6" + }, + { + "href": "./BH42_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ee26faf65d2d9783b849656e74f6cc202ccd876ae3cde0a61d3c5306c440244c" + }, + { + "href": "./BH42_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fbd32ae01e7c43667170e51641e340d3b47300662cf60684cf7a3443338aba9a" + }, + { + "href": "./BH42_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c54aa252ca90e37afc3d2660fd4372c9fe46a612e9b1e4ad353caae52f569bdf" + }, + { + "href": "./BH42_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa7895e28cce6f8128032dcca01f1d48e528552c2157f830cae87d1ad1459164" + }, + { + "href": "./BH42_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e2a1ae1ed2e7939811aee8a3601c3b454af83bbef6f8308f1f999c2b7e92bc41" + }, + { + "href": "./BH42_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202697cd11598cd5484f872afc7b28271dad1c31bb3617e93a3318af964d97b6c2" + }, + { + "href": "./BH42_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220780a85f36578dcd9086e8c971526fa23aa4f23e892d5b0ead75d31b3c8a7e6d4" + }, + { + "href": "./BH42_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043d2b6830a5b53b9d25aff7e749cc67e4879fc276a6f6d2c89769e0c1945e70f" + }, + { + "href": "./BH42_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011e47f7657772ecf42631e5ecf4599c576139fdae87ea80b9afe723418c7bb29" + }, + { + "href": "./BH42_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003eb3a66b803b576129c049ae77cf09633cea32cd3b16ac7519d6fc206e90479" + }, + { + "href": "./BH42_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201004f2c2f0585faa643ca3164ee8eb3c5aa64ce6861b5429add29132b081aa7e" + }, + { + "href": "./BH42_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220679fa35a4b00057f0ca8aed5c8b4709e256644efa72cc6f4a37e017c4c610b72" + }, + { + "href": "./BH42_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220892eb4cf6c2dc9f6dfb96cd6cbe4eb6ea7d78b46cdf4748fef6fa15e1aa1c09d" + }, + { + "href": "./BH42_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c1f5f62c52770ea5804cc830871e7c13ae3f4b126c207a2bb0172b38080102fa" + }, + { + "href": "./BH42_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e4b4ea6bc54dea8f4c7de19efd57cb08a943de0aaf959b6715ccb5aaec0e6795" + }, + { + "href": "./BH42_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205bdba8666224ed1b77c4b4ef3d68f0456eb826a4190408d131fc12031d497ed6" + }, + { + "href": "./BH42_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ce58b02fa6edf2e69d4d1afe76bfcba81e71db8d320ecec6e05f98fb5a47dadd" + }, + { + "href": "./BH42_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220753c2e88de9ea4dda659aca15514672ae5512feab813cec4841de8d6c4e138c6" + }, + { + "href": "./BH42_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f3d816d9fb66238f67a6d1d8dea12da0774470237f6a920daea1677871fb457a" + }, + { + "href": "./BH43_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122032abc4572da55bc0b32422e12a023ecad4002e2acfa3bbe3433eaf5937673227" + }, + { + "href": "./BH43_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ab294e155b7ccbd212d39f7b3645672ea42c3113d58b9accf87efb9d512295d9" + }, + { + "href": "./BH43_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0a20a76a31b5edd1ff796b99909b0c4f6eba55c0f82c0d1942225e5e87c6021" + }, + { + "href": "./BH43_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fbb8fde50bb085695f4735927236f54f6992e1b1ac259f88fdcfbf59b22319b0" + }, + { + "href": "./BH43_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207f233e994bd2377a92e958b65aa20e160e7c61f2cbcd10f2b6a1309959491577" + }, + { + "href": "./BH43_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f97575bc4b3f4e38cba0b905d286fce14202d42b037081b4c2716c35038764d6" + }, + { + "href": "./BJ36_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f68c28bd89f646bbef7162e2bf88be9ec9d689c6d78baf375e0c695f5fb252cb" + }, + { + "href": "./BJ36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122084e16fc80a197e77a46a619a0013cddec1a4e358aff715a08eb4c6b5b3c42fb7" + }, + { + "href": "./BJ36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cdf16dc818b82c13d6493643df24336fbbc15dd16ca9eec82739ebb0554eafe4" + }, + { + "href": "./BJ36_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122087e5f9561dbe92617c400c28f64452fdc4cc178b975117a80058a72ec0aedcd4" + }, + { + "href": "./BJ36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202442d6a19a0ff932b3695996345f733230dce7c8e27e69d7f052ccdccd9e1889" + }, + { + "href": "./BJ36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220badc8dce4bd7dcc8ac126a808c6e52f65c74a89c0ff476a4e8d5f0ab935743c9" + }, + { + "href": "./BJ36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220491f37a4c32633c4ae8867787bd126c5623ffe1ff8178af971372f7d24933ee1" + }, + { + "href": "./BJ36_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122041494a2126bd510462d56d782ff554d074664f9b4d420a1a8e4565b3e2723fcf" + }, + { + "href": "./BJ36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d05eb2e280adb9062194d1ca836694a841bfda7dc0aeb4ae5188c9ba829bcb31" + }, + { + "href": "./BJ36_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e935289a772d10ef633e514b74581fa4e68c4b44d131ee8fbfffdec5e99a8088" + }, + { + "href": "./BJ36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b58c641f64dfa34e78fd25d70e1344b651bda90d5da95310fe95597434857e9a" + }, + { + "href": "./BJ36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220acb7441ffe4e51cec100b201a38dea612c27e7d2f5c79e113f2a758f1a4ebf9a" + }, + { + "href": "./BJ36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a2c97933e31ba0c3a1bd9adbed980164b427e5e675a8f3402e6f37df0fccdc9" + }, + { + "href": "./BJ36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b9ab39112bc1a2b44b61b2a99f45bd2938653d9ee68bcae957714d63610ec8c6" + }, + { + "href": "./BJ37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022e271722321e63902de66d39e86d5db07cc0e2007a53cf48e9a4a58d2417a9a" + }, + { + "href": "./BJ37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f69d0a66b6160a6546d06de4d8399cbec2ebd478effa0fafe7c0d1eb3f038543" + }, + { + "href": "./BJ37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c6ddf85bb871768159ca824bfee77bd820fa27ce594626596635546fddc390cd" + }, + { + "href": "./BJ37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220969900a0e92b7e9243cc3cd9b8f1e85eca6c53ea7b0936040df20ed656d0f7f9" + }, + { + "href": "./BJ37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122023b4b4b3ec5e11069076664f0dcabd077b3809bfb8c94af57bbeb4b6ca97fa47" + }, + { + "href": "./BJ37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c3c7d46dde065379c8c7b25ebba3b2ad1e17b96dbeb4d7ad7cbacf9ab35dc2b1" + }, + { + "href": "./BJ37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220612ac779e731566ae8df3555dc4cc86027423bf182a8da20b9ec6aef9f4ada99" + }, + { + "href": "./BJ37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b4883b31dc31ea7d752bf66d5c9c23777a51382f1672b1a39183d80e7d0d3d0" + }, + { + "href": "./BJ37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122019704df46fe485dd20d3fd584d60ab4d62bbbbc351dd290d4e3a3ffd56d46c31" + }, + { + "href": "./BJ37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205db24cd30d1b30a4eb65cfbd555fec9e645fb4971b0bf99bb38ea83bdcb708e2" + }, + { + "href": "./BJ37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220016e7e4d9fc7caf0ad339b0b27c6e26cc7cc514eb9fbdb982e9a4c3ad13bf87c" + }, + { + "href": "./BJ37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0307e298e357fb0924b5830bb8d8a7b8bae35e2ebf6d63abea0c3af42a7aa8e" + }, + { + "href": "./BJ37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203364269d8f52c8a3987e072840f891cc798c2275776705b4a11df7b7cf1cd18f" + }, + { + "href": "./BJ37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f83d9a85dc44bb5131f978347393199ba7787892d0659bfe9def35833772ddf" + }, + { + "href": "./BJ37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220054536c5fa4c67d13a72ae7af3301a5fd68b5615c0504ae6a3e4ed824c1829a9" + }, + { + "href": "./BJ37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208019d0d7f4ae185df67d775b987f7cb68ff876750e98adb378a8622a0f89bc64" + }, + { + "href": "./BJ37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206da4f0e72add6cafed64d33d20e4c9ccc170a4cacf06c3597fd8a90418941abe" + }, + { + "href": "./BJ37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202eaa21e59c764cb76ef350ba28b428ee67a999e7107c138298952b4c72f1baa2" + }, + { + "href": "./BJ37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d70cae37383c84976201e4b8577c40e3be2463e4164452bb179b1b87b57b481" + }, + { + "href": "./BJ37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f9584359722b702f70dbc950e705a852be7fd7884975827489a1da67d1e955be" + }, + { + "href": "./BJ37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6d89ce166fbebf8f454405cdb1ca5c6b00723d3a0c16b4b178c83783dabd6e6" + }, + { + "href": "./BJ37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209c4375ce4916821ecf448711196997ef31fd5d40a82cc7f3c1d37b669a1a0fa8" + }, + { + "href": "./BJ37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e97584f643b6819f4c525cb62e8271acedb0e71b9842053f08193c1243717276" + }, + { + "href": "./BJ37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209031428ce9d7ff0306349a43b820a32bc907465deee1a3bfd35b2844b4759ef4" + }, + { + "href": "./BJ38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aec17171424363b8724399473f483752f1e7a57446c414c7f70880187643f1ab" + }, + { + "href": "./BJ38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220579362e3d0cc1602b89f780c04ccbc3796d7532fe6ecb43f1884448b5600d29f" + }, + { + "href": "./BJ38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003119f0e1ddb32d87528493ab23c0fd8be1c37d31f426afa32774ebce8228414" + }, + { + "href": "./BJ38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ad4e15fc7d520848c9ac080b4f0d1401a36d441eac0486a9abbb0696edb7c334" + }, + { + "href": "./BJ38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a1bb2580a4c67047a0ab112f8b9e6c0fddde6a5e5ce16f87a5d326745d953e16" + }, + { + "href": "./BJ38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205eead481efc5ed389b5223bf6fd8b754d5a116249b729368832fd04d002b2b70" + }, + { + "href": "./BJ38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202846574fbb589eb0387b48798651c7e18050c3eafd1f99dee8d625c762bbd20d" + }, + { + "href": "./BJ38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d8bb51b11bf57d3a9f969962899854a5cbbe45ec425f7837eaac35770de9c5bf" + }, + { + "href": "./BJ38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220270a473b0ed29778bac4136a93d146b211925ac37877c06fa5838302644dc44a" + }, + { + "href": "./BJ38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a20f2125fb573b26d7cb57614510639c054a7073d6a8aca46a65b7ac372ff507" + }, + { + "href": "./BJ38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200dc73535682bc1a2daf1f35688e4c814ed3d4caf0bea55913d4d080b27a941ff" + }, + { + "href": "./BJ38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206184572540f7434ea64aed44a24b25dc3bbac0737c6eda46712d89b6d89d5bb3" + }, + { + "href": "./BJ38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d68a51de6d6868059880a3f3b2e53eef4bddce1f436cf3ef00428769ca36bf25" + }, + { + "href": "./BJ38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dd788874d3f27c50316f78937bcf29f6f6f6c20f5337d70536dc7c6e5fc915dd" + }, + { + "href": "./BJ38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220172f450e8f4af223f80a1b5d511657557c9134322bc02abe1e7eb84fac9cefa5" + }, + { + "href": "./BJ38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df90b30169b28e6eee99c525ff2c1172282490f710b122626295db8c77dfc13b" + }, + { + "href": "./BJ38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e65a4d4c2beed8ac72316a87b541095abbcef4f3dea59ee2971f2b6a9b93d411" + }, + { + "href": "./BJ38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122065f4e1048bd37919eb3e2ebd128ab4b98882f664d0dc2bd27cc46c193ef65cab" + }, + { + "href": "./BJ38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206465f06972b59be5db5c2857764a55b29908ace6b4715b861a55f87e91ae7379" + }, + { + "href": "./BJ38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122012f2519e39c5eecfab3613a066c19f4d9f91ac59175cbb0b8f91a5fd374d64be" + }, + { + "href": "./BJ38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204fd0fd8695b7ea52dda63a92b777013c44b916f576c3fac7baf0a27ead29d779" + }, + { + "href": "./BJ38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220daac41b0fc90edb8e6a75a6ee8ab6565936eac05d60fbc587e663ea9ef915ec5" + }, + { + "href": "./BJ38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207f64882575222a4596a19a27aca978f31cd8d1665a99593bf8dba079204d86ed" + }, + { + "href": "./BJ38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122076e72b23ab03582d9f83bcfccec79543d7f2540aec686f85bb3f27d545b1b684" + }, + { + "href": "./BJ38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ae4905fcffe2fc4ccec7f286bc222cf65a5fc6a1a064b3b6b7d56197cda7c69f" + }, + { + "href": "./BJ39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220db773877a06adbcc5387d20ce4ce2cc33abe413fba92dd8bad8adb3e1949bed1" + }, + { + "href": "./BJ39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d3faee6a64ae6d3d5c8bff066e3c102931115a3b071acb6ace112b3254748da" + }, + { + "href": "./BJ39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cdaf980d8b4441b3333bf870689514244f78d092db5a3be203df56e6d2d680e5" + }, + { + "href": "./BJ39_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a1f4ebdf3e180199f97e152fc6618067fe47a24426a091f52e9e4919e8ac62aa" + }, + { + "href": "./BJ39_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f11f057a96768352a4399ceb27617d839da89a0423a517f2705ae3cf1d93c567" + }, + { + "href": "./BJ39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fdec6b84122c94ffca0d38007d886913286f77a6d95944ca32a17488170ff58f" + }, + { + "href": "./BJ39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e185b2f92e9443f9b73a8722d6924e1f9cbad5a774cb8a704103a291289780ee" + }, + { + "href": "./BJ39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204ee3f43895acd31f0a3abd74d31f7e38f6b861a7e3cbf0249ce4e6400eac8e97" + }, + { + "href": "./BJ39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b7efd407fa4c17ff5ea840bdc71ec49b25e232d85ec484e1ab00a33988e11dbe" + }, + { + "href": "./BJ39_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fbad195d57f326d315c8174ad41ab8645990e38e6b0076353acf88308413c93" + }, + { + "href": "./BJ39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f31c57ded95a9c016c3b6dd072ccd9f5d72cbcffd4d2f24fd388f9484f7e1aa" + }, + { + "href": "./BJ39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a1796d8c270bfb4554f877eb85c9a41ec28dae1833dabfc4115a6947c15c3e9f" + }, + { + "href": "./BJ39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046f29a9e332c11549818bcf8f9d8933911a605ca1827a111347bb8263f167ce4" + }, + { + "href": "./BJ39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122071b608cf7d1d305c168de133e46459c6a38b1069a9e906d27924d1ce51c55f58" + }, + { + "href": "./BJ39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202e88994946121ad8e5ea922d2bc9b8758bbe6d428fd07ddc812d6e8efdd09924" + }, + { + "href": "./BJ39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064707a465d32b451fd0359a399076cc852aa1fc3468181a5c15f218e82c58198" + }, + { + "href": "./BJ39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208301dd702a84e9b7c24f1698d288abaac4a09f6c1e68006a90c38961dda95e4d" + }, + { + "href": "./BJ39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fba322f74bb0fd4f402455aede57a0ac2b7c25f4f737d0f51c86644df8af300" + }, + { + "href": "./BJ39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f6c898b2d35b8eee35e2a3be79e7d9e0dee5496941ca544410e6480ed89437e0" + }, + { + "href": "./BJ39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dec1847317901061c91d9916e4eb45be14fa435ea24749ce799c1642faa48010" + }, + { + "href": "./BJ39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7de62729cf0f8a67c2d99783e3620dfffbb4e9418d523f88263f282ede77b07" + }, + { + "href": "./BJ40_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203aefd6a7c16cbf86a2756da31cc2b8f1813319daed6470f276f70b264bb528d2" + }, + { + "href": "./BJ40_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4cbea381c5d18d0cb44e42ba907b8b478f7d967346c81d83104d09bcc77ca97" + }, + { + "href": "./BJ40_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fad616d10cbc9d4fff527e77b7a32e2bdc3490b44425108a122fe436ca1ce7aa" + }, + { + "href": "./BJ42_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122016c173e1731636620dd51e661dcde1afa085341f294ab5678d482d389446a506" + }, + { + "href": "./BJ42_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4f182a0dccaef7f6368fd9dc1c810d3d0fce76e159f810dd8c5e53d6b4166ea" + }, + { + "href": "./BJ42_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207a55ab912838191a4b1163a5407895b044b5b7354ffe3290db8b8b0a478b5124" + }, + { + "href": "./BJ43_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073fc2b748b0a219b10fef95b157cdbc910a13e1ed3f1153f5b3a090e52c92811" + }, + { + "href": "./BJ43_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205bc91fb156108d6ff4ac85e0470e93eddf3d48cc77c18398278ce9db3885eeb7" + }, + { + "href": "./BJ43_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b8f7fb6b78c05c8df0b57346bba60e61ee37021c5125704c4a63bd3f56bd71a" + }, + { + "href": "./BJ43_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122007630d38fc57e40069b4e3e9c5179282fcfa24efb9717fa08a7c836d3d1a8cf6" + }, + { + "href": "./BJ43_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bfe41540276ef4ec7cc68b012380d9fe70577bec9ba6d76912bbd277caa0bf7d" + }, + { + "href": "./BJ43_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220330a42866755f2dc4849f6438bd42e03e50e057f46af6d6951a388148bf211e4" + }, + { + "href": "./BK36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d181ba603d44d43cdae341baf5fce32023aa83386e7aee6cd5c589c93bac45c0" + }, + { + "href": "./BK36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d6066673dc16535bdbbc6993b1134099bd88682be156da2986b3133a580adbb8" + }, + { + "href": "./BK36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bb6fe3591e31c97ab2de4e80940be1175ba4ee476529f08fbf322fff5df51240" + }, + { + "href": "./BK36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122071557cc387f9b053d225a0ca8a4cb0abee3a1d768079864c7f4db9d4e4e7ae46" + }, + { + "href": "./BK36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122088251f033908fda0b506c860ac48bb58c40d87edef406ee3eb512f3ea00d01fe" + }, + { + "href": "./BK36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203d2bf31fe5484f90a265446bf00578cdee3fef9242338b1b272bba6bdb280a0c" + }, + { + "href": "./BK36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b433315570f2f5f0b10bc30f536043a2bc7b1374abb745bacc1b601e496c7e6d" + }, + { + "href": "./BK36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201bac5828f8701842d9e0fe8871155344c5cf7359d4d753b2a7eb1356460030e9" + }, + { + "href": "./BK36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e36f9a6f1f69a53deb4319bdb94b39e10ef29fbbc346467ff43e933dd23dfbef" + }, + { + "href": "./BK37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c820b8dff56e9c501cdd8d5dbf81e51044b9d3898dd7f8f2e8a5345311c74710" + }, + { + "href": "./BK37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d1ca64fd257278f19753ec9941ff636e2ebd8385eb58b30dd9cfd57a62b3a137" + }, + { + "href": "./BK37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209669171ada68b621814a1c105778402b98f8c17fa899db098f77d0a8d2b18910" + }, + { + "href": "./BK37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122036ef81a19380dfd1ada60df493bf80d7255523dd59c9b3197115a3bd84bb58b2" + }, + { + "href": "./BK37_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205fa28f5ee60b1dcbf5ff12cba6704e0d9f77ee3eed8109b43730c5e5324be578" + }, + { + "href": "./BK37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1e50e9dc475646cf03aee9050b2867ce0372055de5f46858e384e68273229ec" + }, + { + "href": "./BK37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbaab20083e5b7e040a1f66de7cc47bb84100c3382d35ce69f092f3ecc118a3d" + }, + { + "href": "./BK37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f9c76fb50da601109131cff69183d23d5606bdd3a6bc88307a4429b1250da29" + }, + { + "href": "./BK37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf2dd1081b5ad60c4792b40307c858db49fb3e37da12c5cbe82eff020b4436e3" + }, + { + "href": "./BK37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dce72d11f37f51c68af0e7a4ad8ab88e1a58fff077c84afd3c9bd95e04185267" + }, + { + "href": "./BK37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204df2c76d7d0c4a12e925540d07a4bb240ab9726ccad618aa760784d806724d09" + }, + { + "href": "./BK37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201fe3abc50e55944cc9c978cb24fc7571478ecf3259169e7caaae9ed5be658dcc" + }, + { + "href": "./BK37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d10d7cfd24a263331f32c1c92f01c6d5dc59c03393dc89228dc52fa5d315cee" + }, + { + "href": "./BK37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b1ea33024c9e299c8d6acea75955b4c400f0438bcba75c75b0948e54a79286f9" + }, + { + "href": "./BK37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ad8ef1a063e51314e2e11294cd765889d6fd02757b0d50e5d0605a33d5d672a4" + }, + { + "href": "./BK37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e9275224fd6a8fb39ab60fd72957a17ab8dcf128d68a97bdfc6d07898eef0175" + }, + { + "href": "./BK37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b193e2350f138949952c07987496f5035f084644a051ee44291a3b6c87059293" + }, + { + "href": "./BK37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f8304a7c4697cea27e179b7b9987409b9649fba5520a6a06fb70a70cb1ef31e5" + }, + { + "href": "./BK37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202b944ddf44406240e52fd8321322c2e738dc5cf47e83613df21d1ce86a54c569" + }, + { + "href": "./BK37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a0bfac9c97e9c80ba459d4175d6417ff7b90dfbc88bd8d5828fd0e03a6e1d8a8" + }, + { + "href": "./BK37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220893d3bb3615dbe08c0c8d1a5c6d3a22f1e76349176c2448afec5a31b683ef3c4" + }, + { + "href": "./BK37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d57830e92b8bdc9f76a043b6acd65e3fb82075580dd21841e4f6928281ac39ea" + }, + { + "href": "./BK37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b7980103dad6c24227ffb5c987d72c893c0c0555d9b4c29ae042d324d6edeefe" + }, + { + "href": "./BK37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203fc57fde9d1582abbfd3f01808a33adf76202bb7b29c4af62273f664fa03491b" + }, + { + "href": "./BK37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ffd3182fbd6cbbd2a80b369ad94f1e99389da8c742477d1d2daa21d628eb3d03" + }, + { + "href": "./BK38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a5e9137ace787907359ae003f5be9188a4c0a380d939f9d19ce110523b5b091b" + }, + { + "href": "./BK38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f081ab466baaf23b226816c45669b40b3285befd47f9c5cb76c59e86a2b00676" + }, + { + "href": "./BK38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c7c2aab83ad0742ebeab8462c4002b0a26bea358fd11aff5b92411a69cb39c3" + }, + { + "href": "./BK38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122083d0200828cd002c8a267accf7fa991c5e3c26f58c47f1ef080e7a87ecbd870d" + }, + { + "href": "./BK38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c4552cc889cff1d99bd424499b3791ae0f47ed4f06f496b922daed6f9c1a7f38" + }, + { + "href": "./BK38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122092f01f52b276ff8264314ab0ee8b85b9924560400da6d0064c5ce4bbeee3d6f3" + }, + { + "href": "./BK38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220136dcccceeabf262f8e210d815454e2dbfa74e1e69980cc5c6cef5fea6fedf50" + }, + { + "href": "./BK38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b7fa8bdd89a32b09c06623948512da29415cc67dbb88b72b9de3e5d17793b63" + }, + { + "href": "./BK38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220699fc16aba732980e311761dc6cf8fb763cf07397e801c6dc8a4016439723907" + }, + { + "href": "./BK38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed70c147d24f116325558c81272891b3dbe25bbf255ddfaf19b500e92daa4028" + }, + { + "href": "./BK38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b48013afeb2b076961a216c66110a9b47f3b652dcfb667ba25b6410c70e3ef5" + }, + { + "href": "./BK38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b760346569c0590596fe7d4f49a233d6d66409fbaa0e03724e6faeed9fe9fe41" + }, + { + "href": "./BK38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122047cd66e91253af729b4bb9f32b78b7e0be0b515fab9c493f770ccda1689cb869" + }, + { + "href": "./BK38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200c86bfb394a9dc1a63a4222cf1328843fafc4fbac5d6abf8246efaf0034106f9" + }, + { + "href": "./BK38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e5d3baa01519483f09872922652aeb270ac22668e4ee05c556715da3c2b2e547" + }, + { + "href": "./BK38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220370787deeea44a176b69980d1b14bf2a503aed9cc4f4216f7ee336d0646f8ec0" + }, + { + "href": "./BK38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d4d43dd6fb2f8adc14523952aa0c3236a66a36ad066dde7ff532ce3992afc104" + }, + { + "href": "./BK38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f2072d6d226ad8a124f9e87a174746b15128509bf0c2a746234d7e9398bc3ede" + }, + { + "href": "./BK38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122081bbdb0f074af52cea9abfd00182a461ce646e0b91698e0bd612e5b7d4a86e27" + }, + { + "href": "./BK38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b4e911a8668df68ec5ba5a7f6cc2bc23a87f4e8852e04eff6f19c188809bd62d" + }, + { + "href": "./BK38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ee85f1b5ad2f3deba613bcc098020f9fd0103b221229362b756d41e8d688f83f" + }, + { + "href": "./BK38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c07e01a827839f71ee07ca95af869ad8a9312a2ceaaeaaedc3ffccbb7339fa84" + }, + { + "href": "./BK38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204088dbfd571aed51f7fbe9b51dabf3cb32513086408969a00f292c3b50fa3505" + }, + { + "href": "./BK38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206298248606dc1b7108cc123656052e8af44640bd110fb2483c3f37e9a533dc1c" + }, + { + "href": "./BK38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122052cb4404156c0f9f4aa061058dc76723f04bdd3cc07e1150ab8beaecd63eba46" + }, + { + "href": "./BK39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e2a85a8acd8bbc06c29c3998c58d95744e9efb74a6037d494e03045998600dc" + }, + { + "href": "./BK39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207614773d3a9c474b5fb03e7cd3401a683cc9648434a8206ac05e348de77ee6fc" + }, + { + "href": "./BK39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e9ef9e27da8aedb2368178a3845156cba61b472e48dca13f96375002a237acd9" + }, + { + "href": "./BK39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbe7531f6f9d5f2182ab4b4f2b3673bab37afeb8c914f2eeb362160664f29f7a" + }, + { + "href": "./BK39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4cb64eae1dd2a9ad7efef44119033ecd88e15b618a8b3e9e4f2f45619431716" + }, + { + "href": "./BK39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d6ae8cabf94a80ed36b6970e1adbef99f5a783ca09a6c497e874031b21014e3b" + }, + { + "href": "./BK39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122028769fb1936b7275cb5c3fd817dc29f8a44c15ed1260e8675faa77cdd02bcbf7" + }, + { + "href": "./BK39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f912da3ddd675b23a5d489bb27e25fca0c9ec53f314000d1e9bcd3b7393e7b8a" + }, + { + "href": "./BK39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d1040c9a24c419ccf645dd76d208b717561da64529dd3035f6cb6891473fd8ca" + }, + { + "href": "./BK39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201509d9744bfcac2a21e67abb8acc75afdf351b58ce8ce6b17fa1f4d4c6a84850" + }, + { + "href": "./BK39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec38dd7fd39a50dea1a21843037f993877f07098c5c76f12290d18d8c8cebf17" + }, + { + "href": "./BK39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220789f48fc7a8ca7bf3d08fba5b6d910bb6c38ba68fac228b72a89e8087c7500c4" + }, + { + "href": "./BK39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220539d57a9963804400d6ca529bd0e84f4ef3e3ffe5ade9e83f1ac17de496d1cf9" + }, + { + "href": "./BK39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a63c5d425eb68cd46969076bbb82b6c2bc66cac1394a4da597e211a813cddd10" + }, + { + "href": "./BK39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c46fe6e6f406a96db510d2ec66d6d810261837e250908b2292f1937d83410014" + }, + { + "href": "./BK39_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064b4a1fedd0fb66f7c40bc49fa6920bce502d1877e0c1a8dfc55ed29aaeacc9f" + }, + { + "href": "./BK39_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4a5244132ca65fdc503ee73baff6f21173f273c7f7197858be95022e429b9b1" + }, + { + "href": "./BK39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034381be37a941176973d75657eb8c567c40efb66a7683d0ddd7392b1b5c7c93d" + }, + { + "href": "./BK39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122041083d82a82c4bf7db7d36cf7bb9f6c963e925903489b172c45875fb4115516f" + }, + { + "href": "./BK39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209fc68dd7fdce667ed42ff26ba0055184930c7dbcdff857c8e03685f6ade26fc6" + }, + { + "href": "./BK39_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043b52e102a75dbea048334dd8674c1d2225c6053c99190d9a5ac5b1de90ca67c" + }, + { + "href": "./BK39_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd192c997a072a5b356027eaf4c2d3138156fd9fdb24c21829c9531d9794624c" + }, + { + "href": "./BK40_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207e806695acf64a1135f25032c844085ffbf1f0715b67a2ffea01984100864499" + }, + { + "href": "./BK40_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b1b3db0e6747995942bb5ca8b7869435eccdd50cdd7d0454ff8fbd192131c5d4" + }, + { + "href": "./BL36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060883fdaf9b293a4039f32142fc092e0b1f92bb8acaa55751a5e4b8fa1af1b3f" + }, + { + "href": "./BL36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6383537a0f33b72f242ea4ec698bcf842438f976edf75f296f4cd293ff2155b" + }, + { + "href": "./BL36_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204636503bd238a5100902e56e6c999df095a1a78894270a8fd62c2d61911fbdfa" + }, + { + "href": "./BL36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cd2f47eb523b2bc0391e10b1d45e42c38120a203f1b6f8670ee14e0eb77500db" + }, + { + "href": "./BL36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204f9efb711b9d25fede203abe72f4fa7d3418a5156bdc62b8727d75aaf29d2353" + }, + { + "href": "./BL36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201d5b10b97854d29e3a662f2a997aa03609ce189789e67393255e6b6b2413ce3a" + }, + { + "href": "./BL36_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220089569ea5e4d6d72a96dd1eb0527e196394de61f7819246028d6e49c3d101a55" + }, + { + "href": "./BL36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024f9cd56eb337bce49ac07eea10797ddd65b37c5c84cfcffeffacdd97eba971d" + }, + { + "href": "./BL36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4d9d3c9e4d06319c367c4cba96be7b8af5eddb1af125a8602a816353936a13c" + }, + { + "href": "./BL36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200deff732c9eaeb3608808d5520c08deee4a1abff6740b9a5900e2bc9137a379f" + }, + { + "href": "./BL37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a92b00f76eaf7f52fabc57a88441fa323df54f796de113d9732cdc558a9a37a" + }, + { + "href": "./BL37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122093576de0d779ae0681bb2fd9c4be212e6e4a1e80480eb461177ab97a989d05be" + }, + { + "href": "./BL37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f06feda0bee2acdab21c818aba6fe0341560b5fce03c6ce132af620dc2e24016" + }, + { + "href": "./BL37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cd89fb6a49dc856c02d31ef8a8943d852efa2d3de01388338c1c3813a9e5b3a0" + }, + { + "href": "./BL37_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e2bddbe41c3f8ee236494d3aae37e6fa5e2e096960ef5e8aea7a4ee864e1e3f1" + }, + { + "href": "./BL37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220607efbce0e0ad414926c0e1eb3546d2f2beafd920a0fc670974dca407bad3525" + }, + { + "href": "./BL37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220098058d133e5d3afc722545a6bfb29bcdbd7524b8d673d6dd8691c84c0783c97" + }, + { + "href": "./BL37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d159f6245634dd4a40d2308b0f361d951dc0dc099c772ce952f9abb381c5c0e" + }, + { + "href": "./BL37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206ffe7a3ed86f9c46184db9bd6ca60f6935f9727531d4661aac645664a0232617" + }, + { + "href": "./BL37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122040c17673d189eba1ec3d976d628de6a9685b62b3bd1c9e165538f80952486fb5" + }, + { + "href": "./BL37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c49560010f744c0e706e4f42501a141c57b96f44513bbe5614e14d37879cf5d2" + }, + { + "href": "./BL37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b85c2494acbb1eb41f3be204fedc9877803802c7cc964723a2c2f4a3fba2f9ac" + }, + { + "href": "./BL37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122097354983267f52e592889882db08b86355549f4a318001d3dc7fa5e076237587" + }, + { + "href": "./BL37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122098cb232480afe6a7e32d4bfb1622462be6818df8d6e926703ea71f8416f976c0" + }, + { + "href": "./BL37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203a4487b42d7bc85c57ca50ed481aa0c7dd9d9fea45a3e7e9ac2b37e41521a2ed" + }, + { + "href": "./BL37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a77e24b74abad8184bd75ef4eac543b264be2969c39f21058ebf61fc86196b7c" + }, + { + "href": "./BL37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205d7c7402002f78c6e0d1839235654818a2ffdc6f2d224782c521fc7a8523aefa" + }, + { + "href": "./BL37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209c2d4a66d9e00cb313f5cd6236f81407ab945b2d509ab32ed3d83717621bc37c" + }, + { + "href": "./BL37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200a5187c19041a3c4f57bc5d51c22669f45b7e5bd9dd99d67805826357cce7d29" + }, + { + "href": "./BL37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206007f32d1eb0a125b8c7c5c57bf40cd2e89cbfb14ecaea7596397f22d8e70f1b" + }, + { + "href": "./BL37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220098966cc68c37b44fbe6dcc641bef234b48916b660d5ea8b4d1c8968ef7936ba" + }, + { + "href": "./BL37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4d20dea4db4138d67f34becdfa77882edc95897571ff6351adcfc4cc3ddb5f5" + }, + { + "href": "./BL37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eb0fbeba5ff087675a512ca03ce876a307f887cf7faf1bdd1294167daf79b0c0" + }, + { + "href": "./BL37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220233270472a257952f6f189396aa2ea93121774a0f630500b46585b557fd0f2b3" + }, + { + "href": "./BL38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122096a6aeae77367fb6cfd3c7ea59b869b873fc15ee4f92fc26a7d3967ea4c0689a" + }, + { + "href": "./BL38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122000df81d598d055ce35db4d318b796194c3515cb2edc9f70a45af9327fda71162" + }, + { + "href": "./BL38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220397d38299016275fda99e8390ef8ffc8a9e028a698cee7166ac2b71782764120" + }, + { + "href": "./BL38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207670bd96266dd7e818a2e6909e936cc0525e3f1533223219f121ea07320017f9" + }, + { + "href": "./BL38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d846954f564aabaf773a8314d45910568f503be5b27e48ee5145c443814a959d" + }, + { + "href": "./BL38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122042c5743cc061a70f069717f3793cfc9e29030009d64738584769851e0c993aa9" + }, + { + "href": "./BL38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202830713c3b2003ce799bfc6377c2dfdfefd388c05e2f2ccf30c6fb3f1a8bde20" + }, + { + "href": "./BL38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208b1890cb220ad6befca16ea123c7b85309686d77db831c6a90f85327587f6901" + }, + { + "href": "./BL38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220988ce00395847ba07ea0ba816558e192bfa81c664966cd53a23b195584565ebf" + }, + { + "href": "./BL38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b4a10ca6bd8a4261ff1820aba4ff154d17e91a6b88db226c12e95294f14ec5ff" + }, + { + "href": "./BL38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b5f95df7dfd77bb46881dbd94dfbefdba36474eaae3de651f7ee473ff3d4227" + }, + { + "href": "./BL38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c7c5b87807b980fcc641f517b0a60f74ba13e5fa1c5fae96af674c74ae0a9fb0" + }, + { + "href": "./BL38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f2848f52040dc16b8ccac55028553a1dfcb09dfd09e455971d733a8c0787aa6" + }, + { + "href": "./BL38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220819337b84ffbfdd2db24b89213382bef611d90c74d83ede2d1efc97ef70c926c" + }, + { + "href": "./BL38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122014411734d6b90e66d3bb8e9dd5435bebfd40a2ef038bb046c1bbd3332a5b8718" + }, + { + "href": "./BL38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203a11241968e066717109bb2d9c99125251945bad459727baca24043b77838904" + }, + { + "href": "./BL38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ebd2e7563b9a927cdf24cb3423e59bc2dce133256c612a8a352d31725bcca773" + }, + { + "href": "./BL38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204ac85d88304775a765cfcaabba33ad45569ab06aee7d06a67636bfe29c07e67c" + }, + { + "href": "./BL38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d8cc09439b1611fc7eac03345c19584371b059edacfd6bc4f51d24b2601fde4" + }, + { + "href": "./BL38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d113b5639b8866d6e5d86f42078e7d1716a9612a12c327c82c9331c72e8c5993" + }, + { + "href": "./BL38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208a7a656e62587a6aaf3328fc317be63f58d6ef1de0c16da64215ef8c8e8d465d" + }, + { + "href": "./BL38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122063c12b2c751874e7874c03b37a57a7cd4540f388166164cba7fe850305a893ed" + }, + { + "href": "./BL38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e35f5838e05210e0629086db72c959144562f03497df278bebf13acf5166990c" + }, + { + "href": "./BL38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205cc34906acdff7cd2074c884a0989e5fc88cd97d1bee48c7286f927d4ab66ec6" + }, + { + "href": "./BL38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122078b3c404ca4a9b6d5ecc3a8e35576b586dc8a9391d8a7b62c2e55fc95c39316e" + }, + { + "href": "./BL39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122077832d19f01c6227962a04103d2fb129f8c9a3ac614a70cdcadda6c66004dc63" + }, + { + "href": "./BL39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024f6df720081744ef42a66c2a8c1d911ab1f6221f5a1422789c2da796b6acdb9" + }, + { + "href": "./BL39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122005e2ce97017a36bb8bffdf14273ad62624a17950d953ea36ca05d75ce01d1ed2" + }, + { + "href": "./BL39_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ce587ffe0af19e40c28f259a288036a3565ab339d1d80ad67a044d596581c462" + }, + { + "href": "./BL39_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208a77127ab1fd3f062acc237471658872dfd3f9e71bcb657aa920a5ed7b69eb07" + }, + { + "href": "./BL39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c16bb87d2a4889ce12a319d6d6ce905a3aab5bf8f214eb0ef9d31d1846bfb11f" + }, + { + "href": "./BL39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017d3cc8da771acf4bd5d7fd3d1b9dfa0f443686268dea6c26223de5940d2040c" + }, + { + "href": "./BL39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d1babc360a1fc5613dd1af02fb85e81775c710e2d86340d9ced3478c2500ede" + }, + { + "href": "./BL39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204ce5339e03739a0c01a8553af51121a47bc5aa8af303a8c1970a98cc315b5bdd" + }, + { + "href": "./BL39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122027557577196edf453a7fec089bca18f63503929f04aac0ce6fab8136f71fb2b3" + }, + { + "href": "./BL39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122055046704cfc1fd35f12c6b394c57410c518344200e2aa12adc815aab7f443833" + }, + { + "href": "./BL39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df996585b954427b2cb384e4003382c384873b33a19e8d1bb9591d1a66687624" + }, + { + "href": "./BL39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220faaa9a7a109c1c60cd545a90a34a431c8caae8cacf3c5270bef42b8e4149366e" + }, + { + "href": "./BL39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b488811713765e312f3a12ac20f8c3a98cc98e45149a8e0d1cf233bb7e07c9ae" + }, + { + "href": "./BL39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b4739fea5171c74451df34749d5c46d766c9518bf85ac3af02f7639d75be9de9" + }, + { + "href": "./BL39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201e1f7744ee47a8ebae5f834532548e24b06e422f3f768196f69a6dbd3e31adef" + }, + { + "href": "./BM37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122036f3649710ae661fd2776bd3b0d9b718bc2066a37908ed8164f8d3353a906054" + }, + { + "href": "./BM37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a299b670579633bd650521b942ad2e466fb5aff843d10ccbc90b477b61ff157b" + }, + { + "href": "./BM37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206042d2df4183c4f4f374baba30621be73db0e445d5b95ce82cc63df9bca5a87c" + }, + { + "href": "./BM37_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207873526007c37875d858c47c0572a2bedc691495a8394e56db7ba8f5a7845451" + }, + { + "href": "./BM37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6a7d2cbe15812292dc1baa101c86298add1ab3ef338f7f4ffa37909fb905bc6" + }, + { + "href": "./BM37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c4b12c3ed8ab329951ee436bcb70d8fffd2cd93e74d6f7dd370ecaa8d851c482" + }, + { + "href": "./BM37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220daa5a206855205eef5f67e931ffad545529dd558c574bcf030c813bf3cf22b6d" + }, + { + "href": "./BM37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220624e809dc2666e8abb96f255d9eeedd3814ce5fd3d13a73f4a447606b3058633" + }, + { + "href": "./BM37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a467153e2db79e91c875c3ed2cc41713c7d59e18f21501042a6dbe7d0cd5be9b" + }, + { + "href": "./BM37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205a7acd144c9706670f9764e6c07de3104f0428aeafd4af3f0e4cb41d7a8e4985" + }, + { + "href": "./BM37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d42732db306e92124d83103a43142710b49473aa5444552a8137ddd6d7b6b8d3" + }, + { + "href": "./BM37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075c28b43159f47f418c26898bc1c4b8e9b67bad647826c64724c3e45f00d3427" + }, + { + "href": "./BM37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fda872a916b0415f442fea7108ea2eeafe779b66be613c2104aa44ca612a86a5" + }, + { + "href": "./BM37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207118579012d0d4d9913389f56f3654f1b0afe42f30fc135804e974316f5c228d" + }, + { + "href": "./BM37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205b128e5496b84279be4588fdd32084398252c00b0a62ba78314b799df3dc9909" + }, + { + "href": "./BM38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d00539363a1c613c39d9a9343175a5afd0e35ec32b9104f800cb57ee4a0f8a51" + }, + { + "href": "./BM38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122058b645f697765fdbb7731f5e1fb79ea0545b3368987d53c2805031613958867f" + }, + { + "href": "./BM38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e7c49d7c724ac9bdc27670febd70b186e057b7faaa4acf1e23a9035875d1fa60" + }, + { + "href": "./BM38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220500a724eed91e9a24152cb6cacab201994262320414f4fb4b8ebf7131a756cde" + }, + { + "href": "./BM38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207a077d08d685fff1ab93076246c74d2a9559e72b0212fbf076eeb7ff06d2027e" + }, + { + "href": "./BM38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c86c255c8311e3e4c93736466b9cc3405c3d5a2ffce21d1d16c69278f187cf4c" + }, + { + "href": "./BM38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c413ecea41f8d1f6b7ad1a413aba4698c19dd314a2cb1f45dfe2c9855997773" + }, + { + "href": "./BM38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010b624c22b1b965b3ae2e449b98e798e97c479800b5cd0a622c980721ad6d82a" + }, + { + "href": "./BM38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122090d5291bfe7fd68404cbccfc6f8319688bf5070334779b5be36c3f1025a39379" + }, + { + "href": "./BM38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220127424ed7d7e3aa2146fa55f1fe459ebaa46a8c16484d4d2168dc8a942b9eed3" + }, + { + "href": "./BM38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201d0ceb3d5040603d7b9bc0463108e78b7d97ba430724fb80531bd11b9ad30c38" + }, + { + "href": "./BM38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205dc3b6413260e820242b09b0dbd814fbf0921a02c9f1f2682b8e9084a5c21f34" + }, + { + "href": "./BM38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a46b0d3bf07b1c2193600feafb70d5d3e726c2d93868eb6ec358a4763407b6f" + }, + { + "href": "./BM38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220164669a273d266e020b544afc34023e959ecde065a4a15c6e8381d6a593357cc" + }, + { + "href": "./BM38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c677f73c9e7294a8c364d15aa355aa8ce218d1d68c994f6f40c4648abe6b69ad" + }, + { + "href": "./BM38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220525efa1afe766736eb066be4d6bef790f55d0076bc761e50b368ac4f6616168c" + }, + { + "href": "./BM38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220480470866e45b1e080c2971e44b44229a5700a931f05b977606ac6a40daf4325" + }, + { + "href": "./BM38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aee2967bfefc359f60c406a9384d6ed94a52df897827f91f97b42be3c2bd8d00" + }, + { + "href": "./BM39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122082837db78b06d9637f722f00fd6934040714c85a36c2afabd74ae25c7eb1dbb2" + }, + { + "href": "./BM39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122050cfb3686c5a84d12622159cddf2fd34faac23e8f5000b227c255d75b377b6d5" + } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "ongoing", + "linz:geospatial_category": "dem", + "linz:region": "hawkes-bay", + "linz:security_classification": "unclassified", + "created": "2024-10-21T00:03:35Z", + "updated": "2024-10-21T00:03:35Z", + "extent": { + "spatial": { "bbox": [[176.0260349, -40.4739342, 178.0283496, -38.7469279]] }, + "temporal": { "interval": [["2023-11-19T11:00:00Z", "2024-04-26T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "description": "Boundary of the total capture area for this collection. Excludes nodata areas in the source data. Geometries are simplified.", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220cea2956d16191c3859caad951dcb291f6984275bb2b371437f63d1540a9c5607", + "file:size": 664508 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} From 62fc1b02bd977cb4032fd1b50da08ce2813ab526 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:29:19 +1300 Subject: [PATCH 308/309] feat: import Hawke's Bay LiDAR 1m DEM (2023-2024) - Draft LI-1538 (#318) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-39.6106510,177.0532967,z8?style=es-hawkesbay-dem-gkkwm-get-location-2157959152flat&tileMatrix=NZTM2000Quad&debug&config=x8LTjPuCJSepSYSAPwHVdrWs2DnJma8MisYjkgrJgBGvZcvefEDjqjfTU7M9LWeE4AsQzmnZ2rDGB9XR9t3xCZ2CBWLSPaVVzJbSWdDoBmgDHNTXF5krgEb2ExXHerjmdSi7mUcMY5vGCTWNHvyBDZUhV3tfF1GCwC8qQ1SzYrztTE8zFXmC8mXgUJZiNc9y1dwSRS8nxgpxhSATeNq1xX6zS9LDuYnyNdrTEef7yx5ekkBgPep2Jg9) **ODR destination path:** `s3://nz-elevation/hawkes-bay/hawkes-bay_2023-2024/dem_1m/2193/` --------- Co-authored-by: pmcgarva <144646940+pmcgarva@users.noreply.github.com> Co-authored-by: Alice Fage --- ...YCJ3EXF37J4A9130AH7Q2RF-1729479487765.yaml | 8 + .../dem_1m/2193/collection.json | 2395 ----------------- .../dem_1m/2193/collection.json | 2365 +++++++++++----- 3 files changed, 1741 insertions(+), 3027 deletions(-) create mode 100644 publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1729479487765.yaml delete mode 100644 stac/hawkes-bay/hawkes-bay_2023-2024/dem_1m/2193/collection.json diff --git a/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1729479487765.yaml b/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1729479487765.yaml new file mode 100644 index 00000000..a8d494cd --- /dev/null +++ b/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1729479487765.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/20-es-hawkesbay-dem-gkkwm/es-hawkesbay-dem-gkkwm-get-location-2157959152flat/", + "target": "s3://nz-elevation/hawkes-bay/hawkes-bay_2023/dem_1m/2193/", + "ticket": "LI-1538", + "copy_option": "--force", + "region": "hawkes-bay", + "flatten": "false" +} \ No newline at end of file diff --git a/stac/hawkes-bay/hawkes-bay_2023-2024/dem_1m/2193/collection.json b/stac/hawkes-bay/hawkes-bay_2023-2024/dem_1m/2193/collection.json deleted file mode 100644 index 9594388c..00000000 --- a/stac/hawkes-bay/hawkes-bay_2023-2024/dem_1m/2193/collection.json +++ /dev/null @@ -1,2395 +0,0 @@ -{ - "type": "Collection", - "stac_version": "1.0.0", - "id": "01HYCJ3EXF37J4A9130AH7Q2RF", - "title": "Hawke's Bay LiDAR 1m DEM (2023-2024) - Draft", - "description": "Digital Elevation Model within the Hawke's Bay region captured in 2023-2024.", - "license": "CC-BY-4.0", - "links": [ - { - "rel": "root", - "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", - "type": "application/json" - }, - { "rel": "self", "href": "./collection.json", "type": "application/json" }, - { - "href": "./BG41_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122086bd743c7304e563163fd91bdb54f006eb1692837cfbd47dc7c7262845cc9228" - }, - { - "href": "./BG41_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ef77b75969297ba17a5c5fcf4743a9b3ff92fb7c40590e89df58a5592312a487" - }, - { - "href": "./BG41_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122021c4d5e8db1e57729eb648de1b1e5f86000793f86d5f2a848159a90b560d6fea" - }, - { - "href": "./BG41_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a99f2bd7035b91bef10fed6d1ec0c9a349bf5c2adaca8a0f8174527e30299b6e" - }, - { - "href": "./BG42_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209fd97cb9d3c509a6c7969af7b44aefdb489f9ebb87f1a72215a1c393c6169e6e" - }, - { - "href": "./BH36_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203bf86916adce3ad93da2c40e1edf4f37c1dda5cb47edc592841d0bee6af6cac3" - }, - { - "href": "./BH36_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122033236a5c9ddc7716643c629b6159b7134a824ee54c17fa9ff988688d6036155a" - }, - { - "href": "./BH36_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209dd530a782546ba14f9bd53d30bba15984cbea998b5838785e538b6d2af6eb6d" - }, - { - "href": "./BH36_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122022b3fc7120aaa59047dfedec20f934f922ac77779880b8058924ad80c35cb297" - }, - { - "href": "./BH36_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220569df008b456a9be77a697bb190b63f3fbf71ba4f98b67a8b128dc0045e8de88" - }, - { - "href": "./BH37_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200e69f6fd026d98165046d2709e9d54deaee57558f69c0639883a0b26992d0606" - }, - { - "href": "./BH37_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a61ee004afd0d05c4715794c1651cba92ca8e7947b866ec1625c42034039ac46" - }, - { - "href": "./BH38_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206f32cad088ad13515fc1851cef8d35fd36cefdac2927b0dcf8bb08015078f751" - }, - { - "href": "./BH38_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220283ebf20aaf06a2fb1bd5159daee482c8b071ba357ff78e469073ec745ffdfe1" - }, - { - "href": "./BH38_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122062521f9d16feb13179cb1daadd397386c2e64341cd9c7038e22f3a4b396dc23d" - }, - { - "href": "./BH38_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220609954339ad7d6c19f4d1de66c0d851c4cfcac713fad3bbaab6c98a3cced2564" - }, - { - "href": "./BH38_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122060cc6522d4aeb4490a22dc1d946a6a4903368013c506cebf21ab1a0bb9cee1bd" - }, - { - "href": "./BH38_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220219ff69c9e00d49404ba8da3a05cdda2e4cf52b37a5f40a4829c1052c07d7dfd" - }, - { - "href": "./BH38_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203b126e05d75e827f521c919db42c1b7d3bdce412e87ce1151249e862c7c2391f" - }, - { - "href": "./BH38_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b1816e5dc7bc0ea4f169074c594f2e5857b395c3708b0af56bb37ceff84110e9" - }, - { - "href": "./BH39_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f040fac1c8c37027d2472c2243c9ab995afa8711832813489ce7188844f5a5d2" - }, - { - "href": "./BH39_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208e34cac12dfd625c63fa7b92b7389ac8a8058a1f472b0258f7f336762f616f33" - }, - { - "href": "./BH39_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122056ac621f2dada9bb52eecf90dd2f3a5222f8b6d088d53f641da147d68aaf8d53" - }, - { - "href": "./BH39_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b2cf22f3c02aadb175470f26b093069c1caf4a86165bccb183571a71a632f453" - }, - { - "href": "./BH39_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b8c0e18fa3306ad48a6bf1e5c7dd30eceaaa07372e32dc16212a7372caa9d2d7" - }, - { - "href": "./BH39_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200d40bcaad0b8705bad0ac593a7d83481522f6a2ce462afaa9d952d4e62433488" - }, - { - "href": "./BH39_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122016697c83302f28bc6e6711634afea1e073c9c697dcae747810fb6eda91fe1d55" - }, - { - "href": "./BH39_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220be0476162d1330dca43d1450de5d255bd903b1ff743b60b979d6ee7298e50758" - }, - { - "href": "./BH39_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122026badb9c4b3defabe059e8df9a8cd2162507942e1ec54448f86fd308a204f36b" - }, - { - "href": "./BH39_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a838c273004d841f573e007064157a0bfd851c427c28267a051757db81d1bc07" - }, - { - "href": "./BH39_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201e8eaab71f44b8a449b48de49d80d9d665b4efbd90276e41ffed5088b4731c66" - }, - { - "href": "./BH39_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220de4181465e7c744acbcf774c0754e7de7c2d3b1daf8395e4d1fa86f07ec1d01c" - }, - { - "href": "./BH39_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200cac4e6852e6c6a0dc005830eee14853c1963c7d5dac5b94b64d8ecebb1d48f8" - }, - { - "href": "./BH39_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203b8e5f3aaf1d8816dcf6b435c8e69b51cc5bd32ed16b108430aca3eaa57fcb39" - }, - { - "href": "./BH39_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f82cae323f43f84963ca9fce8ab00a0e72ee2e03f35bed37fd830146aa22c1e5" - }, - { - "href": "./BH40_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cb0251775310fab2994102c790bcf2b81687cc15dcf50e5370c4739d88b9f2e2" - }, - { - "href": "./BH40_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122023217402f9ee564b5241f757b820c6f46633d6598cc2b314b947bf384302e751" - }, - { - "href": "./BH40_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ecbbf635dee99be2c85c698ed28e7afa8469bdf2fe2f23aa0a4ada7e04ff0993" - }, - { - "href": "./BH40_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122046fc1cd7f519332d7b1d8fff5bf68b14c1a4fdea749dc8d914d3b68de65dcfd7" - }, - { - "href": "./BH40_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202ce96a21016bd137754a9a84bc65bfa60b5ac5977df1ab9e96a5ae7a96a78d26" - }, - { - "href": "./BH40_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220071d135fdde19547a2ad3cc36536c669dea76b0dfaec05dad9003d4acd1a0393" - }, - { - "href": "./BH40_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220795cb3c9636f0f5d744771fc177dfb3f992c1996f5566c2deee3f51742461cf6" - }, - { - "href": "./BH40_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122062f1f8c6422308da1b93fb6630e23db932833ed9a497658c81603f6023c59b67" - }, - { - "href": "./BH40_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f87ec972e583ccdb3205b6207be0c6d404767ed23811ef76bc97f54fde7d4864" - }, - { - "href": "./BH40_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220930e0e1cb660ac8f3bbb9f6f13363b36c6d25cf2acdcee639e3eeea7f2fb4e77" - }, - { - "href": "./BH40_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122067d94f82e186dc5dc87df7c06c8a104ee59034a9e3717f1dc4e2dc3c7593b406" - }, - { - "href": "./BH40_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208fab787ac888fbe75373e4c8104d3285ef2b0015be046b00b50e54bb1b96ae0a" - }, - { - "href": "./BH40_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220da34e03d7d6a269bc96ef13c72e17fe790b802dfb66fcb96f5f660c595b3c3de" - }, - { - "href": "./BH40_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200c1badaf209bce61e751e15c42d7904db5430b859d0dd2581511b2cf8e0b754b" - }, - { - "href": "./BH40_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c56141bbb051434eab3c5d0ff485fc9d068a9e54c0389dce8b07c6404ce7e99e" - }, - { - "href": "./BH40_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200e8737e6e8ee1caf4d52c00b1216daed91ed5a5cacb58b54e2c4de750e4c27a5" - }, - { - "href": "./BH40_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204cc5495208d9040e348e0eb23afee205799f5de82c245c417f7e573b80a7b0d0" - }, - { - "href": "./BH40_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f09ca9295398e5578eb15a30760c15a223ffe6c7131c4ccfa887272daaceb68f" - }, - { - "href": "./BH40_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204026adcdf00ae0f69ac4609f7c5f530755416901c2e8731f6069dbd77acf4477" - }, - { - "href": "./BH40_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c34f471bbc127fc67a2505d3e7c775fb2498c23bebfaaacc8e389a12b3391f09" - }, - { - "href": "./BH40_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205cc8c5eb9109d5a0ff998938adf2be5072d07c797a6167fe36e98646bbe95ef4" - }, - { - "href": "./BH40_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122048620f6cd9d3026a8a0210d20146916270b67fa93a5d54373a74ae3f987aab98" - }, - { - "href": "./BH41_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203d395072e43068ba178ecdd0b6292bd406c4ee9854019a0371e0c4da4a7bed42" - }, - { - "href": "./BH41_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200308cc7d8ef0d50a561249dd2f21a79dc224991738d18e13ddc4ef0ce9c56de9" - }, - { - "href": "./BH41_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204648e4b2dcdc0ab1ed032523d0dd900c4a1556394ac67d4618ed007e98e5caa8" - }, - { - "href": "./BH41_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cbd5f903d963563bd23de446dfa267186f1be075935bcddd8e7f66f2efdc8224" - }, - { - "href": "./BH41_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209841a1c6854d8d593af8a4dbd264913b2ca2931f0753d33ff1e4a6689b813734" - }, - { - "href": "./BH41_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d63c8a867ff9c73a65c1feda56f4be96af1bcdf7171fc065beb28117b263becf" - }, - { - "href": "./BH41_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220bbed3272b3bdc34a3ea311887527f64922c0b68040d31d182a01ae1b21e1132e" - }, - { - "href": "./BH41_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207646d1a0d7892f0876807cb89a2cae336871d79230c0bb9687a90b4e871ef775" - }, - { - "href": "./BH41_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a377b4863d0be5fc603b19411422fa1ab08349d6dc1fea8102a6ad457e5a47eb" - }, - { - "href": "./BH41_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e53f60a6ddcce6a8ab9f665710df4a42ecd9f31a039fb8fc775ec361f1db054b" - }, - { - "href": "./BH41_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202a0d80e8441d21324a85d782be82315533591120b573e218063e5f02876e3539" - }, - { - "href": "./BH41_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122001cf21331c4a05b2a6d138f3514262cf057afefa619243fe9dc4bc81cca49f76" - }, - { - "href": "./BH41_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c1cd7b2f8bd1f185ff847b2295a177697ed5a3425dc33d8f9ee053a1f67521c7" - }, - { - "href": "./BH41_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122060b0664acbd8f36f425a0276147dfa51e68d6c9715537fc18eb6c4919f3c64ee" - }, - { - "href": "./BH41_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c27b20a516d0ccee52a0d3c4aefda69beae3c795f9cabb9f54b65c91a3dd8f4f" - }, - { - "href": "./BH41_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cc35143cf4aa11d3bf23e1da090146e1a8d67be60e244aab07faa732ecaf1537" - }, - { - "href": "./BH41_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122045a3ca6a9396487f55111d3d5972882f535d3bfa57dd7e4cda3805aa58d13acc" - }, - { - "href": "./BH41_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201319c353e13a6d834db74b4d1f432b12e4212a18f2b1a29dee21e7ac6869fbe0" - }, - { - "href": "./BH41_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122043b8e20f98792eda5fdb667601b574822426f55aebb63e56a5133d6d43a2ce82" - }, - { - "href": "./BH41_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220847e230e9216f7db91e6ff9a29f258d897fb01f9bacf16ea392fe770b003e150" - }, - { - "href": "./BH41_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122064f4b6245e062b5146c5de6741f21172c4d2415db79361bb0e42636ecc63a8c6" - }, - { - "href": "./BH42_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ee26faf65d2d9783b849656e74f6cc202ccd876ae3cde0a61d3c5306c440244c" - }, - { - "href": "./BH42_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fbd32ae01e7c43667170e51641e340d3b47300662cf60684cf7a3443338aba9a" - }, - { - "href": "./BH42_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c54aa252ca90e37afc3d2660fd4372c9fe46a612e9b1e4ad353caae52f569bdf" - }, - { - "href": "./BH42_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220aa7895e28cce6f8128032dcca01f1d48e528552c2157f830cae87d1ad1459164" - }, - { - "href": "./BH42_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e2a1ae1ed2e7939811aee8a3601c3b454af83bbef6f8308f1f999c2b7e92bc41" - }, - { - "href": "./BH42_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202697cd11598cd5484f872afc7b28271dad1c31bb3617e93a3318af964d97b6c2" - }, - { - "href": "./BH42_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220780a85f36578dcd9086e8c971526fa23aa4f23e892d5b0ead75d31b3c8a7e6d4" - }, - { - "href": "./BH42_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122043d2b6830a5b53b9d25aff7e749cc67e4879fc276a6f6d2c89769e0c1945e70f" - }, - { - "href": "./BH42_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122011e47f7657772ecf42631e5ecf4599c576139fdae87ea80b9afe723418c7bb29" - }, - { - "href": "./BH42_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122003eb3a66b803b576129c049ae77cf09633cea32cd3b16ac7519d6fc206e90479" - }, - { - "href": "./BH42_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201004f2c2f0585faa643ca3164ee8eb3c5aa64ce6861b5429add29132b081aa7e" - }, - { - "href": "./BH42_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220679fa35a4b00057f0ca8aed5c8b4709e256644efa72cc6f4a37e017c4c610b72" - }, - { - "href": "./BH42_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220892eb4cf6c2dc9f6dfb96cd6cbe4eb6ea7d78b46cdf4748fef6fa15e1aa1c09d" - }, - { - "href": "./BH42_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c1f5f62c52770ea5804cc830871e7c13ae3f4b126c207a2bb0172b38080102fa" - }, - { - "href": "./BH42_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e4b4ea6bc54dea8f4c7de19efd57cb08a943de0aaf959b6715ccb5aaec0e6795" - }, - { - "href": "./BH42_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205bdba8666224ed1b77c4b4ef3d68f0456eb826a4190408d131fc12031d497ed6" - }, - { - "href": "./BH42_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ce58b02fa6edf2e69d4d1afe76bfcba81e71db8d320ecec6e05f98fb5a47dadd" - }, - { - "href": "./BH42_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220753c2e88de9ea4dda659aca15514672ae5512feab813cec4841de8d6c4e138c6" - }, - { - "href": "./BH42_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f3d816d9fb66238f67a6d1d8dea12da0774470237f6a920daea1677871fb457a" - }, - { - "href": "./BH43_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122032abc4572da55bc0b32422e12a023ecad4002e2acfa3bbe3433eaf5937673227" - }, - { - "href": "./BH43_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ab294e155b7ccbd212d39f7b3645672ea42c3113d58b9accf87efb9d512295d9" - }, - { - "href": "./BH43_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b0a20a76a31b5edd1ff796b99909b0c4f6eba55c0f82c0d1942225e5e87c6021" - }, - { - "href": "./BH43_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fbb8fde50bb085695f4735927236f54f6992e1b1ac259f88fdcfbf59b22319b0" - }, - { - "href": "./BH43_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207f233e994bd2377a92e958b65aa20e160e7c61f2cbcd10f2b6a1309959491577" - }, - { - "href": "./BH43_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f97575bc4b3f4e38cba0b905d286fce14202d42b037081b4c2716c35038764d6" - }, - { - "href": "./BJ36_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f68c28bd89f646bbef7162e2bf88be9ec9d689c6d78baf375e0c695f5fb252cb" - }, - { - "href": "./BJ36_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122084e16fc80a197e77a46a619a0013cddec1a4e358aff715a08eb4c6b5b3c42fb7" - }, - { - "href": "./BJ36_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cdf16dc818b82c13d6493643df24336fbbc15dd16ca9eec82739ebb0554eafe4" - }, - { - "href": "./BJ36_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122087e5f9561dbe92617c400c28f64452fdc4cc178b975117a80058a72ec0aedcd4" - }, - { - "href": "./BJ36_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202442d6a19a0ff932b3695996345f733230dce7c8e27e69d7f052ccdccd9e1889" - }, - { - "href": "./BJ36_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220badc8dce4bd7dcc8ac126a808c6e52f65c74a89c0ff476a4e8d5f0ab935743c9" - }, - { - "href": "./BJ36_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220491f37a4c32633c4ae8867787bd126c5623ffe1ff8178af971372f7d24933ee1" - }, - { - "href": "./BJ36_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122041494a2126bd510462d56d782ff554d074664f9b4d420a1a8e4565b3e2723fcf" - }, - { - "href": "./BJ36_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d05eb2e280adb9062194d1ca836694a841bfda7dc0aeb4ae5188c9ba829bcb31" - }, - { - "href": "./BJ36_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e935289a772d10ef633e514b74581fa4e68c4b44d131ee8fbfffdec5e99a8088" - }, - { - "href": "./BJ36_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b58c641f64dfa34e78fd25d70e1344b651bda90d5da95310fe95597434857e9a" - }, - { - "href": "./BJ36_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220acb7441ffe4e51cec100b201a38dea612c27e7d2f5c79e113f2a758f1a4ebf9a" - }, - { - "href": "./BJ36_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209a2c97933e31ba0c3a1bd9adbed980164b427e5e675a8f3402e6f37df0fccdc9" - }, - { - "href": "./BJ36_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b9ab39112bc1a2b44b61b2a99f45bd2938653d9ee68bcae957714d63610ec8c6" - }, - { - "href": "./BJ37_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122022e271722321e63902de66d39e86d5db07cc0e2007a53cf48e9a4a58d2417a9a" - }, - { - "href": "./BJ37_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f69d0a66b6160a6546d06de4d8399cbec2ebd478effa0fafe7c0d1eb3f038543" - }, - { - "href": "./BJ37_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c6ddf85bb871768159ca824bfee77bd820fa27ce594626596635546fddc390cd" - }, - { - "href": "./BJ37_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220969900a0e92b7e9243cc3cd9b8f1e85eca6c53ea7b0936040df20ed656d0f7f9" - }, - { - "href": "./BJ37_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122023b4b4b3ec5e11069076664f0dcabd077b3809bfb8c94af57bbeb4b6ca97fa47" - }, - { - "href": "./BJ37_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c3c7d46dde065379c8c7b25ebba3b2ad1e17b96dbeb4d7ad7cbacf9ab35dc2b1" - }, - { - "href": "./BJ37_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220612ac779e731566ae8df3555dc4cc86027423bf182a8da20b9ec6aef9f4ada99" - }, - { - "href": "./BJ37_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204b4883b31dc31ea7d752bf66d5c9c23777a51382f1672b1a39183d80e7d0d3d0" - }, - { - "href": "./BJ37_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122019704df46fe485dd20d3fd584d60ab4d62bbbbc351dd290d4e3a3ffd56d46c31" - }, - { - "href": "./BJ37_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205db24cd30d1b30a4eb65cfbd555fec9e645fb4971b0bf99bb38ea83bdcb708e2" - }, - { - "href": "./BJ37_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220016e7e4d9fc7caf0ad339b0b27c6e26cc7cc514eb9fbdb982e9a4c3ad13bf87c" - }, - { - "href": "./BJ37_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e0307e298e357fb0924b5830bb8d8a7b8bae35e2ebf6d63abea0c3af42a7aa8e" - }, - { - "href": "./BJ37_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203364269d8f52c8a3987e072840f891cc798c2275776705b4a11df7b7cf1cd18f" - }, - { - "href": "./BJ37_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205f83d9a85dc44bb5131f978347393199ba7787892d0659bfe9def35833772ddf" - }, - { - "href": "./BJ37_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220054536c5fa4c67d13a72ae7af3301a5fd68b5615c0504ae6a3e4ed824c1829a9" - }, - { - "href": "./BJ37_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208019d0d7f4ae185df67d775b987f7cb68ff876750e98adb378a8622a0f89bc64" - }, - { - "href": "./BJ37_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206da4f0e72add6cafed64d33d20e4c9ccc170a4cacf06c3597fd8a90418941abe" - }, - { - "href": "./BJ37_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202eaa21e59c764cb76ef350ba28b428ee67a999e7107c138298952b4c72f1baa2" - }, - { - "href": "./BJ37_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206d70cae37383c84976201e4b8577c40e3be2463e4164452bb179b1b87b57b481" - }, - { - "href": "./BJ37_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f9584359722b702f70dbc950e705a852be7fd7884975827489a1da67d1e955be" - }, - { - "href": "./BJ37_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b6d89ce166fbebf8f454405cdb1ca5c6b00723d3a0c16b4b178c83783dabd6e6" - }, - { - "href": "./BJ37_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209c4375ce4916821ecf448711196997ef31fd5d40a82cc7f3c1d37b669a1a0fa8" - }, - { - "href": "./BJ37_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e97584f643b6819f4c525cb62e8271acedb0e71b9842053f08193c1243717276" - }, - { - "href": "./BJ37_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209031428ce9d7ff0306349a43b820a32bc907465deee1a3bfd35b2844b4759ef4" - }, - { - "href": "./BJ38_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220aec17171424363b8724399473f483752f1e7a57446c414c7f70880187643f1ab" - }, - { - "href": "./BJ38_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220579362e3d0cc1602b89f780c04ccbc3796d7532fe6ecb43f1884448b5600d29f" - }, - { - "href": "./BJ38_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122003119f0e1ddb32d87528493ab23c0fd8be1c37d31f426afa32774ebce8228414" - }, - { - "href": "./BJ38_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ad4e15fc7d520848c9ac080b4f0d1401a36d441eac0486a9abbb0696edb7c334" - }, - { - "href": "./BJ38_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a1bb2580a4c67047a0ab112f8b9e6c0fddde6a5e5ce16f87a5d326745d953e16" - }, - { - "href": "./BJ38_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205eead481efc5ed389b5223bf6fd8b754d5a116249b729368832fd04d002b2b70" - }, - { - "href": "./BJ38_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202846574fbb589eb0387b48798651c7e18050c3eafd1f99dee8d625c762bbd20d" - }, - { - "href": "./BJ38_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d8bb51b11bf57d3a9f969962899854a5cbbe45ec425f7837eaac35770de9c5bf" - }, - { - "href": "./BJ38_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220270a473b0ed29778bac4136a93d146b211925ac37877c06fa5838302644dc44a" - }, - { - "href": "./BJ38_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a20f2125fb573b26d7cb57614510639c054a7073d6a8aca46a65b7ac372ff507" - }, - { - "href": "./BJ38_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200dc73535682bc1a2daf1f35688e4c814ed3d4caf0bea55913d4d080b27a941ff" - }, - { - "href": "./BJ38_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206184572540f7434ea64aed44a24b25dc3bbac0737c6eda46712d89b6d89d5bb3" - }, - { - "href": "./BJ38_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d68a51de6d6868059880a3f3b2e53eef4bddce1f436cf3ef00428769ca36bf25" - }, - { - "href": "./BJ38_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220dd788874d3f27c50316f78937bcf29f6f6f6c20f5337d70536dc7c6e5fc915dd" - }, - { - "href": "./BJ38_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220172f450e8f4af223f80a1b5d511657557c9134322bc02abe1e7eb84fac9cefa5" - }, - { - "href": "./BJ38_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220df90b30169b28e6eee99c525ff2c1172282490f710b122626295db8c77dfc13b" - }, - { - "href": "./BJ38_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e65a4d4c2beed8ac72316a87b541095abbcef4f3dea59ee2971f2b6a9b93d411" - }, - { - "href": "./BJ38_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122065f4e1048bd37919eb3e2ebd128ab4b98882f664d0dc2bd27cc46c193ef65cab" - }, - { - "href": "./BJ38_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206465f06972b59be5db5c2857764a55b29908ace6b4715b861a55f87e91ae7379" - }, - { - "href": "./BJ38_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122012f2519e39c5eecfab3613a066c19f4d9f91ac59175cbb0b8f91a5fd374d64be" - }, - { - "href": "./BJ38_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204fd0fd8695b7ea52dda63a92b777013c44b916f576c3fac7baf0a27ead29d779" - }, - { - "href": "./BJ38_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220daac41b0fc90edb8e6a75a6ee8ab6565936eac05d60fbc587e663ea9ef915ec5" - }, - { - "href": "./BJ38_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207f64882575222a4596a19a27aca978f31cd8d1665a99593bf8dba079204d86ed" - }, - { - "href": "./BJ38_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122076e72b23ab03582d9f83bcfccec79543d7f2540aec686f85bb3f27d545b1b684" - }, - { - "href": "./BJ38_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ae4905fcffe2fc4ccec7f286bc222cf65a5fc6a1a064b3b6b7d56197cda7c69f" - }, - { - "href": "./BJ39_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220db773877a06adbcc5387d20ce4ce2cc33abe413fba92dd8bad8adb3e1949bed1" - }, - { - "href": "./BJ39_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207d3faee6a64ae6d3d5c8bff066e3c102931115a3b071acb6ace112b3254748da" - }, - { - "href": "./BJ39_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cdaf980d8b4441b3333bf870689514244f78d092db5a3be203df56e6d2d680e5" - }, - { - "href": "./BJ39_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a1f4ebdf3e180199f97e152fc6618067fe47a24426a091f52e9e4919e8ac62aa" - }, - { - "href": "./BJ39_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f11f057a96768352a4399ceb27617d839da89a0423a517f2705ae3cf1d93c567" - }, - { - "href": "./BJ39_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fdec6b84122c94ffca0d38007d886913286f77a6d95944ca32a17488170ff58f" - }, - { - "href": "./BJ39_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e185b2f92e9443f9b73a8722d6924e1f9cbad5a774cb8a704103a291289780ee" - }, - { - "href": "./BJ39_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204ee3f43895acd31f0a3abd74d31f7e38f6b861a7e3cbf0249ce4e6400eac8e97" - }, - { - "href": "./BJ39_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b7efd407fa4c17ff5ea840bdc71ec49b25e232d85ec484e1ab00a33988e11dbe" - }, - { - "href": "./BJ39_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200fbad195d57f326d315c8174ad41ab8645990e38e6b0076353acf88308413c93" - }, - { - "href": "./BJ39_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206f31c57ded95a9c016c3b6dd072ccd9f5d72cbcffd4d2f24fd388f9484f7e1aa" - }, - { - "href": "./BJ39_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a1796d8c270bfb4554f877eb85c9a41ec28dae1833dabfc4115a6947c15c3e9f" - }, - { - "href": "./BJ39_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122046f29a9e332c11549818bcf8f9d8933911a605ca1827a111347bb8263f167ce4" - }, - { - "href": "./BJ39_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122071b608cf7d1d305c168de133e46459c6a38b1069a9e906d27924d1ce51c55f58" - }, - { - "href": "./BJ39_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202e88994946121ad8e5ea922d2bc9b8758bbe6d428fd07ddc812d6e8efdd09924" - }, - { - "href": "./BJ39_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122064707a465d32b451fd0359a399076cc852aa1fc3468181a5c15f218e82c58198" - }, - { - "href": "./BJ39_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208301dd702a84e9b7c24f1698d288abaac4a09f6c1e68006a90c38961dda95e4d" - }, - { - "href": "./BJ39_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200fba322f74bb0fd4f402455aede57a0ac2b7c25f4f737d0f51c86644df8af300" - }, - { - "href": "./BJ39_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f6c898b2d35b8eee35e2a3be79e7d9e0dee5496941ca544410e6480ed89437e0" - }, - { - "href": "./BJ39_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220dec1847317901061c91d9916e4eb45be14fa435ea24749ce799c1642faa48010" - }, - { - "href": "./BJ39_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a7de62729cf0f8a67c2d99783e3620dfffbb4e9418d523f88263f282ede77b07" - }, - { - "href": "./BJ40_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203aefd6a7c16cbf86a2756da31cc2b8f1813319daed6470f276f70b264bb528d2" - }, - { - "href": "./BJ40_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a4cbea381c5d18d0cb44e42ba907b8b478f7d967346c81d83104d09bcc77ca97" - }, - { - "href": "./BJ40_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fad616d10cbc9d4fff527e77b7a32e2bdc3490b44425108a122fe436ca1ce7aa" - }, - { - "href": "./BJ42_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122016c173e1731636620dd51e661dcde1afa085341f294ab5678d482d389446a506" - }, - { - "href": "./BJ42_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a4f182a0dccaef7f6368fd9dc1c810d3d0fce76e159f810dd8c5e53d6b4166ea" - }, - { - "href": "./BJ42_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207a55ab912838191a4b1163a5407895b044b5b7354ffe3290db8b8b0a478b5124" - }, - { - "href": "./BJ43_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122073fc2b748b0a219b10fef95b157cdbc910a13e1ed3f1153f5b3a090e52c92811" - }, - { - "href": "./BJ43_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205bc91fb156108d6ff4ac85e0470e93eddf3d48cc77c18398278ce9db3885eeb7" - }, - { - "href": "./BJ43_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206b8f7fb6b78c05c8df0b57346bba60e61ee37021c5125704c4a63bd3f56bd71a" - }, - { - "href": "./BJ43_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122007630d38fc57e40069b4e3e9c5179282fcfa24efb9717fa08a7c836d3d1a8cf6" - }, - { - "href": "./BJ43_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220bfe41540276ef4ec7cc68b012380d9fe70577bec9ba6d76912bbd277caa0bf7d" - }, - { - "href": "./BJ43_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220330a42866755f2dc4849f6438bd42e03e50e057f46af6d6951a388148bf211e4" - }, - { - "href": "./BK36_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d181ba603d44d43cdae341baf5fce32023aa83386e7aee6cd5c589c93bac45c0" - }, - { - "href": "./BK36_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d6066673dc16535bdbbc6993b1134099bd88682be156da2986b3133a580adbb8" - }, - { - "href": "./BK36_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220bb6fe3591e31c97ab2de4e80940be1175ba4ee476529f08fbf322fff5df51240" - }, - { - "href": "./BK36_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122071557cc387f9b053d225a0ca8a4cb0abee3a1d768079864c7f4db9d4e4e7ae46" - }, - { - "href": "./BK36_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122088251f033908fda0b506c860ac48bb58c40d87edef406ee3eb512f3ea00d01fe" - }, - { - "href": "./BK36_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203d2bf31fe5484f90a265446bf00578cdee3fef9242338b1b272bba6bdb280a0c" - }, - { - "href": "./BK36_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b433315570f2f5f0b10bc30f536043a2bc7b1374abb745bacc1b601e496c7e6d" - }, - { - "href": "./BK36_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201bac5828f8701842d9e0fe8871155344c5cf7359d4d753b2a7eb1356460030e9" - }, - { - "href": "./BK36_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e36f9a6f1f69a53deb4319bdb94b39e10ef29fbbc346467ff43e933dd23dfbef" - }, - { - "href": "./BK37_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c820b8dff56e9c501cdd8d5dbf81e51044b9d3898dd7f8f2e8a5345311c74710" - }, - { - "href": "./BK37_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d1ca64fd257278f19753ec9941ff636e2ebd8385eb58b30dd9cfd57a62b3a137" - }, - { - "href": "./BK37_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209669171ada68b621814a1c105778402b98f8c17fa899db098f77d0a8d2b18910" - }, - { - "href": "./BK37_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122036ef81a19380dfd1ada60df493bf80d7255523dd59c9b3197115a3bd84bb58b2" - }, - { - "href": "./BK37_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205fa28f5ee60b1dcbf5ff12cba6704e0d9f77ee3eed8109b43730c5e5324be578" - }, - { - "href": "./BK37_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f1e50e9dc475646cf03aee9050b2867ce0372055de5f46858e384e68273229ec" - }, - { - "href": "./BK37_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220dbaab20083e5b7e040a1f66de7cc47bb84100c3382d35ce69f092f3ecc118a3d" - }, - { - "href": "./BK37_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201f9c76fb50da601109131cff69183d23d5606bdd3a6bc88307a4429b1250da29" - }, - { - "href": "./BK37_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220bf2dd1081b5ad60c4792b40307c858db49fb3e37da12c5cbe82eff020b4436e3" - }, - { - "href": "./BK37_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220dce72d11f37f51c68af0e7a4ad8ab88e1a58fff077c84afd3c9bd95e04185267" - }, - { - "href": "./BK37_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204df2c76d7d0c4a12e925540d07a4bb240ab9726ccad618aa760784d806724d09" - }, - { - "href": "./BK37_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201fe3abc50e55944cc9c978cb24fc7571478ecf3259169e7caaae9ed5be658dcc" - }, - { - "href": "./BK37_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209d10d7cfd24a263331f32c1c92f01c6d5dc59c03393dc89228dc52fa5d315cee" - }, - { - "href": "./BK37_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b1ea33024c9e299c8d6acea75955b4c400f0438bcba75c75b0948e54a79286f9" - }, - { - "href": "./BK37_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ad8ef1a063e51314e2e11294cd765889d6fd02757b0d50e5d0605a33d5d672a4" - }, - { - "href": "./BK37_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e9275224fd6a8fb39ab60fd72957a17ab8dcf128d68a97bdfc6d07898eef0175" - }, - { - "href": "./BK37_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b193e2350f138949952c07987496f5035f084644a051ee44291a3b6c87059293" - }, - { - "href": "./BK37_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f8304a7c4697cea27e179b7b9987409b9649fba5520a6a06fb70a70cb1ef31e5" - }, - { - "href": "./BK37_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202b944ddf44406240e52fd8321322c2e738dc5cf47e83613df21d1ce86a54c569" - }, - { - "href": "./BK37_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a0bfac9c97e9c80ba459d4175d6417ff7b90dfbc88bd8d5828fd0e03a6e1d8a8" - }, - { - "href": "./BK37_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220893d3bb3615dbe08c0c8d1a5c6d3a22f1e76349176c2448afec5a31b683ef3c4" - }, - { - "href": "./BK37_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d57830e92b8bdc9f76a043b6acd65e3fb82075580dd21841e4f6928281ac39ea" - }, - { - "href": "./BK37_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b7980103dad6c24227ffb5c987d72c893c0c0555d9b4c29ae042d324d6edeefe" - }, - { - "href": "./BK37_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203fc57fde9d1582abbfd3f01808a33adf76202bb7b29c4af62273f664fa03491b" - }, - { - "href": "./BK37_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ffd3182fbd6cbbd2a80b369ad94f1e99389da8c742477d1d2daa21d628eb3d03" - }, - { - "href": "./BK38_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a5e9137ace787907359ae003f5be9188a4c0a380d939f9d19ce110523b5b091b" - }, - { - "href": "./BK38_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f081ab466baaf23b226816c45669b40b3285befd47f9c5cb76c59e86a2b00676" - }, - { - "href": "./BK38_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203c7c2aab83ad0742ebeab8462c4002b0a26bea358fd11aff5b92411a69cb39c3" - }, - { - "href": "./BK38_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122083d0200828cd002c8a267accf7fa991c5e3c26f58c47f1ef080e7a87ecbd870d" - }, - { - "href": "./BK38_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c4552cc889cff1d99bd424499b3791ae0f47ed4f06f496b922daed6f9c1a7f38" - }, - { - "href": "./BK38_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122092f01f52b276ff8264314ab0ee8b85b9924560400da6d0064c5ce4bbeee3d6f3" - }, - { - "href": "./BK38_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220136dcccceeabf262f8e210d815454e2dbfa74e1e69980cc5c6cef5fea6fedf50" - }, - { - "href": "./BK38_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207b7fa8bdd89a32b09c06623948512da29415cc67dbb88b72b9de3e5d17793b63" - }, - { - "href": "./BK38_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220699fc16aba732980e311761dc6cf8fb763cf07397e801c6dc8a4016439723907" - }, - { - "href": "./BK38_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ed70c147d24f116325558c81272891b3dbe25bbf255ddfaf19b500e92daa4028" - }, - { - "href": "./BK38_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204b48013afeb2b076961a216c66110a9b47f3b652dcfb667ba25b6410c70e3ef5" - }, - { - "href": "./BK38_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b760346569c0590596fe7d4f49a233d6d66409fbaa0e03724e6faeed9fe9fe41" - }, - { - "href": "./BK38_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122047cd66e91253af729b4bb9f32b78b7e0be0b515fab9c493f770ccda1689cb869" - }, - { - "href": "./BK38_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200c86bfb394a9dc1a63a4222cf1328843fafc4fbac5d6abf8246efaf0034106f9" - }, - { - "href": "./BK38_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e5d3baa01519483f09872922652aeb270ac22668e4ee05c556715da3c2b2e547" - }, - { - "href": "./BK38_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220370787deeea44a176b69980d1b14bf2a503aed9cc4f4216f7ee336d0646f8ec0" - }, - { - "href": "./BK38_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d4d43dd6fb2f8adc14523952aa0c3236a66a36ad066dde7ff532ce3992afc104" - }, - { - "href": "./BK38_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f2072d6d226ad8a124f9e87a174746b15128509bf0c2a746234d7e9398bc3ede" - }, - { - "href": "./BK38_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122081bbdb0f074af52cea9abfd00182a461ce646e0b91698e0bd612e5b7d4a86e27" - }, - { - "href": "./BK38_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b4e911a8668df68ec5ba5a7f6cc2bc23a87f4e8852e04eff6f19c188809bd62d" - }, - { - "href": "./BK38_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ee85f1b5ad2f3deba613bcc098020f9fd0103b221229362b756d41e8d688f83f" - }, - { - "href": "./BK38_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c07e01a827839f71ee07ca95af869ad8a9312a2ceaaeaaedc3ffccbb7339fa84" - }, - { - "href": "./BK38_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204088dbfd571aed51f7fbe9b51dabf3cb32513086408969a00f292c3b50fa3505" - }, - { - "href": "./BK38_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206298248606dc1b7108cc123656052e8af44640bd110fb2483c3f37e9a533dc1c" - }, - { - "href": "./BK38_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122052cb4404156c0f9f4aa061058dc76723f04bdd3cc07e1150ab8beaecd63eba46" - }, - { - "href": "./BK39_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200e2a85a8acd8bbc06c29c3998c58d95744e9efb74a6037d494e03045998600dc" - }, - { - "href": "./BK39_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207614773d3a9c474b5fb03e7cd3401a683cc9648434a8206ac05e348de77ee6fc" - }, - { - "href": "./BK39_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e9ef9e27da8aedb2368178a3845156cba61b472e48dca13f96375002a237acd9" - }, - { - "href": "./BK39_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220dbe7531f6f9d5f2182ab4b4f2b3673bab37afeb8c914f2eeb362160664f29f7a" - }, - { - "href": "./BK39_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f4cb64eae1dd2a9ad7efef44119033ecd88e15b618a8b3e9e4f2f45619431716" - }, - { - "href": "./BK39_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d6ae8cabf94a80ed36b6970e1adbef99f5a783ca09a6c497e874031b21014e3b" - }, - { - "href": "./BK39_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122028769fb1936b7275cb5c3fd817dc29f8a44c15ed1260e8675faa77cdd02bcbf7" - }, - { - "href": "./BK39_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f912da3ddd675b23a5d489bb27e25fca0c9ec53f314000d1e9bcd3b7393e7b8a" - }, - { - "href": "./BK39_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d1040c9a24c419ccf645dd76d208b717561da64529dd3035f6cb6891473fd8ca" - }, - { - "href": "./BK39_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201509d9744bfcac2a21e67abb8acc75afdf351b58ce8ce6b17fa1f4d4c6a84850" - }, - { - "href": "./BK39_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ec38dd7fd39a50dea1a21843037f993877f07098c5c76f12290d18d8c8cebf17" - }, - { - "href": "./BK39_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220789f48fc7a8ca7bf3d08fba5b6d910bb6c38ba68fac228b72a89e8087c7500c4" - }, - { - "href": "./BK39_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220539d57a9963804400d6ca529bd0e84f4ef3e3ffe5ade9e83f1ac17de496d1cf9" - }, - { - "href": "./BK39_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a63c5d425eb68cd46969076bbb82b6c2bc66cac1394a4da597e211a813cddd10" - }, - { - "href": "./BK39_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c46fe6e6f406a96db510d2ec66d6d810261837e250908b2292f1937d83410014" - }, - { - "href": "./BK39_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122064b4a1fedd0fb66f7c40bc49fa6920bce502d1877e0c1a8dfc55ed29aaeacc9f" - }, - { - "href": "./BK39_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a4a5244132ca65fdc503ee73baff6f21173f273c7f7197858be95022e429b9b1" - }, - { - "href": "./BK39_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122034381be37a941176973d75657eb8c567c40efb66a7683d0ddd7392b1b5c7c93d" - }, - { - "href": "./BK39_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122041083d82a82c4bf7db7d36cf7bb9f6c963e925903489b172c45875fb4115516f" - }, - { - "href": "./BK39_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209fc68dd7fdce667ed42ff26ba0055184930c7dbcdff857c8e03685f6ade26fc6" - }, - { - "href": "./BK39_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122043b52e102a75dbea048334dd8674c1d2225c6053c99190d9a5ac5b1de90ca67c" - }, - { - "href": "./BK39_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fd192c997a072a5b356027eaf4c2d3138156fd9fdb24c21829c9531d9794624c" - }, - { - "href": "./BK40_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207e806695acf64a1135f25032c844085ffbf1f0715b67a2ffea01984100864499" - }, - { - "href": "./BK40_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b1b3db0e6747995942bb5ca8b7869435eccdd50cdd7d0454ff8fbd192131c5d4" - }, - { - "href": "./BL36_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122060883fdaf9b293a4039f32142fc092e0b1f92bb8acaa55751a5e4b8fa1af1b3f" - }, - { - "href": "./BL36_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b6383537a0f33b72f242ea4ec698bcf842438f976edf75f296f4cd293ff2155b" - }, - { - "href": "./BL36_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204636503bd238a5100902e56e6c999df095a1a78894270a8fd62c2d61911fbdfa" - }, - { - "href": "./BL36_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cd2f47eb523b2bc0391e10b1d45e42c38120a203f1b6f8670ee14e0eb77500db" - }, - { - "href": "./BL36_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204f9efb711b9d25fede203abe72f4fa7d3418a5156bdc62b8727d75aaf29d2353" - }, - { - "href": "./BL36_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201d5b10b97854d29e3a662f2a997aa03609ce189789e67393255e6b6b2413ce3a" - }, - { - "href": "./BL36_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220089569ea5e4d6d72a96dd1eb0527e196394de61f7819246028d6e49c3d101a55" - }, - { - "href": "./BL36_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122024f9cd56eb337bce49ac07eea10797ddd65b37c5c84cfcffeffacdd97eba971d" - }, - { - "href": "./BL36_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f4d9d3c9e4d06319c367c4cba96be7b8af5eddb1af125a8602a816353936a13c" - }, - { - "href": "./BL36_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200deff732c9eaeb3608808d5520c08deee4a1abff6740b9a5900e2bc9137a379f" - }, - { - "href": "./BL37_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201a92b00f76eaf7f52fabc57a88441fa323df54f796de113d9732cdc558a9a37a" - }, - { - "href": "./BL37_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122093576de0d779ae0681bb2fd9c4be212e6e4a1e80480eb461177ab97a989d05be" - }, - { - "href": "./BL37_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f06feda0bee2acdab21c818aba6fe0341560b5fce03c6ce132af620dc2e24016" - }, - { - "href": "./BL37_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cd89fb6a49dc856c02d31ef8a8943d852efa2d3de01388338c1c3813a9e5b3a0" - }, - { - "href": "./BL37_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e2bddbe41c3f8ee236494d3aae37e6fa5e2e096960ef5e8aea7a4ee864e1e3f1" - }, - { - "href": "./BL37_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220607efbce0e0ad414926c0e1eb3546d2f2beafd920a0fc670974dca407bad3525" - }, - { - "href": "./BL37_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220098058d133e5d3afc722545a6bfb29bcdbd7524b8d673d6dd8691c84c0783c97" - }, - { - "href": "./BL37_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204d159f6245634dd4a40d2308b0f361d951dc0dc099c772ce952f9abb381c5c0e" - }, - { - "href": "./BL37_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206ffe7a3ed86f9c46184db9bd6ca60f6935f9727531d4661aac645664a0232617" - }, - { - "href": "./BL37_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122040c17673d189eba1ec3d976d628de6a9685b62b3bd1c9e165538f80952486fb5" - }, - { - "href": "./BL37_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c49560010f744c0e706e4f42501a141c57b96f44513bbe5614e14d37879cf5d2" - }, - { - "href": "./BL37_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b85c2494acbb1eb41f3be204fedc9877803802c7cc964723a2c2f4a3fba2f9ac" - }, - { - "href": "./BL37_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122097354983267f52e592889882db08b86355549f4a318001d3dc7fa5e076237587" - }, - { - "href": "./BL37_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122098cb232480afe6a7e32d4bfb1622462be6818df8d6e926703ea71f8416f976c0" - }, - { - "href": "./BL37_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203a4487b42d7bc85c57ca50ed481aa0c7dd9d9fea45a3e7e9ac2b37e41521a2ed" - }, - { - "href": "./BL37_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a77e24b74abad8184bd75ef4eac543b264be2969c39f21058ebf61fc86196b7c" - }, - { - "href": "./BL37_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205d7c7402002f78c6e0d1839235654818a2ffdc6f2d224782c521fc7a8523aefa" - }, - { - "href": "./BL37_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209c2d4a66d9e00cb313f5cd6236f81407ab945b2d509ab32ed3d83717621bc37c" - }, - { - "href": "./BL37_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200a5187c19041a3c4f57bc5d51c22669f45b7e5bd9dd99d67805826357cce7d29" - }, - { - "href": "./BL37_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206007f32d1eb0a125b8c7c5c57bf40cd2e89cbfb14ecaea7596397f22d8e70f1b" - }, - { - "href": "./BL37_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220098966cc68c37b44fbe6dcc641bef234b48916b660d5ea8b4d1c8968ef7936ba" - }, - { - "href": "./BL37_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f4d20dea4db4138d67f34becdfa77882edc95897571ff6351adcfc4cc3ddb5f5" - }, - { - "href": "./BL37_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220eb0fbeba5ff087675a512ca03ce876a307f887cf7faf1bdd1294167daf79b0c0" - }, - { - "href": "./BL37_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220233270472a257952f6f189396aa2ea93121774a0f630500b46585b557fd0f2b3" - }, - { - "href": "./BL38_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122096a6aeae77367fb6cfd3c7ea59b869b873fc15ee4f92fc26a7d3967ea4c0689a" - }, - { - "href": "./BL38_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122000df81d598d055ce35db4d318b796194c3515cb2edc9f70a45af9327fda71162" - }, - { - "href": "./BL38_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220397d38299016275fda99e8390ef8ffc8a9e028a698cee7166ac2b71782764120" - }, - { - "href": "./BL38_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207670bd96266dd7e818a2e6909e936cc0525e3f1533223219f121ea07320017f9" - }, - { - "href": "./BL38_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d846954f564aabaf773a8314d45910568f503be5b27e48ee5145c443814a959d" - }, - { - "href": "./BL38_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122042c5743cc061a70f069717f3793cfc9e29030009d64738584769851e0c993aa9" - }, - { - "href": "./BL38_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202830713c3b2003ce799bfc6377c2dfdfefd388c05e2f2ccf30c6fb3f1a8bde20" - }, - { - "href": "./BL38_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208b1890cb220ad6befca16ea123c7b85309686d77db831c6a90f85327587f6901" - }, - { - "href": "./BL38_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220988ce00395847ba07ea0ba816558e192bfa81c664966cd53a23b195584565ebf" - }, - { - "href": "./BL38_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b4a10ca6bd8a4261ff1820aba4ff154d17e91a6b88db226c12e95294f14ec5ff" - }, - { - "href": "./BL38_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206b5f95df7dfd77bb46881dbd94dfbefdba36474eaae3de651f7ee473ff3d4227" - }, - { - "href": "./BL38_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c7c5b87807b980fcc641f517b0a60f74ba13e5fa1c5fae96af674c74ae0a9fb0" - }, - { - "href": "./BL38_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206f2848f52040dc16b8ccac55028553a1dfcb09dfd09e455971d733a8c0787aa6" - }, - { - "href": "./BL38_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220819337b84ffbfdd2db24b89213382bef611d90c74d83ede2d1efc97ef70c926c" - }, - { - "href": "./BL38_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122014411734d6b90e66d3bb8e9dd5435bebfd40a2ef038bb046c1bbd3332a5b8718" - }, - { - "href": "./BL38_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203a11241968e066717109bb2d9c99125251945bad459727baca24043b77838904" - }, - { - "href": "./BL38_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ebd2e7563b9a927cdf24cb3423e59bc2dce133256c612a8a352d31725bcca773" - }, - { - "href": "./BL38_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204ac85d88304775a765cfcaabba33ad45569ab06aee7d06a67636bfe29c07e67c" - }, - { - "href": "./BL38_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209d8cc09439b1611fc7eac03345c19584371b059edacfd6bc4f51d24b2601fde4" - }, - { - "href": "./BL38_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d113b5639b8866d6e5d86f42078e7d1716a9612a12c327c82c9331c72e8c5993" - }, - { - "href": "./BL38_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208a7a656e62587a6aaf3328fc317be63f58d6ef1de0c16da64215ef8c8e8d465d" - }, - { - "href": "./BL38_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122063c12b2c751874e7874c03b37a57a7cd4540f388166164cba7fe850305a893ed" - }, - { - "href": "./BL38_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e35f5838e05210e0629086db72c959144562f03497df278bebf13acf5166990c" - }, - { - "href": "./BL38_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205cc34906acdff7cd2074c884a0989e5fc88cd97d1bee48c7286f927d4ab66ec6" - }, - { - "href": "./BL38_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122078b3c404ca4a9b6d5ecc3a8e35576b586dc8a9391d8a7b62c2e55fc95c39316e" - }, - { - "href": "./BL39_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122077832d19f01c6227962a04103d2fb129f8c9a3ac614a70cdcadda6c66004dc63" - }, - { - "href": "./BL39_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122024f6df720081744ef42a66c2a8c1d911ab1f6221f5a1422789c2da796b6acdb9" - }, - { - "href": "./BL39_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122005e2ce97017a36bb8bffdf14273ad62624a17950d953ea36ca05d75ce01d1ed2" - }, - { - "href": "./BL39_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ce587ffe0af19e40c28f259a288036a3565ab339d1d80ad67a044d596581c462" - }, - { - "href": "./BL39_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208a77127ab1fd3f062acc237471658872dfd3f9e71bcb657aa920a5ed7b69eb07" - }, - { - "href": "./BL39_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c16bb87d2a4889ce12a319d6d6ce905a3aab5bf8f214eb0ef9d31d1846bfb11f" - }, - { - "href": "./BL39_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122017d3cc8da771acf4bd5d7fd3d1b9dfa0f443686268dea6c26223de5940d2040c" - }, - { - "href": "./BL39_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204d1babc360a1fc5613dd1af02fb85e81775c710e2d86340d9ced3478c2500ede" - }, - { - "href": "./BL39_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204ce5339e03739a0c01a8553af51121a47bc5aa8af303a8c1970a98cc315b5bdd" - }, - { - "href": "./BL39_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122027557577196edf453a7fec089bca18f63503929f04aac0ce6fab8136f71fb2b3" - }, - { - "href": "./BL39_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122055046704cfc1fd35f12c6b394c57410c518344200e2aa12adc815aab7f443833" - }, - { - "href": "./BL39_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220df996585b954427b2cb384e4003382c384873b33a19e8d1bb9591d1a66687624" - }, - { - "href": "./BL39_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220faaa9a7a109c1c60cd545a90a34a431c8caae8cacf3c5270bef42b8e4149366e" - }, - { - "href": "./BL39_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b488811713765e312f3a12ac20f8c3a98cc98e45149a8e0d1cf233bb7e07c9ae" - }, - { - "href": "./BL39_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b4739fea5171c74451df34749d5c46d766c9518bf85ac3af02f7639d75be9de9" - }, - { - "href": "./BL39_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201e1f7744ee47a8ebae5f834532548e24b06e422f3f768196f69a6dbd3e31adef" - }, - { - "href": "./BM37_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122036f3649710ae661fd2776bd3b0d9b718bc2066a37908ed8164f8d3353a906054" - }, - { - "href": "./BM37_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a299b670579633bd650521b942ad2e466fb5aff843d10ccbc90b477b61ff157b" - }, - { - "href": "./BM37_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206042d2df4183c4f4f374baba30621be73db0e445d5b95ce82cc63df9bca5a87c" - }, - { - "href": "./BM37_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207873526007c37875d858c47c0572a2bedc691495a8394e56db7ba8f5a7845451" - }, - { - "href": "./BM37_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b6a7d2cbe15812292dc1baa101c86298add1ab3ef338f7f4ffa37909fb905bc6" - }, - { - "href": "./BM37_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c4b12c3ed8ab329951ee436bcb70d8fffd2cd93e74d6f7dd370ecaa8d851c482" - }, - { - "href": "./BM37_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220daa5a206855205eef5f67e931ffad545529dd558c574bcf030c813bf3cf22b6d" - }, - { - "href": "./BM37_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220624e809dc2666e8abb96f255d9eeedd3814ce5fd3d13a73f4a447606b3058633" - }, - { - "href": "./BM37_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a467153e2db79e91c875c3ed2cc41713c7d59e18f21501042a6dbe7d0cd5be9b" - }, - { - "href": "./BM37_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205a7acd144c9706670f9764e6c07de3104f0428aeafd4af3f0e4cb41d7a8e4985" - }, - { - "href": "./BM37_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d42732db306e92124d83103a43142710b49473aa5444552a8137ddd6d7b6b8d3" - }, - { - "href": "./BM37_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122075c28b43159f47f418c26898bc1c4b8e9b67bad647826c64724c3e45f00d3427" - }, - { - "href": "./BM37_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fda872a916b0415f442fea7108ea2eeafe779b66be613c2104aa44ca612a86a5" - }, - { - "href": "./BM37_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207118579012d0d4d9913389f56f3654f1b0afe42f30fc135804e974316f5c228d" - }, - { - "href": "./BM37_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205b128e5496b84279be4588fdd32084398252c00b0a62ba78314b799df3dc9909" - }, - { - "href": "./BM38_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d00539363a1c613c39d9a9343175a5afd0e35ec32b9104f800cb57ee4a0f8a51" - }, - { - "href": "./BM38_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122058b645f697765fdbb7731f5e1fb79ea0545b3368987d53c2805031613958867f" - }, - { - "href": "./BM38_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e7c49d7c724ac9bdc27670febd70b186e057b7faaa4acf1e23a9035875d1fa60" - }, - { - "href": "./BM38_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220500a724eed91e9a24152cb6cacab201994262320414f4fb4b8ebf7131a756cde" - }, - { - "href": "./BM38_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207a077d08d685fff1ab93076246c74d2a9559e72b0212fbf076eeb7ff06d2027e" - }, - { - "href": "./BM38_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c86c255c8311e3e4c93736466b9cc3405c3d5a2ffce21d1d16c69278f187cf4c" - }, - { - "href": "./BM38_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201c413ecea41f8d1f6b7ad1a413aba4698c19dd314a2cb1f45dfe2c9855997773" - }, - { - "href": "./BM38_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122010b624c22b1b965b3ae2e449b98e798e97c479800b5cd0a622c980721ad6d82a" - }, - { - "href": "./BM38_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122090d5291bfe7fd68404cbccfc6f8319688bf5070334779b5be36c3f1025a39379" - }, - { - "href": "./BM38_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220127424ed7d7e3aa2146fa55f1fe459ebaa46a8c16484d4d2168dc8a942b9eed3" - }, - { - "href": "./BM38_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201d0ceb3d5040603d7b9bc0463108e78b7d97ba430724fb80531bd11b9ad30c38" - }, - { - "href": "./BM38_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205dc3b6413260e820242b09b0dbd814fbf0921a02c9f1f2682b8e9084a5c21f34" - }, - { - "href": "./BM38_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204a46b0d3bf07b1c2193600feafb70d5d3e726c2d93868eb6ec358a4763407b6f" - }, - { - "href": "./BM38_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220164669a273d266e020b544afc34023e959ecde065a4a15c6e8381d6a593357cc" - }, - { - "href": "./BM38_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c677f73c9e7294a8c364d15aa355aa8ce218d1d68c994f6f40c4648abe6b69ad" - }, - { - "href": "./BM38_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220525efa1afe766736eb066be4d6bef790f55d0076bc761e50b368ac4f6616168c" - }, - { - "href": "./BM38_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220480470866e45b1e080c2971e44b44229a5700a931f05b977606ac6a40daf4325" - }, - { - "href": "./BM38_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220aee2967bfefc359f60c406a9384d6ed94a52df897827f91f97b42be3c2bd8d00" - }, - { - "href": "./BM39_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122082837db78b06d9637f722f00fd6934040714c85a36c2afabd74ae25c7eb1dbb2" - }, - { - "href": "./BM39_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122050cfb3686c5a84d12622159cddf2fd34faac23e8f5000b227c255d75b377b6d5" - } - ], - "providers": [ - { "name": "Woolpert", "roles": ["producer"] }, - { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, - { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } - ], - "linz:lifecycle": "ongoing", - "linz:geospatial_category": "dem", - "linz:region": "hawkes-bay", - "linz:security_classification": "unclassified", - "created": "2024-10-21T00:03:35Z", - "updated": "2024-10-21T00:03:35Z", - "extent": { - "spatial": { "bbox": [[176.0260349, -40.4739342, 178.0283496, -38.7469279]] }, - "temporal": { "interval": [["2023-11-19T11:00:00Z", "2024-04-26T12:00:00Z"]] } - }, - "assets": { - "capture_area": { - "href": "./capture-area.geojson", - "title": "Capture area", - "description": "Boundary of the total capture area for this collection. Excludes nodata areas in the source data. Geometries are simplified.", - "type": "application/geo+json", - "roles": ["metadata"], - "file:checksum": "1220cea2956d16191c3859caad951dcb291f6984275bb2b371437f63d1540a9c5607", - "file:size": 664508 - } - }, - "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] -} diff --git a/stac/hawkes-bay/hawkes-bay_2023/dem_1m/2193/collection.json b/stac/hawkes-bay/hawkes-bay_2023/dem_1m/2193/collection.json index 812ce501..9594388c 100644 --- a/stac/hawkes-bay/hawkes-bay_2023/dem_1m/2193/collection.json +++ b/stac/hawkes-bay/hawkes-bay_2023/dem_1m/2193/collection.json @@ -2,8 +2,8 @@ "type": "Collection", "stac_version": "1.0.0", "id": "01HYCJ3EXF37J4A9130AH7Q2RF", - "title": "Hawke's Bay LiDAR 1m DEM (2023) - Draft", - "description": "Digital Elevation Model within the Hawke's Bay region captured in 2023.", + "title": "Hawke's Bay LiDAR 1m DEM (2023-2024) - Draft", + "description": "Digital Elevation Model within the Hawke's Bay region captured in 2023-2024.", "license": "CC-BY-4.0", "links": [ { @@ -13,1258 +13,2356 @@ }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, { + "href": "./BG41_10000_0502.json", "rel": "item", - "href": "./BH36_10000_0404.json", - "type": "application/json", - "file:checksum": "122028a958bd7fa7d991129576a63b9eed41fb069fbd8bda7984fc7baf872053b9ff" + "type": "application/geo+json", + "file:checksum": "122086bd743c7304e563163fd91bdb54f006eb1692837cfbd47dc7c7262845cc9228" }, { + "href": "./BG41_10000_0503.json", "rel": "item", - "href": "./BH36_10000_0405.json", - "type": "application/json", - "file:checksum": "122070f62f8090c7377dabe0506439df91345b599bba2ebf08aff33385ff4ceedae3" + "type": "application/geo+json", + "file:checksum": "1220ef77b75969297ba17a5c5fcf4743a9b3ff92fb7c40590e89df58a5592312a487" }, { + "href": "./BG41_10000_0504.json", "rel": "item", - "href": "./BH36_10000_0503.json", - "type": "application/json", - "file:checksum": "122095a81fe1a7ec0c86e6385a5c42f892ef699c98ae5c9dd4a48d2906ad85ace0cb" + "type": "application/geo+json", + "file:checksum": "122021c4d5e8db1e57729eb648de1b1e5f86000793f86d5f2a848159a90b560d6fea" }, { + "href": "./BG41_10000_0505.json", "rel": "item", - "href": "./BH36_10000_0504.json", - "type": "application/json", - "file:checksum": "122017cebd91fa4e49468cd028b7f7da5745ee393cb52ad3f8d96cd2230b8a4a7306" + "type": "application/geo+json", + "file:checksum": "1220a99f2bd7035b91bef10fed6d1ec0c9a349bf5c2adaca8a0f8174527e30299b6e" }, { + "href": "./BG42_10000_0501.json", "rel": "item", - "href": "./BH36_10000_0505.json", - "type": "application/json", - "file:checksum": "122028c777d0ae1bdc80866406aae120055adf3379e1fa5f37b3e29f821acea52e80" + "type": "application/geo+json", + "file:checksum": "12209fd97cb9d3c509a6c7969af7b44aefdb489f9ebb87f1a72215a1c393c6169e6e" }, { + "href": "./BH36_10000_0404.json", "rel": "item", - "href": "./BH37_10000_0501.json", - "type": "application/json", - "file:checksum": "12209b1bf00f9ee6f7777f97e17a0ab04582114aa1b70a4e026ad6103ec81ae7ff7b" + "type": "application/geo+json", + "file:checksum": "12203bf86916adce3ad93da2c40e1edf4f37c1dda5cb47edc592841d0bee6af6cac3" }, { + "href": "./BH36_10000_0405.json", "rel": "item", - "href": "./BH37_10000_0502.json", - "type": "application/json", - "file:checksum": "12205d4d39b6490d5a1e5176ef4b606148dfe58167fc6e5ca5971860d5d1225c815b" + "type": "application/geo+json", + "file:checksum": "122033236a5c9ddc7716643c629b6159b7134a824ee54c17fa9ff988688d6036155a" }, { + "href": "./BH36_10000_0503.json", "rel": "item", - "href": "./BH38_10000_0304.json", - "type": "application/json", - "file:checksum": "1220ccf2d794c62ade5dd13b7371ef1d99b0800abc9e8f4880fc1586f802d116642e" + "type": "application/geo+json", + "file:checksum": "12209dd530a782546ba14f9bd53d30bba15984cbea998b5838785e538b6d2af6eb6d" }, { + "href": "./BH36_10000_0504.json", "rel": "item", - "href": "./BH38_10000_0305.json", - "type": "application/json", - "file:checksum": "122042c9bc495214beba80686ff17c4731b73f9df1bcf4b772d04a03568c91738a79" + "type": "application/geo+json", + "file:checksum": "122022b3fc7120aaa59047dfedec20f934f922ac77779880b8058924ad80c35cb297" }, { + "href": "./BH36_10000_0505.json", "rel": "item", - "href": "./BH38_10000_0403.json", - "type": "application/json", - "file:checksum": "1220aea474d3a605657fbd33661cd723229a405901813de007542e0e69f6ea30279d" + "type": "application/geo+json", + "file:checksum": "1220569df008b456a9be77a697bb190b63f3fbf71ba4f98b67a8b128dc0045e8de88" }, { + "href": "./BH37_10000_0501.json", "rel": "item", - "href": "./BH38_10000_0404.json", - "type": "application/json", - "file:checksum": "122033905a9a9ec5e3f378067187a3d907d6f2a61241855fbc23c236469d819db445" + "type": "application/geo+json", + "file:checksum": "12200e69f6fd026d98165046d2709e9d54deaee57558f69c0639883a0b26992d0606" }, { + "href": "./BH37_10000_0502.json", "rel": "item", - "href": "./BH38_10000_0405.json", - "type": "application/json", - "file:checksum": "1220cefb2c67763c53959a2794a0cce71f08ffcfdf4985d3c4268dc83ae87c5640c5" + "type": "application/geo+json", + "file:checksum": "1220a61ee004afd0d05c4715794c1651cba92ca8e7947b866ec1625c42034039ac46" }, { + "href": "./BH38_10000_0304.json", "rel": "item", - "href": "./BH38_10000_0503.json", - "type": "application/json", - "file:checksum": "1220d794b9ae7453eac568c0922c28877fe65aba9e87b309ea6be0bb1b18db1f92c8" + "type": "application/geo+json", + "file:checksum": "12206f32cad088ad13515fc1851cef8d35fd36cefdac2927b0dcf8bb08015078f751" }, { + "href": "./BH38_10000_0305.json", "rel": "item", - "href": "./BH38_10000_0504.json", - "type": "application/json", - "file:checksum": "12200a9c044db4579b96259caa3c7dd873a80b336b9e2df161a2a632d27efb5b420a" + "type": "application/geo+json", + "file:checksum": "1220283ebf20aaf06a2fb1bd5159daee482c8b071ba357ff78e469073ec745ffdfe1" }, { + "href": "./BH38_10000_0403.json", "rel": "item", - "href": "./BH38_10000_0505.json", - "type": "application/json", - "file:checksum": "1220b833632cc11005323ad3619e83f05070c573ad0a89d689bd77023d0f11deedf6" + "type": "application/geo+json", + "file:checksum": "122062521f9d16feb13179cb1daadd397386c2e64341cd9c7038e22f3a4b396dc23d" }, { + "href": "./BH38_10000_0404.json", "rel": "item", - "href": "./BH39_10000_0301.json", - "type": "application/json", - "file:checksum": "122045866446fd4c1fb8eb9f4868435d36577e868142e66bc43007bbda415ba4c988" + "type": "application/geo+json", + "file:checksum": "1220609954339ad7d6c19f4d1de66c0d851c4cfcac713fad3bbaab6c98a3cced2564" }, { + "href": "./BH38_10000_0405.json", "rel": "item", - "href": "./BH39_10000_0302.json", - "type": "application/json", - "file:checksum": "1220558941615a9cbdf0550a864ec0f2b44ddd49121181f90756ee26b4b0f2ef8cff" + "type": "application/geo+json", + "file:checksum": "122060cc6522d4aeb4490a22dc1d946a6a4903368013c506cebf21ab1a0bb9cee1bd" }, { + "href": "./BH38_10000_0503.json", "rel": "item", - "href": "./BH39_10000_0303.json", - "type": "application/json", - "file:checksum": "122019990907d4a700165f7a140d2eb79ec8d32de4498748dac1c247b0b71aedeca1" + "type": "application/geo+json", + "file:checksum": "1220219ff69c9e00d49404ba8da3a05cdda2e4cf52b37a5f40a4829c1052c07d7dfd" }, { + "href": "./BH38_10000_0504.json", "rel": "item", - "href": "./BH39_10000_0304.json", - "type": "application/json", - "file:checksum": "122082be0e86ffafb7a972fca606ae04af99249d614777cf9eab76145af1cf50773b" + "type": "application/geo+json", + "file:checksum": "12203b126e05d75e827f521c919db42c1b7d3bdce412e87ce1151249e862c7c2391f" }, { + "href": "./BH38_10000_0505.json", "rel": "item", - "href": "./BH39_10000_0305.json", - "type": "application/json", - "file:checksum": "12203e3b9f3069a948d406a3420bf0f30f9ef199677d38d2881ebf056512f0788404" + "type": "application/geo+json", + "file:checksum": "1220b1816e5dc7bc0ea4f169074c594f2e5857b395c3708b0af56bb37ceff84110e9" }, { + "href": "./BH39_10000_0301.json", "rel": "item", - "href": "./BH39_10000_0401.json", - "type": "application/json", - "file:checksum": "122083f3a469dc3b72f6b7e4ce9b2c820f8061db3e9c1e7ef308eb0dc00ab4d25e15" + "type": "application/geo+json", + "file:checksum": "1220f040fac1c8c37027d2472c2243c9ab995afa8711832813489ce7188844f5a5d2" }, { + "href": "./BH39_10000_0302.json", "rel": "item", - "href": "./BH39_10000_0402.json", - "type": "application/json", - "file:checksum": "12201015cfbe1c7e4fa70767a79530a8b554f9a198e14b983a6021ce7060de68e718" + "type": "application/geo+json", + "file:checksum": "12208e34cac12dfd625c63fa7b92b7389ac8a8058a1f472b0258f7f336762f616f33" }, { + "href": "./BH39_10000_0303.json", "rel": "item", - "href": "./BH39_10000_0403.json", - "type": "application/json", - "file:checksum": "122089565d9fa7a995cb5a042701577c9f7915fd1700fe0b64549a8b40569966fca1" + "type": "application/geo+json", + "file:checksum": "122056ac621f2dada9bb52eecf90dd2f3a5222f8b6d088d53f641da147d68aaf8d53" }, { + "href": "./BH39_10000_0304.json", "rel": "item", - "href": "./BH39_10000_0404.json", - "type": "application/json", - "file:checksum": "122006af5671c4b377a791bd07679727705b8cc892ee87ff390cae427e0c5713b6f4" + "type": "application/geo+json", + "file:checksum": "1220b2cf22f3c02aadb175470f26b093069c1caf4a86165bccb183571a71a632f453" }, { + "href": "./BH39_10000_0305.json", "rel": "item", - "href": "./BH39_10000_0405.json", - "type": "application/json", - "file:checksum": "12208ddf6aa2e0ffd8e5211b7ef053309ad355ec43859d8ceced81d59fdca63aeb7b" + "type": "application/geo+json", + "file:checksum": "1220b8c0e18fa3306ad48a6bf1e5c7dd30eceaaa07372e32dc16212a7372caa9d2d7" }, { + "href": "./BH39_10000_0401.json", "rel": "item", - "href": "./BH39_10000_0501.json", - "type": "application/json", - "file:checksum": "1220bcbe6727a6baf6e125529c806f9951fee31aede20fef13b4d3d61b36be600c35" + "type": "application/geo+json", + "file:checksum": "12200d40bcaad0b8705bad0ac593a7d83481522f6a2ce462afaa9d952d4e62433488" }, { + "href": "./BH39_10000_0402.json", "rel": "item", - "href": "./BH39_10000_0502.json", - "type": "application/json", - "file:checksum": "12201097a857f5aadad9a56bc29cdc33b69e51f39cbb5236d8c45752fb7f5c0adcc6" + "type": "application/geo+json", + "file:checksum": "122016697c83302f28bc6e6711634afea1e073c9c697dcae747810fb6eda91fe1d55" }, { + "href": "./BH39_10000_0403.json", "rel": "item", - "href": "./BH39_10000_0503.json", - "type": "application/json", - "file:checksum": "1220c9ca431cfb38e28410afab7051ccd81dfa26617fdfef03d39c43c63c9adc69ed" + "type": "application/geo+json", + "file:checksum": "1220be0476162d1330dca43d1450de5d255bd903b1ff743b60b979d6ee7298e50758" + }, + { + "href": "./BH39_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122026badb9c4b3defabe059e8df9a8cd2162507942e1ec54448f86fd308a204f36b" }, { + "href": "./BH39_10000_0405.json", "rel": "item", - "href": "./BH39_10000_0504.json", - "type": "application/json", - "file:checksum": "1220863ba098ad943b919b3a903e5c9d8d37016481ed341a41ac732f1995db8ef7c2" + "type": "application/geo+json", + "file:checksum": "1220a838c273004d841f573e007064157a0bfd851c427c28267a051757db81d1bc07" + }, + { + "href": "./BH39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201e8eaab71f44b8a449b48de49d80d9d665b4efbd90276e41ffed5088b4731c66" + }, + { + "href": "./BH39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220de4181465e7c744acbcf774c0754e7de7c2d3b1daf8395e4d1fa86f07ec1d01c" + }, + { + "href": "./BH39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200cac4e6852e6c6a0dc005830eee14853c1963c7d5dac5b94b64d8ecebb1d48f8" }, { + "href": "./BH39_10000_0504.json", "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203b8e5f3aaf1d8816dcf6b435c8e69b51cc5bd32ed16b108430aca3eaa57fcb39" + }, + { "href": "./BH39_10000_0505.json", - "type": "application/json", - "file:checksum": "122042c85d87b403ab3a145eedd3a7efad4a8fb8e3c4966603c1fce0946d75a7aef0" + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f82cae323f43f84963ca9fce8ab00a0e72ee2e03f35bed37fd830146aa22c1e5" }, { + "href": "./BH40_10000_0104.json", "rel": "item", - "href": "./BH40_10000_0401.json", - "type": "application/json", - "file:checksum": "12202826f1213952f801c1b4724a341bff5b784ffe3cd19680e0f8699a5e79f8f84d" + "type": "application/geo+json", + "file:checksum": "1220cb0251775310fab2994102c790bcf2b81687cc15dcf50e5370c4739d88b9f2e2" }, { + "href": "./BH40_10000_0105.json", "rel": "item", - "href": "./BH40_10000_0402.json", - "type": "application/json", - "file:checksum": "1220e003d4114ea62b3e4768c1ab8222d2b7b6eedc2f075323ad18a000c4ad0b897a" + "type": "application/geo+json", + "file:checksum": "122023217402f9ee564b5241f757b820c6f46633d6598cc2b314b947bf384302e751" }, { + "href": "./BH40_10000_0201.json", "rel": "item", - "href": "./BH40_10000_0501.json", - "type": "application/json", - "file:checksum": "1220fb2fd78d6f951fa000bfb0a2c73dd56e9248a7ca16cfa1bb969a9d31546ba742" + "type": "application/geo+json", + "file:checksum": "1220ecbbf635dee99be2c85c698ed28e7afa8469bdf2fe2f23aa0a4ada7e04ff0993" }, { + "href": "./BH40_10000_0202.json", "rel": "item", - "href": "./BH40_10000_0502.json", - "type": "application/json", - "file:checksum": "12201a0bbe8b5c50a175aeb4e0614df8ebdaa1ee81112df1c020b448016e2299894c" + "type": "application/geo+json", + "file:checksum": "122046fc1cd7f519332d7b1d8fff5bf68b14c1a4fdea749dc8d914d3b68de65dcfd7" }, { + "href": "./BH40_10000_0203.json", "rel": "item", - "href": "./BH40_10000_0503.json", - "type": "application/json", - "file:checksum": "1220b0ff8418fe94bc021c4bbd19943f1803d896d63194096b1f24d4bf85f23fdecf" + "type": "application/geo+json", + "file:checksum": "12202ce96a21016bd137754a9a84bc65bfa60b5ac5977df1ab9e96a5ae7a96a78d26" }, { + "href": "./BH40_10000_0204.json", "rel": "item", - "href": "./BJ36_10000_0103.json", - "type": "application/json", - "file:checksum": "12204522c6362b528b19a1b02d5d777692270d621b91fb8d34014b30c92387cfc419" + "type": "application/geo+json", + "file:checksum": "1220071d135fdde19547a2ad3cc36536c669dea76b0dfaec05dad9003d4acd1a0393" }, { + "href": "./BH40_10000_0205.json", "rel": "item", - "href": "./BJ36_10000_0104.json", - "type": "application/json", - "file:checksum": "12200a6c2b4dca1fde9d8650bccebc6194db24d03872f8956d1f8dbff24851441ad1" + "type": "application/geo+json", + "file:checksum": "1220795cb3c9636f0f5d744771fc177dfb3f992c1996f5566c2deee3f51742461cf6" }, { + "href": "./BH40_10000_0301.json", "rel": "item", - "href": "./BJ36_10000_0105.json", - "type": "application/json", - "file:checksum": "12207396f3d997a1d52d8820664196528c788a2d8675357774884428bd77191727af" + "type": "application/geo+json", + "file:checksum": "122062f1f8c6422308da1b93fb6630e23db932833ed9a497658c81603f6023c59b67" }, { + "href": "./BH40_10000_0302.json", "rel": "item", - "href": "./BJ36_10000_0203.json", - "type": "application/json", - "file:checksum": "12202c815c3a9fb9230795563091f452617ebe713a6e825b5185f982bc3da906732c" + "type": "application/geo+json", + "file:checksum": "1220f87ec972e583ccdb3205b6207be0c6d404767ed23811ef76bc97f54fde7d4864" }, { + "href": "./BH40_10000_0303.json", "rel": "item", - "href": "./BJ36_10000_0204.json", - "type": "application/json", - "file:checksum": "1220b03c1e9c28b5cbf6cc207f43fa28029bde99bf802e635582dd509b812ee36b51" + "type": "application/geo+json", + "file:checksum": "1220930e0e1cb660ac8f3bbb9f6f13363b36c6d25cf2acdcee639e3eeea7f2fb4e77" }, { + "href": "./BH40_10000_0304.json", "rel": "item", - "href": "./BJ36_10000_0205.json", - "type": "application/json", - "file:checksum": "122052901148a3d44bb6e6c3c4a0b4e529abf4976d5ef1d287b9adb9266b7515efac" + "type": "application/geo+json", + "file:checksum": "122067d94f82e186dc5dc87df7c06c8a104ee59034a9e3717f1dc4e2dc3c7593b406" }, { + "href": "./BH40_10000_0305.json", "rel": "item", - "href": "./BJ36_10000_0303.json", - "type": "application/json", - "file:checksum": "1220662ebfe0125fc455ec8bf42825272940bea3b5ac24f817aafadc75f2f424dcf7" + "type": "application/geo+json", + "file:checksum": "12208fab787ac888fbe75373e4c8104d3285ef2b0015be046b00b50e54bb1b96ae0a" }, { + "href": "./BH40_10000_0401.json", "rel": "item", - "href": "./BJ36_10000_0304.json", - "type": "application/json", - "file:checksum": "12209884baef195d48fbf3ebb07cfdd6f8b5dba8ffa8c8138fc97fd1635092f9818b" + "type": "application/geo+json", + "file:checksum": "1220da34e03d7d6a269bc96ef13c72e17fe790b802dfb66fcb96f5f660c595b3c3de" }, { + "href": "./BH40_10000_0402.json", "rel": "item", - "href": "./BJ36_10000_0305.json", - "type": "application/json", - "file:checksum": "122089f9e32c5bda09fb921a0bf2448ae58f3d620c994949c46bf21e57a138f9aa69" + "type": "application/geo+json", + "file:checksum": "12200c1badaf209bce61e751e15c42d7904db5430b859d0dd2581511b2cf8e0b754b" }, { + "href": "./BH40_10000_0403.json", "rel": "item", - "href": "./BJ36_10000_0403.json", - "type": "application/json", - "file:checksum": "122040452693ef4a0b5434c922e16b287130284f42112dd9a0afc9782c5189137f84" + "type": "application/geo+json", + "file:checksum": "1220c56141bbb051434eab3c5d0ff485fc9d068a9e54c0389dce8b07c6404ce7e99e" }, { + "href": "./BH40_10000_0404.json", "rel": "item", - "href": "./BJ36_10000_0404.json", - "type": "application/json", - "file:checksum": "1220d3990e1de81a32e0d73a30d8521dafb773a8a686ddd59f2fea1124e87ed118de" + "type": "application/geo+json", + "file:checksum": "12200e8737e6e8ee1caf4d52c00b1216daed91ed5a5cacb58b54e2c4de750e4c27a5" }, { + "href": "./BH40_10000_0405.json", "rel": "item", - "href": "./BJ36_10000_0405.json", - "type": "application/json", - "file:checksum": "12209d05333f7c79649a2db53bfcbddfa577be02d1e39b38decedb0f09507ac00835" + "type": "application/geo+json", + "file:checksum": "12204cc5495208d9040e348e0eb23afee205799f5de82c245c417f7e573b80a7b0d0" }, { + "href": "./BH40_10000_0501.json", "rel": "item", - "href": "./BJ36_10000_0504.json", - "type": "application/json", - "file:checksum": "122023e6552cf616c4a225a18ae74de2b51137405b0771243d6fe953b9f08c710df2" + "type": "application/geo+json", + "file:checksum": "1220f09ca9295398e5578eb15a30760c15a223ffe6c7131c4ccfa887272daaceb68f" }, { + "href": "./BH40_10000_0502.json", "rel": "item", - "href": "./BJ36_10000_0505.json", - "type": "application/json", - "file:checksum": "1220ac66dc02b05173bc42decfcea8a1a960674b05e9204b21cb68ddc80e94425e4d" + "type": "application/geo+json", + "file:checksum": "12204026adcdf00ae0f69ac4609f7c5f530755416901c2e8731f6069dbd77acf4477" }, { + "href": "./BH40_10000_0503.json", "rel": "item", - "href": "./BJ37_10000_0101.json", - "type": "application/json", - "file:checksum": "1220cf487be348995e6607e0aac3eca95bc742651e169b6657e02ef66821b0d83cb3" + "type": "application/geo+json", + "file:checksum": "1220c34f471bbc127fc67a2505d3e7c775fb2498c23bebfaaacc8e389a12b3391f09" }, { + "href": "./BH40_10000_0504.json", "rel": "item", - "href": "./BJ37_10000_0102.json", - "type": "application/json", - "file:checksum": "1220b3f7245f1c19752e5ccb9e323d6428a42ac96c9c7d13165323269e8491c0e475" + "type": "application/geo+json", + "file:checksum": "12205cc8c5eb9109d5a0ff998938adf2be5072d07c797a6167fe36e98646bbe95ef4" }, { + "href": "./BH40_10000_0505.json", "rel": "item", - "href": "./BJ37_10000_0103.json", - "type": "application/json", - "file:checksum": "122053eeae7e7459c0b9fd17ff4feb1f252afae59d53f07f34953fb9055e29807b7d" + "type": "application/geo+json", + "file:checksum": "122048620f6cd9d3026a8a0210d20146916270b67fa93a5d54373a74ae3f987aab98" }, { + "href": "./BH41_10000_0101.json", "rel": "item", - "href": "./BJ37_10000_0104.json", - "type": "application/json", - "file:checksum": "1220800bdb304cc2557ac02ff86ab623b8192a849b2db07c1180a125cb1fc3ce9977" + "type": "application/geo+json", + "file:checksum": "12203d395072e43068ba178ecdd0b6292bd406c4ee9854019a0371e0c4da4a7bed42" }, { + "href": "./BH41_10000_0102.json", "rel": "item", - "href": "./BJ37_10000_0201.json", - "type": "application/json", - "file:checksum": "122034f729914259729df0bcba82109e52e8bc3eb2690d8445261041628f5c81e6c2" + "type": "application/geo+json", + "file:checksum": "12200308cc7d8ef0d50a561249dd2f21a79dc224991738d18e13ddc4ef0ce9c56de9" }, { + "href": "./BH41_10000_0103.json", "rel": "item", - "href": "./BJ37_10000_0202.json", - "type": "application/json", - "file:checksum": "12202e615b1a4b7db2bde2fe01c268458a51b9cbc2a307a499c24f8957cb27eecac3" + "type": "application/geo+json", + "file:checksum": "12204648e4b2dcdc0ab1ed032523d0dd900c4a1556394ac67d4618ed007e98e5caa8" }, { + "href": "./BH41_10000_0104.json", "rel": "item", - "href": "./BJ37_10000_0203.json", - "type": "application/json", - "file:checksum": "12202778d5011f7560a44cace229c94d4c1ffb32f490105708e0b29a8662fcc35aa9" + "type": "application/geo+json", + "file:checksum": "1220cbd5f903d963563bd23de446dfa267186f1be075935bcddd8e7f66f2efdc8224" }, { + "href": "./BH41_10000_0105.json", "rel": "item", - "href": "./BJ37_10000_0204.json", - "type": "application/json", - "file:checksum": "122072265734f94fe191f7b0a11469e19b55b36ca4acbf3972a1a0642404644c5921" + "type": "application/geo+json", + "file:checksum": "12209841a1c6854d8d593af8a4dbd264913b2ca2931f0753d33ff1e4a6689b813734" }, { + "href": "./BH41_10000_0201.json", "rel": "item", - "href": "./BJ37_10000_0205.json", - "type": "application/json", - "file:checksum": "1220e817d55d6a4397143a5a258c2cac00547c33d042123e6d2f74b017d03325f710" + "type": "application/geo+json", + "file:checksum": "1220d63c8a867ff9c73a65c1feda56f4be96af1bcdf7171fc065beb28117b263becf" }, { + "href": "./BH41_10000_0202.json", "rel": "item", - "href": "./BJ37_10000_0301.json", - "type": "application/json", - "file:checksum": "12201a1a67bbed8f14b8c984527412eedca58c3b263f7b404786643cd2174419986b" + "type": "application/geo+json", + "file:checksum": "1220bbed3272b3bdc34a3ea311887527f64922c0b68040d31d182a01ae1b21e1132e" }, { + "href": "./BH41_10000_0203.json", "rel": "item", - "href": "./BJ37_10000_0302.json", - "type": "application/json", - "file:checksum": "1220f0e610d4d5a764f53117e0ea48dd7272f189a449a16933800f3a98dac90f6bfe" + "type": "application/geo+json", + "file:checksum": "12207646d1a0d7892f0876807cb89a2cae336871d79230c0bb9687a90b4e871ef775" }, { + "href": "./BH41_10000_0204.json", "rel": "item", - "href": "./BJ37_10000_0303.json", - "type": "application/json", - "file:checksum": "1220cc42042c3c76e67582b7fa8e8c7d494ccac05cbb91f6d0c843b99fce9f30f9e0" + "type": "application/geo+json", + "file:checksum": "1220a377b4863d0be5fc603b19411422fa1ab08349d6dc1fea8102a6ad457e5a47eb" }, { + "href": "./BH41_10000_0205.json", "rel": "item", - "href": "./BJ37_10000_0304.json", - "type": "application/json", - "file:checksum": "1220ad735ea74756028316b7ae63831352abe24189f93ddb7626109fe1670232f8a0" + "type": "application/geo+json", + "file:checksum": "1220e53f60a6ddcce6a8ab9f665710df4a42ecd9f31a039fb8fc775ec361f1db054b" }, { + "href": "./BH41_10000_0301.json", "rel": "item", - "href": "./BJ37_10000_0305.json", - "type": "application/json", - "file:checksum": "12203aeb902a1298eb122153d7f9ff6ed798c0d1083dc424c702e8e50346a59120e7" + "type": "application/geo+json", + "file:checksum": "12202a0d80e8441d21324a85d782be82315533591120b573e218063e5f02876e3539" }, { + "href": "./BH41_10000_0302.json", "rel": "item", - "href": "./BJ37_10000_0401.json", - "type": "application/json", - "file:checksum": "1220d5252e0626616ae8c44efb668bb9f07ac86518bd0f44bea7418abea99df02478" + "type": "application/geo+json", + "file:checksum": "122001cf21331c4a05b2a6d138f3514262cf057afefa619243fe9dc4bc81cca49f76" }, { + "href": "./BH41_10000_0303.json", "rel": "item", - "href": "./BJ37_10000_0402.json", - "type": "application/json", - "file:checksum": "122096ffda0932904560bec9041110bd7e94bdbd9cb64a5636ff03142986e580bb46" + "type": "application/geo+json", + "file:checksum": "1220c1cd7b2f8bd1f185ff847b2295a177697ed5a3425dc33d8f9ee053a1f67521c7" }, { + "href": "./BH41_10000_0304.json", "rel": "item", - "href": "./BJ37_10000_0403.json", - "type": "application/json", - "file:checksum": "12205c6f126a39c5b38cbe81ab7f57e1f4abdd7b093aa606e7faae819fbc6fb50393" + "type": "application/geo+json", + "file:checksum": "122060b0664acbd8f36f425a0276147dfa51e68d6c9715537fc18eb6c4919f3c64ee" }, { + "href": "./BH41_10000_0305.json", "rel": "item", - "href": "./BJ37_10000_0404.json", - "type": "application/json", - "file:checksum": "12201ce3b01971384e4e2d8c688d7da0fbe648e4422da20a47868ec249c17fbe8a9e" + "type": "application/geo+json", + "file:checksum": "1220c27b20a516d0ccee52a0d3c4aefda69beae3c795f9cabb9f54b65c91a3dd8f4f" }, { + "href": "./BH41_10000_0401.json", "rel": "item", - "href": "./BJ37_10000_0405.json", - "type": "application/json", - "file:checksum": "1220092ab6177ca351cb9aa340c3ccf03592a875792d079e5122ac045de76c46b059" + "type": "application/geo+json", + "file:checksum": "1220cc35143cf4aa11d3bf23e1da090146e1a8d67be60e244aab07faa732ecaf1537" }, { + "href": "./BH41_10000_0402.json", "rel": "item", - "href": "./BJ37_10000_0501.json", - "type": "application/json", - "file:checksum": "122093f0c2945ca832fa3fa5bb6fa18286e7ff81301c357b0bc0544c50d45ec08ec3" + "type": "application/geo+json", + "file:checksum": "122045a3ca6a9396487f55111d3d5972882f535d3bfa57dd7e4cda3805aa58d13acc" }, { + "href": "./BH41_10000_0403.json", "rel": "item", - "href": "./BJ37_10000_0502.json", - "type": "application/json", - "file:checksum": "122049a979767eb5df0269b103a2739542e93b2a04b1b74e75d9b438dae04e9739c1" + "type": "application/geo+json", + "file:checksum": "12201319c353e13a6d834db74b4d1f432b12e4212a18f2b1a29dee21e7ac6869fbe0" }, { + "href": "./BH41_10000_0404.json", "rel": "item", - "href": "./BJ37_10000_0503.json", - "type": "application/json", - "file:checksum": "12205424f4c00c77c371c5bfa26ca6bc43f7e5f8960251b2918f002efd5be6d3c703" + "type": "application/geo+json", + "file:checksum": "122043b8e20f98792eda5fdb667601b574822426f55aebb63e56a5133d6d43a2ce82" }, { + "href": "./BH41_10000_0405.json", "rel": "item", - "href": "./BJ37_10000_0504.json", - "type": "application/json", - "file:checksum": "12200c778b324f1a72d59f460a255253d9277d5dc4f04827d92f42c9ae58ee908ac3" + "type": "application/geo+json", + "file:checksum": "1220847e230e9216f7db91e6ff9a29f258d897fb01f9bacf16ea392fe770b003e150" }, { + "href": "./BH41_10000_0501.json", "rel": "item", - "href": "./BJ37_10000_0505.json", - "type": "application/json", - "file:checksum": "1220b108e4d17f2497c9cc3f607fc46ac2ad96753f66d630d75c1ef8c92ad2757cae" + "type": "application/geo+json", + "file:checksum": "122064f4b6245e062b5146c5de6741f21172c4d2415db79361bb0e42636ecc63a8c6" }, { + "href": "./BH42_10000_0101.json", "rel": "item", - "href": "./BJ38_10000_0101.json", - "type": "application/json", - "file:checksum": "122043c6e04ea1562a2ab0397d36c7849d7480fdeb3c7c9e4c87d291cb7fdc5b2b2f" + "type": "application/geo+json", + "file:checksum": "1220ee26faf65d2d9783b849656e74f6cc202ccd876ae3cde0a61d3c5306c440244c" }, { + "href": "./BH42_10000_0102.json", "rel": "item", - "href": "./BJ38_10000_0102.json", - "type": "application/json", - "file:checksum": "1220ba4eb8121be5ea5ac70bde744691ff52cdd7ec4d74c75efd8d8d0e77bcfabfeb" + "type": "application/geo+json", + "file:checksum": "1220fbd32ae01e7c43667170e51641e340d3b47300662cf60684cf7a3443338aba9a" }, { + "href": "./BH42_10000_0201.json", "rel": "item", - "href": "./BJ38_10000_0103.json", - "type": "application/json", - "file:checksum": "122025bbeaf0b5288021afd76430d1157e4a32cb7ad02da184c161256d3fb03679b0" + "type": "application/geo+json", + "file:checksum": "1220c54aa252ca90e37afc3d2660fd4372c9fe46a612e9b1e4ad353caae52f569bdf" }, { + "href": "./BH42_10000_0202.json", "rel": "item", - "href": "./BJ38_10000_0104.json", - "type": "application/json", - "file:checksum": "122017beda5053bea46c9662d5a35826c360671012e01678bb5e7d6e7f9c30f268ff" + "type": "application/geo+json", + "file:checksum": "1220aa7895e28cce6f8128032dcca01f1d48e528552c2157f830cae87d1ad1459164" }, { + "href": "./BH42_10000_0203.json", "rel": "item", - "href": "./BJ38_10000_0105.json", - "type": "application/json", - "file:checksum": "1220cd5de34094ddb22cae9a00590f6e80c4e57d3bb6b8381c9a0d6d50590aee37c0" + "type": "application/geo+json", + "file:checksum": "1220e2a1ae1ed2e7939811aee8a3601c3b454af83bbef6f8308f1f999c2b7e92bc41" }, { + "href": "./BH42_10000_0204.json", "rel": "item", - "href": "./BJ38_10000_0201.json", - "type": "application/json", - "file:checksum": "1220508fcba7a5f64da8d6587a9a9ef0d633f5b1e8c4257080e4dc28d39a4a03e3b6" + "type": "application/geo+json", + "file:checksum": "12202697cd11598cd5484f872afc7b28271dad1c31bb3617e93a3318af964d97b6c2" }, { + "href": "./BH42_10000_0205.json", "rel": "item", - "href": "./BJ38_10000_0202.json", - "type": "application/json", - "file:checksum": "122043c6d33143326b4433f808f88129ea1ffaddf88c6d834d23bc2ab53fe9dc1bb7" + "type": "application/geo+json", + "file:checksum": "1220780a85f36578dcd9086e8c971526fa23aa4f23e892d5b0ead75d31b3c8a7e6d4" }, { + "href": "./BH42_10000_0301.json", "rel": "item", - "href": "./BJ38_10000_0203.json", - "type": "application/json", - "file:checksum": "1220d1630d93e8acf0e42923ff18eda9bc3742171358e376e96e33cac93048286f40" + "type": "application/geo+json", + "file:checksum": "122043d2b6830a5b53b9d25aff7e749cc67e4879fc276a6f6d2c89769e0c1945e70f" }, { + "href": "./BH42_10000_0302.json", "rel": "item", - "href": "./BJ38_10000_0204.json", - "type": "application/json", - "file:checksum": "122092a616bfc6ba0e827cfcd29424f087cb4619f2a28738a035e8cb3ef8205238d0" + "type": "application/geo+json", + "file:checksum": "122011e47f7657772ecf42631e5ecf4599c576139fdae87ea80b9afe723418c7bb29" }, { + "href": "./BH42_10000_0303.json", "rel": "item", - "href": "./BJ38_10000_0205.json", - "type": "application/json", - "file:checksum": "12207982f20d4b644644397022332ddfce776ca8b7adf30bd39470ef72a311f40c61" + "type": "application/geo+json", + "file:checksum": "122003eb3a66b803b576129c049ae77cf09633cea32cd3b16ac7519d6fc206e90479" }, { + "href": "./BH42_10000_0304.json", "rel": "item", - "href": "./BJ38_10000_0301.json", - "type": "application/json", - "file:checksum": "1220b99a79ddd672b62d5a798800d36eb8c9e2f3e572b554b9a2ba3a4a34f3df7b73" + "type": "application/geo+json", + "file:checksum": "12201004f2c2f0585faa643ca3164ee8eb3c5aa64ce6861b5429add29132b081aa7e" }, { + "href": "./BH42_10000_0305.json", "rel": "item", - "href": "./BJ38_10000_0302.json", - "type": "application/json", - "file:checksum": "12201fc3a26bb7f84d09fef46175b255ad86afdb7877537c9bcd0b5caf416afa69c5" + "type": "application/geo+json", + "file:checksum": "1220679fa35a4b00057f0ca8aed5c8b4709e256644efa72cc6f4a37e017c4c610b72" }, { + "href": "./BH42_10000_0401.json", "rel": "item", - "href": "./BJ38_10000_0303.json", - "type": "application/json", - "file:checksum": "1220a4f58421213014726faa8dd04d829070c255ae8c9d204e6b6a3dbebc04e260e9" + "type": "application/geo+json", + "file:checksum": "1220892eb4cf6c2dc9f6dfb96cd6cbe4eb6ea7d78b46cdf4748fef6fa15e1aa1c09d" }, { + "href": "./BH42_10000_0402.json", "rel": "item", - "href": "./BJ38_10000_0304.json", - "type": "application/json", - "file:checksum": "12209c77df3e2b77f75da5beccb92db12f8759fb6a756566895b7aa9cce249e301ee" + "type": "application/geo+json", + "file:checksum": "1220c1f5f62c52770ea5804cc830871e7c13ae3f4b126c207a2bb0172b38080102fa" }, { + "href": "./BH42_10000_0403.json", "rel": "item", - "href": "./BJ38_10000_0305.json", - "type": "application/json", - "file:checksum": "122015a0ffa524e7e47c22b2a471d22210e9f642765d741068af50e8afa1ef540d20" + "type": "application/geo+json", + "file:checksum": "1220e4b4ea6bc54dea8f4c7de19efd57cb08a943de0aaf959b6715ccb5aaec0e6795" }, { + "href": "./BH42_10000_0404.json", "rel": "item", - "href": "./BJ38_10000_0401.json", - "type": "application/json", - "file:checksum": "1220a42b3b9b6bbaeb957b6b2a25d021cd2dab674467d45250418c756d4d67286c98" + "type": "application/geo+json", + "file:checksum": "12205bdba8666224ed1b77c4b4ef3d68f0456eb826a4190408d131fc12031d497ed6" }, { + "href": "./BH42_10000_0405.json", "rel": "item", - "href": "./BJ38_10000_0402.json", - "type": "application/json", - "file:checksum": "12203563800044ef48ce1f35adc500e2849a041f983562b5dc514f0a70f280c8b248" + "type": "application/geo+json", + "file:checksum": "1220ce58b02fa6edf2e69d4d1afe76bfcba81e71db8d320ecec6e05f98fb5a47dadd" }, { + "href": "./BH42_10000_0504.json", "rel": "item", - "href": "./BJ38_10000_0403.json", - "type": "application/json", - "file:checksum": "122066628daf7460f1ea96f4ea51c2c66a250ed1b193e4b521bec2f1531a40c00b7e" + "type": "application/geo+json", + "file:checksum": "1220753c2e88de9ea4dda659aca15514672ae5512feab813cec4841de8d6c4e138c6" }, { + "href": "./BH42_10000_0505.json", "rel": "item", - "href": "./BJ38_10000_0404.json", - "type": "application/json", - "file:checksum": "1220aeabcacd5581ea3269477f6bb018db6e3aad5a68ca6cddc17d5bb7df37806a2e" + "type": "application/geo+json", + "file:checksum": "1220f3d816d9fb66238f67a6d1d8dea12da0774470237f6a920daea1677871fb457a" + }, + { + "href": "./BH43_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122032abc4572da55bc0b32422e12a023ecad4002e2acfa3bbe3433eaf5937673227" + }, + { + "href": "./BH43_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ab294e155b7ccbd212d39f7b3645672ea42c3113d58b9accf87efb9d512295d9" + }, + { + "href": "./BH43_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0a20a76a31b5edd1ff796b99909b0c4f6eba55c0f82c0d1942225e5e87c6021" + }, + { + "href": "./BH43_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fbb8fde50bb085695f4735927236f54f6992e1b1ac259f88fdcfbf59b22319b0" + }, + { + "href": "./BH43_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207f233e994bd2377a92e958b65aa20e160e7c61f2cbcd10f2b6a1309959491577" + }, + { + "href": "./BH43_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f97575bc4b3f4e38cba0b905d286fce14202d42b037081b4c2716c35038764d6" + }, + { + "href": "./BJ36_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f68c28bd89f646bbef7162e2bf88be9ec9d689c6d78baf375e0c695f5fb252cb" + }, + { + "href": "./BJ36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122084e16fc80a197e77a46a619a0013cddec1a4e358aff715a08eb4c6b5b3c42fb7" + }, + { + "href": "./BJ36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cdf16dc818b82c13d6493643df24336fbbc15dd16ca9eec82739ebb0554eafe4" + }, + { + "href": "./BJ36_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122087e5f9561dbe92617c400c28f64452fdc4cc178b975117a80058a72ec0aedcd4" + }, + { + "href": "./BJ36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202442d6a19a0ff932b3695996345f733230dce7c8e27e69d7f052ccdccd9e1889" + }, + { + "href": "./BJ36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220badc8dce4bd7dcc8ac126a808c6e52f65c74a89c0ff476a4e8d5f0ab935743c9" + }, + { + "href": "./BJ36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220491f37a4c32633c4ae8867787bd126c5623ffe1ff8178af971372f7d24933ee1" + }, + { + "href": "./BJ36_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122041494a2126bd510462d56d782ff554d074664f9b4d420a1a8e4565b3e2723fcf" + }, + { + "href": "./BJ36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d05eb2e280adb9062194d1ca836694a841bfda7dc0aeb4ae5188c9ba829bcb31" + }, + { + "href": "./BJ36_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e935289a772d10ef633e514b74581fa4e68c4b44d131ee8fbfffdec5e99a8088" + }, + { + "href": "./BJ36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b58c641f64dfa34e78fd25d70e1344b651bda90d5da95310fe95597434857e9a" + }, + { + "href": "./BJ36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220acb7441ffe4e51cec100b201a38dea612c27e7d2f5c79e113f2a758f1a4ebf9a" + }, + { + "href": "./BJ36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a2c97933e31ba0c3a1bd9adbed980164b427e5e675a8f3402e6f37df0fccdc9" + }, + { + "href": "./BJ36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b9ab39112bc1a2b44b61b2a99f45bd2938653d9ee68bcae957714d63610ec8c6" + }, + { + "href": "./BJ37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022e271722321e63902de66d39e86d5db07cc0e2007a53cf48e9a4a58d2417a9a" + }, + { + "href": "./BJ37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f69d0a66b6160a6546d06de4d8399cbec2ebd478effa0fafe7c0d1eb3f038543" + }, + { + "href": "./BJ37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c6ddf85bb871768159ca824bfee77bd820fa27ce594626596635546fddc390cd" + }, + { + "href": "./BJ37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220969900a0e92b7e9243cc3cd9b8f1e85eca6c53ea7b0936040df20ed656d0f7f9" + }, + { + "href": "./BJ37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122023b4b4b3ec5e11069076664f0dcabd077b3809bfb8c94af57bbeb4b6ca97fa47" + }, + { + "href": "./BJ37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c3c7d46dde065379c8c7b25ebba3b2ad1e17b96dbeb4d7ad7cbacf9ab35dc2b1" + }, + { + "href": "./BJ37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220612ac779e731566ae8df3555dc4cc86027423bf182a8da20b9ec6aef9f4ada99" + }, + { + "href": "./BJ37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b4883b31dc31ea7d752bf66d5c9c23777a51382f1672b1a39183d80e7d0d3d0" + }, + { + "href": "./BJ37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122019704df46fe485dd20d3fd584d60ab4d62bbbbc351dd290d4e3a3ffd56d46c31" + }, + { + "href": "./BJ37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205db24cd30d1b30a4eb65cfbd555fec9e645fb4971b0bf99bb38ea83bdcb708e2" + }, + { + "href": "./BJ37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220016e7e4d9fc7caf0ad339b0b27c6e26cc7cc514eb9fbdb982e9a4c3ad13bf87c" + }, + { + "href": "./BJ37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0307e298e357fb0924b5830bb8d8a7b8bae35e2ebf6d63abea0c3af42a7aa8e" + }, + { + "href": "./BJ37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203364269d8f52c8a3987e072840f891cc798c2275776705b4a11df7b7cf1cd18f" + }, + { + "href": "./BJ37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f83d9a85dc44bb5131f978347393199ba7787892d0659bfe9def35833772ddf" + }, + { + "href": "./BJ37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220054536c5fa4c67d13a72ae7af3301a5fd68b5615c0504ae6a3e4ed824c1829a9" + }, + { + "href": "./BJ37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208019d0d7f4ae185df67d775b987f7cb68ff876750e98adb378a8622a0f89bc64" + }, + { + "href": "./BJ37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206da4f0e72add6cafed64d33d20e4c9ccc170a4cacf06c3597fd8a90418941abe" + }, + { + "href": "./BJ37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202eaa21e59c764cb76ef350ba28b428ee67a999e7107c138298952b4c72f1baa2" + }, + { + "href": "./BJ37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d70cae37383c84976201e4b8577c40e3be2463e4164452bb179b1b87b57b481" + }, + { + "href": "./BJ37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f9584359722b702f70dbc950e705a852be7fd7884975827489a1da67d1e955be" + }, + { + "href": "./BJ37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6d89ce166fbebf8f454405cdb1ca5c6b00723d3a0c16b4b178c83783dabd6e6" + }, + { + "href": "./BJ37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209c4375ce4916821ecf448711196997ef31fd5d40a82cc7f3c1d37b669a1a0fa8" + }, + { + "href": "./BJ37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e97584f643b6819f4c525cb62e8271acedb0e71b9842053f08193c1243717276" + }, + { + "href": "./BJ37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209031428ce9d7ff0306349a43b820a32bc907465deee1a3bfd35b2844b4759ef4" + }, + { + "href": "./BJ38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aec17171424363b8724399473f483752f1e7a57446c414c7f70880187643f1ab" + }, + { + "href": "./BJ38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220579362e3d0cc1602b89f780c04ccbc3796d7532fe6ecb43f1884448b5600d29f" + }, + { + "href": "./BJ38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003119f0e1ddb32d87528493ab23c0fd8be1c37d31f426afa32774ebce8228414" + }, + { + "href": "./BJ38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ad4e15fc7d520848c9ac080b4f0d1401a36d441eac0486a9abbb0696edb7c334" + }, + { + "href": "./BJ38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a1bb2580a4c67047a0ab112f8b9e6c0fddde6a5e5ce16f87a5d326745d953e16" + }, + { + "href": "./BJ38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205eead481efc5ed389b5223bf6fd8b754d5a116249b729368832fd04d002b2b70" + }, + { + "href": "./BJ38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202846574fbb589eb0387b48798651c7e18050c3eafd1f99dee8d625c762bbd20d" + }, + { + "href": "./BJ38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d8bb51b11bf57d3a9f969962899854a5cbbe45ec425f7837eaac35770de9c5bf" + }, + { + "href": "./BJ38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220270a473b0ed29778bac4136a93d146b211925ac37877c06fa5838302644dc44a" + }, + { + "href": "./BJ38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a20f2125fb573b26d7cb57614510639c054a7073d6a8aca46a65b7ac372ff507" + }, + { + "href": "./BJ38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200dc73535682bc1a2daf1f35688e4c814ed3d4caf0bea55913d4d080b27a941ff" + }, + { + "href": "./BJ38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206184572540f7434ea64aed44a24b25dc3bbac0737c6eda46712d89b6d89d5bb3" + }, + { + "href": "./BJ38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d68a51de6d6868059880a3f3b2e53eef4bddce1f436cf3ef00428769ca36bf25" + }, + { + "href": "./BJ38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dd788874d3f27c50316f78937bcf29f6f6f6c20f5337d70536dc7c6e5fc915dd" + }, + { + "href": "./BJ38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220172f450e8f4af223f80a1b5d511657557c9134322bc02abe1e7eb84fac9cefa5" + }, + { + "href": "./BJ38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df90b30169b28e6eee99c525ff2c1172282490f710b122626295db8c77dfc13b" + }, + { + "href": "./BJ38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e65a4d4c2beed8ac72316a87b541095abbcef4f3dea59ee2971f2b6a9b93d411" + }, + { + "href": "./BJ38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122065f4e1048bd37919eb3e2ebd128ab4b98882f664d0dc2bd27cc46c193ef65cab" + }, + { + "href": "./BJ38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206465f06972b59be5db5c2857764a55b29908ace6b4715b861a55f87e91ae7379" + }, + { + "href": "./BJ38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122012f2519e39c5eecfab3613a066c19f4d9f91ac59175cbb0b8f91a5fd374d64be" + }, + { + "href": "./BJ38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204fd0fd8695b7ea52dda63a92b777013c44b916f576c3fac7baf0a27ead29d779" + }, + { + "href": "./BJ38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220daac41b0fc90edb8e6a75a6ee8ab6565936eac05d60fbc587e663ea9ef915ec5" + }, + { + "href": "./BJ38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207f64882575222a4596a19a27aca978f31cd8d1665a99593bf8dba079204d86ed" + }, + { + "href": "./BJ38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122076e72b23ab03582d9f83bcfccec79543d7f2540aec686f85bb3f27d545b1b684" + }, + { + "href": "./BJ38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ae4905fcffe2fc4ccec7f286bc222cf65a5fc6a1a064b3b6b7d56197cda7c69f" + }, + { + "href": "./BJ39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220db773877a06adbcc5387d20ce4ce2cc33abe413fba92dd8bad8adb3e1949bed1" + }, + { + "href": "./BJ39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d3faee6a64ae6d3d5c8bff066e3c102931115a3b071acb6ace112b3254748da" + }, + { + "href": "./BJ39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cdaf980d8b4441b3333bf870689514244f78d092db5a3be203df56e6d2d680e5" + }, + { + "href": "./BJ39_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a1f4ebdf3e180199f97e152fc6618067fe47a24426a091f52e9e4919e8ac62aa" + }, + { + "href": "./BJ39_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f11f057a96768352a4399ceb27617d839da89a0423a517f2705ae3cf1d93c567" + }, + { + "href": "./BJ39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fdec6b84122c94ffca0d38007d886913286f77a6d95944ca32a17488170ff58f" + }, + { + "href": "./BJ39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e185b2f92e9443f9b73a8722d6924e1f9cbad5a774cb8a704103a291289780ee" + }, + { + "href": "./BJ39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204ee3f43895acd31f0a3abd74d31f7e38f6b861a7e3cbf0249ce4e6400eac8e97" + }, + { + "href": "./BJ39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b7efd407fa4c17ff5ea840bdc71ec49b25e232d85ec484e1ab00a33988e11dbe" + }, + { + "href": "./BJ39_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fbad195d57f326d315c8174ad41ab8645990e38e6b0076353acf88308413c93" + }, + { + "href": "./BJ39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f31c57ded95a9c016c3b6dd072ccd9f5d72cbcffd4d2f24fd388f9484f7e1aa" + }, + { + "href": "./BJ39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a1796d8c270bfb4554f877eb85c9a41ec28dae1833dabfc4115a6947c15c3e9f" + }, + { + "href": "./BJ39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046f29a9e332c11549818bcf8f9d8933911a605ca1827a111347bb8263f167ce4" + }, + { + "href": "./BJ39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122071b608cf7d1d305c168de133e46459c6a38b1069a9e906d27924d1ce51c55f58" + }, + { + "href": "./BJ39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202e88994946121ad8e5ea922d2bc9b8758bbe6d428fd07ddc812d6e8efdd09924" + }, + { + "href": "./BJ39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064707a465d32b451fd0359a399076cc852aa1fc3468181a5c15f218e82c58198" + }, + { + "href": "./BJ39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208301dd702a84e9b7c24f1698d288abaac4a09f6c1e68006a90c38961dda95e4d" + }, + { + "href": "./BJ39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fba322f74bb0fd4f402455aede57a0ac2b7c25f4f737d0f51c86644df8af300" + }, + { + "href": "./BJ39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f6c898b2d35b8eee35e2a3be79e7d9e0dee5496941ca544410e6480ed89437e0" + }, + { + "href": "./BJ39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dec1847317901061c91d9916e4eb45be14fa435ea24749ce799c1642faa48010" + }, + { + "href": "./BJ39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7de62729cf0f8a67c2d99783e3620dfffbb4e9418d523f88263f282ede77b07" + }, + { + "href": "./BJ40_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203aefd6a7c16cbf86a2756da31cc2b8f1813319daed6470f276f70b264bb528d2" + }, + { + "href": "./BJ40_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4cbea381c5d18d0cb44e42ba907b8b478f7d967346c81d83104d09bcc77ca97" + }, + { + "href": "./BJ40_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fad616d10cbc9d4fff527e77b7a32e2bdc3490b44425108a122fe436ca1ce7aa" + }, + { + "href": "./BJ42_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122016c173e1731636620dd51e661dcde1afa085341f294ab5678d482d389446a506" + }, + { + "href": "./BJ42_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4f182a0dccaef7f6368fd9dc1c810d3d0fce76e159f810dd8c5e53d6b4166ea" + }, + { + "href": "./BJ42_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207a55ab912838191a4b1163a5407895b044b5b7354ffe3290db8b8b0a478b5124" + }, + { + "href": "./BJ43_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073fc2b748b0a219b10fef95b157cdbc910a13e1ed3f1153f5b3a090e52c92811" + }, + { + "href": "./BJ43_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205bc91fb156108d6ff4ac85e0470e93eddf3d48cc77c18398278ce9db3885eeb7" + }, + { + "href": "./BJ43_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b8f7fb6b78c05c8df0b57346bba60e61ee37021c5125704c4a63bd3f56bd71a" + }, + { + "href": "./BJ43_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122007630d38fc57e40069b4e3e9c5179282fcfa24efb9717fa08a7c836d3d1a8cf6" + }, + { + "href": "./BJ43_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bfe41540276ef4ec7cc68b012380d9fe70577bec9ba6d76912bbd277caa0bf7d" + }, + { + "href": "./BJ43_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220330a42866755f2dc4849f6438bd42e03e50e057f46af6d6951a388148bf211e4" + }, + { + "href": "./BK36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d181ba603d44d43cdae341baf5fce32023aa83386e7aee6cd5c589c93bac45c0" + }, + { + "href": "./BK36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d6066673dc16535bdbbc6993b1134099bd88682be156da2986b3133a580adbb8" + }, + { + "href": "./BK36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bb6fe3591e31c97ab2de4e80940be1175ba4ee476529f08fbf322fff5df51240" + }, + { + "href": "./BK36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122071557cc387f9b053d225a0ca8a4cb0abee3a1d768079864c7f4db9d4e4e7ae46" + }, + { + "href": "./BK36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122088251f033908fda0b506c860ac48bb58c40d87edef406ee3eb512f3ea00d01fe" + }, + { + "href": "./BK36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203d2bf31fe5484f90a265446bf00578cdee3fef9242338b1b272bba6bdb280a0c" + }, + { + "href": "./BK36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b433315570f2f5f0b10bc30f536043a2bc7b1374abb745bacc1b601e496c7e6d" + }, + { + "href": "./BK36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201bac5828f8701842d9e0fe8871155344c5cf7359d4d753b2a7eb1356460030e9" + }, + { + "href": "./BK36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e36f9a6f1f69a53deb4319bdb94b39e10ef29fbbc346467ff43e933dd23dfbef" + }, + { + "href": "./BK37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c820b8dff56e9c501cdd8d5dbf81e51044b9d3898dd7f8f2e8a5345311c74710" + }, + { + "href": "./BK37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d1ca64fd257278f19753ec9941ff636e2ebd8385eb58b30dd9cfd57a62b3a137" + }, + { + "href": "./BK37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209669171ada68b621814a1c105778402b98f8c17fa899db098f77d0a8d2b18910" + }, + { + "href": "./BK37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122036ef81a19380dfd1ada60df493bf80d7255523dd59c9b3197115a3bd84bb58b2" + }, + { + "href": "./BK37_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205fa28f5ee60b1dcbf5ff12cba6704e0d9f77ee3eed8109b43730c5e5324be578" + }, + { + "href": "./BK37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1e50e9dc475646cf03aee9050b2867ce0372055de5f46858e384e68273229ec" + }, + { + "href": "./BK37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbaab20083e5b7e040a1f66de7cc47bb84100c3382d35ce69f092f3ecc118a3d" + }, + { + "href": "./BK37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f9c76fb50da601109131cff69183d23d5606bdd3a6bc88307a4429b1250da29" + }, + { + "href": "./BK37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf2dd1081b5ad60c4792b40307c858db49fb3e37da12c5cbe82eff020b4436e3" + }, + { + "href": "./BK37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dce72d11f37f51c68af0e7a4ad8ab88e1a58fff077c84afd3c9bd95e04185267" + }, + { + "href": "./BK37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204df2c76d7d0c4a12e925540d07a4bb240ab9726ccad618aa760784d806724d09" + }, + { + "href": "./BK37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201fe3abc50e55944cc9c978cb24fc7571478ecf3259169e7caaae9ed5be658dcc" + }, + { + "href": "./BK37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d10d7cfd24a263331f32c1c92f01c6d5dc59c03393dc89228dc52fa5d315cee" + }, + { + "href": "./BK37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b1ea33024c9e299c8d6acea75955b4c400f0438bcba75c75b0948e54a79286f9" + }, + { + "href": "./BK37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ad8ef1a063e51314e2e11294cd765889d6fd02757b0d50e5d0605a33d5d672a4" + }, + { + "href": "./BK37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e9275224fd6a8fb39ab60fd72957a17ab8dcf128d68a97bdfc6d07898eef0175" + }, + { + "href": "./BK37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b193e2350f138949952c07987496f5035f084644a051ee44291a3b6c87059293" + }, + { + "href": "./BK37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f8304a7c4697cea27e179b7b9987409b9649fba5520a6a06fb70a70cb1ef31e5" + }, + { + "href": "./BK37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202b944ddf44406240e52fd8321322c2e738dc5cf47e83613df21d1ce86a54c569" + }, + { + "href": "./BK37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a0bfac9c97e9c80ba459d4175d6417ff7b90dfbc88bd8d5828fd0e03a6e1d8a8" + }, + { + "href": "./BK37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220893d3bb3615dbe08c0c8d1a5c6d3a22f1e76349176c2448afec5a31b683ef3c4" + }, + { + "href": "./BK37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d57830e92b8bdc9f76a043b6acd65e3fb82075580dd21841e4f6928281ac39ea" + }, + { + "href": "./BK37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b7980103dad6c24227ffb5c987d72c893c0c0555d9b4c29ae042d324d6edeefe" + }, + { + "href": "./BK37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203fc57fde9d1582abbfd3f01808a33adf76202bb7b29c4af62273f664fa03491b" + }, + { + "href": "./BK37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ffd3182fbd6cbbd2a80b369ad94f1e99389da8c742477d1d2daa21d628eb3d03" + }, + { + "href": "./BK38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a5e9137ace787907359ae003f5be9188a4c0a380d939f9d19ce110523b5b091b" + }, + { + "href": "./BK38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f081ab466baaf23b226816c45669b40b3285befd47f9c5cb76c59e86a2b00676" + }, + { + "href": "./BK38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c7c2aab83ad0742ebeab8462c4002b0a26bea358fd11aff5b92411a69cb39c3" + }, + { + "href": "./BK38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122083d0200828cd002c8a267accf7fa991c5e3c26f58c47f1ef080e7a87ecbd870d" + }, + { + "href": "./BK38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c4552cc889cff1d99bd424499b3791ae0f47ed4f06f496b922daed6f9c1a7f38" + }, + { + "href": "./BK38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122092f01f52b276ff8264314ab0ee8b85b9924560400da6d0064c5ce4bbeee3d6f3" + }, + { + "href": "./BK38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220136dcccceeabf262f8e210d815454e2dbfa74e1e69980cc5c6cef5fea6fedf50" + }, + { + "href": "./BK38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b7fa8bdd89a32b09c06623948512da29415cc67dbb88b72b9de3e5d17793b63" + }, + { + "href": "./BK38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220699fc16aba732980e311761dc6cf8fb763cf07397e801c6dc8a4016439723907" + }, + { + "href": "./BK38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed70c147d24f116325558c81272891b3dbe25bbf255ddfaf19b500e92daa4028" + }, + { + "href": "./BK38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b48013afeb2b076961a216c66110a9b47f3b652dcfb667ba25b6410c70e3ef5" + }, + { + "href": "./BK38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b760346569c0590596fe7d4f49a233d6d66409fbaa0e03724e6faeed9fe9fe41" + }, + { + "href": "./BK38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122047cd66e91253af729b4bb9f32b78b7e0be0b515fab9c493f770ccda1689cb869" + }, + { + "href": "./BK38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200c86bfb394a9dc1a63a4222cf1328843fafc4fbac5d6abf8246efaf0034106f9" + }, + { + "href": "./BK38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e5d3baa01519483f09872922652aeb270ac22668e4ee05c556715da3c2b2e547" + }, + { + "href": "./BK38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220370787deeea44a176b69980d1b14bf2a503aed9cc4f4216f7ee336d0646f8ec0" + }, + { + "href": "./BK38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d4d43dd6fb2f8adc14523952aa0c3236a66a36ad066dde7ff532ce3992afc104" + }, + { + "href": "./BK38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f2072d6d226ad8a124f9e87a174746b15128509bf0c2a746234d7e9398bc3ede" + }, + { + "href": "./BK38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122081bbdb0f074af52cea9abfd00182a461ce646e0b91698e0bd612e5b7d4a86e27" + }, + { + "href": "./BK38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b4e911a8668df68ec5ba5a7f6cc2bc23a87f4e8852e04eff6f19c188809bd62d" + }, + { + "href": "./BK38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ee85f1b5ad2f3deba613bcc098020f9fd0103b221229362b756d41e8d688f83f" + }, + { + "href": "./BK38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c07e01a827839f71ee07ca95af869ad8a9312a2ceaaeaaedc3ffccbb7339fa84" + }, + { + "href": "./BK38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204088dbfd571aed51f7fbe9b51dabf3cb32513086408969a00f292c3b50fa3505" + }, + { + "href": "./BK38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206298248606dc1b7108cc123656052e8af44640bd110fb2483c3f37e9a533dc1c" + }, + { + "href": "./BK38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122052cb4404156c0f9f4aa061058dc76723f04bdd3cc07e1150ab8beaecd63eba46" + }, + { + "href": "./BK39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e2a85a8acd8bbc06c29c3998c58d95744e9efb74a6037d494e03045998600dc" + }, + { + "href": "./BK39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207614773d3a9c474b5fb03e7cd3401a683cc9648434a8206ac05e348de77ee6fc" + }, + { + "href": "./BK39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e9ef9e27da8aedb2368178a3845156cba61b472e48dca13f96375002a237acd9" + }, + { + "href": "./BK39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbe7531f6f9d5f2182ab4b4f2b3673bab37afeb8c914f2eeb362160664f29f7a" + }, + { + "href": "./BK39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4cb64eae1dd2a9ad7efef44119033ecd88e15b618a8b3e9e4f2f45619431716" + }, + { + "href": "./BK39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d6ae8cabf94a80ed36b6970e1adbef99f5a783ca09a6c497e874031b21014e3b" + }, + { + "href": "./BK39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122028769fb1936b7275cb5c3fd817dc29f8a44c15ed1260e8675faa77cdd02bcbf7" + }, + { + "href": "./BK39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f912da3ddd675b23a5d489bb27e25fca0c9ec53f314000d1e9bcd3b7393e7b8a" + }, + { + "href": "./BK39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d1040c9a24c419ccf645dd76d208b717561da64529dd3035f6cb6891473fd8ca" + }, + { + "href": "./BK39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201509d9744bfcac2a21e67abb8acc75afdf351b58ce8ce6b17fa1f4d4c6a84850" + }, + { + "href": "./BK39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec38dd7fd39a50dea1a21843037f993877f07098c5c76f12290d18d8c8cebf17" + }, + { + "href": "./BK39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220789f48fc7a8ca7bf3d08fba5b6d910bb6c38ba68fac228b72a89e8087c7500c4" + }, + { + "href": "./BK39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220539d57a9963804400d6ca529bd0e84f4ef3e3ffe5ade9e83f1ac17de496d1cf9" + }, + { + "href": "./BK39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a63c5d425eb68cd46969076bbb82b6c2bc66cac1394a4da597e211a813cddd10" + }, + { + "href": "./BK39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c46fe6e6f406a96db510d2ec66d6d810261837e250908b2292f1937d83410014" + }, + { + "href": "./BK39_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064b4a1fedd0fb66f7c40bc49fa6920bce502d1877e0c1a8dfc55ed29aaeacc9f" + }, + { + "href": "./BK39_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4a5244132ca65fdc503ee73baff6f21173f273c7f7197858be95022e429b9b1" }, { + "href": "./BK39_10000_0501.json", "rel": "item", - "href": "./BJ38_10000_0405.json", - "type": "application/json", - "file:checksum": "12201f2abc6b43441342a37fcad565284113be210465736e52bf36eaadc68e3bd0dc" + "type": "application/geo+json", + "file:checksum": "122034381be37a941176973d75657eb8c567c40efb66a7683d0ddd7392b1b5c7c93d" }, { + "href": "./BK39_10000_0502.json", "rel": "item", - "href": "./BJ38_10000_0501.json", - "type": "application/json", - "file:checksum": "1220d207cc440e6e46fb4de517248eaed6a4e9d30d031da32b47f1535b428a58cdb3" + "type": "application/geo+json", + "file:checksum": "122041083d82a82c4bf7db7d36cf7bb9f6c963e925903489b172c45875fb4115516f" }, { + "href": "./BK39_10000_0503.json", "rel": "item", - "href": "./BJ38_10000_0502.json", - "type": "application/json", - "file:checksum": "12200b8cfe7f6ec95b2a1cdead699585f1acf3a9b6762aad9ed7b7fbf17022e8b83f" + "type": "application/geo+json", + "file:checksum": "12209fc68dd7fdce667ed42ff26ba0055184930c7dbcdff857c8e03685f6ade26fc6" }, { + "href": "./BK39_10000_0504.json", "rel": "item", - "href": "./BJ38_10000_0503.json", - "type": "application/json", - "file:checksum": "1220744bbc169ee59f6a1c2bb6fdd3e556752e3da4601a70046b75d8f5259e844160" + "type": "application/geo+json", + "file:checksum": "122043b52e102a75dbea048334dd8674c1d2225c6053c99190d9a5ac5b1de90ca67c" }, { + "href": "./BK39_10000_0505.json", "rel": "item", - "href": "./BJ38_10000_0504.json", - "type": "application/json", - "file:checksum": "12204f727740bfd2007bab0aabe5dde7db29b499a708095ae77e7210597aaaf465cd" + "type": "application/geo+json", + "file:checksum": "1220fd192c997a072a5b356027eaf4c2d3138156fd9fdb24c21829c9531d9794624c" }, { + "href": "./BK40_10000_0301.json", "rel": "item", - "href": "./BJ38_10000_0505.json", - "type": "application/json", - "file:checksum": "1220b732097c9ab8bf7a129154b78cdfe7a924ce3c7f95e27c1661167af15686ec40" + "type": "application/geo+json", + "file:checksum": "12207e806695acf64a1135f25032c844085ffbf1f0715b67a2ffea01984100864499" }, { + "href": "./BK40_10000_0401.json", "rel": "item", - "href": "./BJ39_10000_0101.json", - "type": "application/json", - "file:checksum": "122028006e4dd9a66b43dbd2d33a12282d27cccadb8274de104fbde8d3624671e58d" + "type": "application/geo+json", + "file:checksum": "1220b1b3db0e6747995942bb5ca8b7869435eccdd50cdd7d0454ff8fbd192131c5d4" }, { + "href": "./BL36_10000_0104.json", "rel": "item", - "href": "./BJ39_10000_0102.json", - "type": "application/json", - "file:checksum": "12208b5a55ddf8f983c82f56e76e96ee437cd5eba91b6f1987d23bcad1e419f567a4" + "type": "application/geo+json", + "file:checksum": "122060883fdaf9b293a4039f32142fc092e0b1f92bb8acaa55751a5e4b8fa1af1b3f" }, { + "href": "./BL36_10000_0105.json", "rel": "item", - "href": "./BJ39_10000_0103.json", - "type": "application/json", - "file:checksum": "1220bc951637f301a1206404bd4a8fe9c1a8f876673264f38a8d508c20f8e9de78fe" + "type": "application/geo+json", + "file:checksum": "1220b6383537a0f33b72f242ea4ec698bcf842438f976edf75f296f4cd293ff2155b" }, { + "href": "./BL36_10000_0203.json", "rel": "item", - "href": "./BJ39_10000_0104.json", - "type": "application/json", - "file:checksum": "1220d996ccedab0a358e24b7e4ecf1edc78e4873fd05883070dad3f02b526eb4a43a" + "type": "application/geo+json", + "file:checksum": "12204636503bd238a5100902e56e6c999df095a1a78894270a8fd62c2d61911fbdfa" }, { + "href": "./BL36_10000_0204.json", "rel": "item", - "href": "./BJ39_10000_0105.json", - "type": "application/json", - "file:checksum": "122048b12b4f49cc9b1c754df66e8bcd4ad2562bd1ad7b3c9b2280addd40b1341de4" + "type": "application/geo+json", + "file:checksum": "1220cd2f47eb523b2bc0391e10b1d45e42c38120a203f1b6f8670ee14e0eb77500db" }, { + "href": "./BL36_10000_0205.json", "rel": "item", - "href": "./BJ39_10000_0201.json", - "type": "application/json", - "file:checksum": "1220ad065f368e47ec4ac632295968a6d9cb7a0c85682c0d8d0dc963a6acd4a00675" + "type": "application/geo+json", + "file:checksum": "12204f9efb711b9d25fede203abe72f4fa7d3418a5156bdc62b8727d75aaf29d2353" }, { + "href": "./BL36_10000_0303.json", "rel": "item", - "href": "./BJ39_10000_0202.json", - "type": "application/json", - "file:checksum": "122048f03a6abee6d25e9f66b172e55c531975e35884af5b424dd92e6860480cc360" + "type": "application/geo+json", + "file:checksum": "12201d5b10b97854d29e3a662f2a997aa03609ce189789e67393255e6b6b2413ce3a" }, { + "href": "./BL36_10000_0304.json", "rel": "item", - "href": "./BJ39_10000_0203.json", - "type": "application/json", - "file:checksum": "1220f86cdc2be4066aa72a7c6e9a4a83cf109e7471ee9a5dfe7be22865f3a923c1ee" + "type": "application/geo+json", + "file:checksum": "1220089569ea5e4d6d72a96dd1eb0527e196394de61f7819246028d6e49c3d101a55" }, { + "href": "./BL36_10000_0305.json", "rel": "item", - "href": "./BJ39_10000_0204.json", - "type": "application/json", - "file:checksum": "1220950083ce635ae7058c27b2a448170a5a67b356a281c08fd12b90f90205c09701" + "type": "application/geo+json", + "file:checksum": "122024f9cd56eb337bce49ac07eea10797ddd65b37c5c84cfcffeffacdd97eba971d" }, { + "href": "./BL36_10000_0404.json", "rel": "item", - "href": "./BJ39_10000_0205.json", - "type": "application/json", - "file:checksum": "12208cddc8e68b788f8d2863f7ed0b70eca55d5f867d7cecaee8898feba31dfa541c" + "type": "application/geo+json", + "file:checksum": "1220f4d9d3c9e4d06319c367c4cba96be7b8af5eddb1af125a8602a816353936a13c" }, { + "href": "./BL36_10000_0405.json", "rel": "item", - "href": "./BJ39_10000_0301.json", - "type": "application/json", - "file:checksum": "122023130af4511a76a5975bd8cc99ad67faed4c6662984db45d31ca82291b7b377c" + "type": "application/geo+json", + "file:checksum": "12200deff732c9eaeb3608808d5520c08deee4a1abff6740b9a5900e2bc9137a379f" }, { + "href": "./BL37_10000_0101.json", "rel": "item", - "href": "./BJ39_10000_0302.json", - "type": "application/json", - "file:checksum": "122047b76debc1036794e9e7ece4a0d0860e11d053a9e799bd8c347fc6c0d27de57b" + "type": "application/geo+json", + "file:checksum": "12201a92b00f76eaf7f52fabc57a88441fa323df54f796de113d9732cdc558a9a37a" }, { + "href": "./BL37_10000_0102.json", "rel": "item", - "href": "./BJ39_10000_0303.json", - "type": "application/json", - "file:checksum": "1220bf7b4089248f58a8e94d7369a9af4928d8c1ea971de252f6134c1d63e2a526f5" + "type": "application/geo+json", + "file:checksum": "122093576de0d779ae0681bb2fd9c4be212e6e4a1e80480eb461177ab97a989d05be" }, { + "href": "./BL37_10000_0103.json", "rel": "item", - "href": "./BJ39_10000_0304.json", - "type": "application/json", - "file:checksum": "122071f8bf9a1e5ce58f57e03a28f19bf02c91275c9ec509ee36503b4651bd2f9df8" + "type": "application/geo+json", + "file:checksum": "1220f06feda0bee2acdab21c818aba6fe0341560b5fce03c6ce132af620dc2e24016" }, { + "href": "./BL37_10000_0104.json", "rel": "item", - "href": "./BJ39_10000_0305.json", - "type": "application/json", - "file:checksum": "1220a94a371fc1ebdc6084cc1b13113003ce852c0108e1b1df7c2fa0b602ce065088" + "type": "application/geo+json", + "file:checksum": "1220cd89fb6a49dc856c02d31ef8a8943d852efa2d3de01388338c1c3813a9e5b3a0" }, { + "href": "./BL37_10000_0105.json", "rel": "item", - "href": "./BJ39_10000_0401.json", - "type": "application/json", - "file:checksum": "122033ef9192c9eb0e162f7839584ba944febb7b6df30d653980e9efe79f6e3ef8cb" + "type": "application/geo+json", + "file:checksum": "1220e2bddbe41c3f8ee236494d3aae37e6fa5e2e096960ef5e8aea7a4ee864e1e3f1" }, { + "href": "./BL37_10000_0201.json", "rel": "item", - "href": "./BJ39_10000_0402.json", - "type": "application/json", - "file:checksum": "122071211a921e0ac3d96f586bed5141538e2b817b75837311d5857297ee7b13135d" + "type": "application/geo+json", + "file:checksum": "1220607efbce0e0ad414926c0e1eb3546d2f2beafd920a0fc670974dca407bad3525" }, { + "href": "./BL37_10000_0202.json", "rel": "item", - "href": "./BJ39_10000_0403.json", - "type": "application/json", - "file:checksum": "12205abba14fcd8c385686fe30bd8e882b1985d1eb95447dac7444eff3aedd01b88a" + "type": "application/geo+json", + "file:checksum": "1220098058d133e5d3afc722545a6bfb29bcdbd7524b8d673d6dd8691c84c0783c97" }, { + "href": "./BL37_10000_0203.json", "rel": "item", - "href": "./BJ39_10000_0501.json", - "type": "application/json", - "file:checksum": "1220af395c3e0b3082a93b327c7e2441cd9848c244aaabd3ba26aaac2cf1f79c6d81" + "type": "application/geo+json", + "file:checksum": "12204d159f6245634dd4a40d2308b0f361d951dc0dc099c772ce952f9abb381c5c0e" }, { + "href": "./BL37_10000_0204.json", "rel": "item", - "href": "./BJ39_10000_0502.json", - "type": "application/json", - "file:checksum": "1220da087223ea3a8300aa6d8183bbb8ca757a3fdf00c3b278166688f105d00d0bc4" + "type": "application/geo+json", + "file:checksum": "12206ffe7a3ed86f9c46184db9bd6ca60f6935f9727531d4661aac645664a0232617" }, { + "href": "./BL37_10000_0205.json", "rel": "item", - "href": "./BJ39_10000_0503.json", - "type": "application/json", - "file:checksum": "122052f2d8127719cbf64b714e1b37dc055a48e4961d0590713c51f45f661d77c74d" + "type": "application/geo+json", + "file:checksum": "122040c17673d189eba1ec3d976d628de6a9685b62b3bd1c9e165538f80952486fb5" }, { + "href": "./BL37_10000_0301.json", "rel": "item", - "href": "./BJ40_10000_0101.json", - "type": "application/json", - "file:checksum": "122097d4ba8cc07304942f3f180bfbee230b20b81a54a1bfaff23fe760807798f7ac" + "type": "application/geo+json", + "file:checksum": "1220c49560010f744c0e706e4f42501a141c57b96f44513bbe5614e14d37879cf5d2" }, { + "href": "./BL37_10000_0302.json", "rel": "item", - "href": "./BJ40_10000_0102.json", - "type": "application/json", - "file:checksum": "122038532f84fc5b2fe0cd4d5c9c8172be4a5701b2b5b9e97a13a7227c2ddb06a4e1" + "type": "application/geo+json", + "file:checksum": "1220b85c2494acbb1eb41f3be204fedc9877803802c7cc964723a2c2f4a3fba2f9ac" }, { + "href": "./BL37_10000_0303.json", "rel": "item", - "href": "./BJ40_10000_0201.json", - "type": "application/json", - "file:checksum": "12201f3dc394ebf256cd696c11a4e8a5bdc9414cbeaf5b5f50338077f53872bf4e8a" + "type": "application/geo+json", + "file:checksum": "122097354983267f52e592889882db08b86355549f4a318001d3dc7fa5e076237587" }, { + "href": "./BL37_10000_0304.json", "rel": "item", - "href": "./BK36_10000_0104.json", - "type": "application/json", - "file:checksum": "1220f752195f95502f31cf97bf05aedc2f4ad34d97158a86721e4851911de1f13286" + "type": "application/geo+json", + "file:checksum": "122098cb232480afe6a7e32d4bfb1622462be6818df8d6e926703ea71f8416f976c0" }, { + "href": "./BL37_10000_0305.json", "rel": "item", - "href": "./BK36_10000_0105.json", - "type": "application/json", - "file:checksum": "1220ab7eca2422e556e005c01acffbfb79a4f30102214eb6d0ff561ebd8af0c6226a" + "type": "application/geo+json", + "file:checksum": "12203a4487b42d7bc85c57ca50ed481aa0c7dd9d9fea45a3e7e9ac2b37e41521a2ed" }, { + "href": "./BL37_10000_0401.json", "rel": "item", - "href": "./BK36_10000_0204.json", - "type": "application/json", - "file:checksum": "1220db71c7b11b9a34934ea1a905c80255dfdcacc3a556acd001b3998b981575d3aa" + "type": "application/geo+json", + "file:checksum": "1220a77e24b74abad8184bd75ef4eac543b264be2969c39f21058ebf61fc86196b7c" }, { + "href": "./BL37_10000_0402.json", "rel": "item", - "href": "./BK36_10000_0205.json", - "type": "application/json", - "file:checksum": "1220fdd60fa330022c65dac77913a7c194e8433ddbb3b06e61b557c88a386c714a00" + "type": "application/geo+json", + "file:checksum": "12205d7c7402002f78c6e0d1839235654818a2ffdc6f2d224782c521fc7a8523aefa" }, { + "href": "./BL37_10000_0403.json", "rel": "item", - "href": "./BK36_10000_0305.json", - "type": "application/json", - "file:checksum": "122070f8ee19f6fff1bcdc031dc2722c357697a9425c4e2a9ff5ec56168f2bdfdcec" + "type": "application/geo+json", + "file:checksum": "12209c2d4a66d9e00cb313f5cd6236f81407ab945b2d509ab32ed3d83717621bc37c" }, { + "href": "./BL37_10000_0404.json", "rel": "item", - "href": "./BK37_10000_0101.json", - "type": "application/json", - "file:checksum": "1220ad020c8b15b8ba4e7ecf58bd53f0a52a1fc7f4a665b216cbdeecde7d3914b535" + "type": "application/geo+json", + "file:checksum": "12200a5187c19041a3c4f57bc5d51c22669f45b7e5bd9dd99d67805826357cce7d29" }, { + "href": "./BL37_10000_0405.json", "rel": "item", - "href": "./BK37_10000_0102.json", - "type": "application/json", - "file:checksum": "12209cf3192e840a441adcb0a8beaae1d07a5fd6259b15ebde5e1ffe962d290bc90e" + "type": "application/geo+json", + "file:checksum": "12206007f32d1eb0a125b8c7c5c57bf40cd2e89cbfb14ecaea7596397f22d8e70f1b" }, { + "href": "./BL37_10000_0502.json", "rel": "item", - "href": "./BK37_10000_0103.json", - "type": "application/json", - "file:checksum": "1220e2d0066c8fec3b7c018bf191754bef4bc96af630f92a5aa9e74fd292bac4e5d3" + "type": "application/geo+json", + "file:checksum": "1220098966cc68c37b44fbe6dcc641bef234b48916b660d5ea8b4d1c8968ef7936ba" }, { + "href": "./BL37_10000_0503.json", "rel": "item", - "href": "./BK37_10000_0104.json", - "type": "application/json", - "file:checksum": "122029672fab10d3a8fa031bd7f0c413a8e81945022eae7eb8ab466e023e699256f7" + "type": "application/geo+json", + "file:checksum": "1220f4d20dea4db4138d67f34becdfa77882edc95897571ff6351adcfc4cc3ddb5f5" }, { + "href": "./BL37_10000_0504.json", "rel": "item", - "href": "./BK37_10000_0105.json", - "type": "application/json", - "file:checksum": "1220cf9bd12c6bc94bb17fd134a59347b43c6738215f0b69dab86c057cabf2e19f92" + "type": "application/geo+json", + "file:checksum": "1220eb0fbeba5ff087675a512ca03ce876a307f887cf7faf1bdd1294167daf79b0c0" }, { + "href": "./BL37_10000_0505.json", "rel": "item", - "href": "./BK37_10000_0201.json", - "type": "application/json", - "file:checksum": "1220316f9e6995900e03eb8558c93e41d0faa590bc41338ca9cb7771d9629a0e4388" + "type": "application/geo+json", + "file:checksum": "1220233270472a257952f6f189396aa2ea93121774a0f630500b46585b557fd0f2b3" }, { + "href": "./BL38_10000_0101.json", "rel": "item", - "href": "./BK37_10000_0202.json", - "type": "application/json", - "file:checksum": "1220b32ccbf1d8caaad4e950941e78fb331f70dc2c0741057385130792f6225265e1" + "type": "application/geo+json", + "file:checksum": "122096a6aeae77367fb6cfd3c7ea59b869b873fc15ee4f92fc26a7d3967ea4c0689a" }, { + "href": "./BL38_10000_0102.json", "rel": "item", - "href": "./BK37_10000_0203.json", - "type": "application/json", - "file:checksum": "122045daf69fcdbc8a6ce8c5546e0c19783072bc3867f6feb51154ddfcd492d6c10f" + "type": "application/geo+json", + "file:checksum": "122000df81d598d055ce35db4d318b796194c3515cb2edc9f70a45af9327fda71162" }, { + "href": "./BL38_10000_0103.json", "rel": "item", - "href": "./BK37_10000_0204.json", - "type": "application/json", - "file:checksum": "12201bb5572f3b21f92ea1691a866f886ffe6bdadbb4e209e2ad1adaba74c7d97e0b" + "type": "application/geo+json", + "file:checksum": "1220397d38299016275fda99e8390ef8ffc8a9e028a698cee7166ac2b71782764120" }, { + "href": "./BL38_10000_0104.json", "rel": "item", - "href": "./BK37_10000_0205.json", - "type": "application/json", - "file:checksum": "12209c0a94b30a0e4df5bcc09090ee41e55a89a94801fecbae2ac95ce57075f7af40" + "type": "application/geo+json", + "file:checksum": "12207670bd96266dd7e818a2e6909e936cc0525e3f1533223219f121ea07320017f9" }, { + "href": "./BL38_10000_0105.json", "rel": "item", - "href": "./BK37_10000_0301.json", - "type": "application/json", - "file:checksum": "1220d6ccc2c8194d4423d3c0a7ed5814cce3bfd3950f2a17e144f9a9f8a2104c815d" + "type": "application/geo+json", + "file:checksum": "1220d846954f564aabaf773a8314d45910568f503be5b27e48ee5145c443814a959d" }, { + "href": "./BL38_10000_0201.json", "rel": "item", - "href": "./BK37_10000_0302.json", - "type": "application/json", - "file:checksum": "122035cefb16e06b40bc99888c8144d7dbd3d22971c2cc6da72b3e02393f75ac3c84" + "type": "application/geo+json", + "file:checksum": "122042c5743cc061a70f069717f3793cfc9e29030009d64738584769851e0c993aa9" }, { + "href": "./BL38_10000_0202.json", "rel": "item", - "href": "./BK37_10000_0303.json", - "type": "application/json", - "file:checksum": "1220aaf6b144160f8dc41d7636655e6b72e9eae0000fd18ea9c3f670620cfa3a446a" + "type": "application/geo+json", + "file:checksum": "12202830713c3b2003ce799bfc6377c2dfdfefd388c05e2f2ccf30c6fb3f1a8bde20" }, { + "href": "./BL38_10000_0203.json", "rel": "item", - "href": "./BK37_10000_0304.json", - "type": "application/json", - "file:checksum": "1220cd88a86fa2c2a65e9629c6c6eafffa12fbcfa4d614d47ce1fd3211301be03296" + "type": "application/geo+json", + "file:checksum": "12208b1890cb220ad6befca16ea123c7b85309686d77db831c6a90f85327587f6901" }, { + "href": "./BL38_10000_0204.json", "rel": "item", - "href": "./BK37_10000_0305.json", - "type": "application/json", - "file:checksum": "1220dcf0455f9e58d92c804179b82bffc91462e52fe2c7488bbd6eac6549d91e5fc7" + "type": "application/geo+json", + "file:checksum": "1220988ce00395847ba07ea0ba816558e192bfa81c664966cd53a23b195584565ebf" }, { + "href": "./BL38_10000_0205.json", "rel": "item", - "href": "./BK37_10000_0401.json", - "type": "application/json", - "file:checksum": "12208ea3a59544b4e7bc41f3d812738a3c0ef81a05f3da4be44de8e966598e6a0ab7" + "type": "application/geo+json", + "file:checksum": "1220b4a10ca6bd8a4261ff1820aba4ff154d17e91a6b88db226c12e95294f14ec5ff" }, { + "href": "./BL38_10000_0301.json", "rel": "item", - "href": "./BK37_10000_0402.json", - "type": "application/json", - "file:checksum": "1220fa766e328672ae962c7a22e79417b5f6aea7f435b597f3e8f94ae057bb919c4c" + "type": "application/geo+json", + "file:checksum": "12206b5f95df7dfd77bb46881dbd94dfbefdba36474eaae3de651f7ee473ff3d4227" }, { + "href": "./BL38_10000_0302.json", "rel": "item", - "href": "./BK37_10000_0403.json", - "type": "application/json", - "file:checksum": "12205dc401f390bc536351cedbce9282ead71f97fa90a96c92fb83bc2586bcb5eae5" + "type": "application/geo+json", + "file:checksum": "1220c7c5b87807b980fcc641f517b0a60f74ba13e5fa1c5fae96af674c74ae0a9fb0" }, { + "href": "./BL38_10000_0303.json", "rel": "item", - "href": "./BK37_10000_0404.json", - "type": "application/json", - "file:checksum": "1220cb97f8e9609caa9eed2acbb1c5a9504c6f7cb9a1eb846ac6e37ef22173f785c1" + "type": "application/geo+json", + "file:checksum": "12206f2848f52040dc16b8ccac55028553a1dfcb09dfd09e455971d733a8c0787aa6" }, { + "href": "./BL38_10000_0304.json", "rel": "item", - "href": "./BK37_10000_0405.json", - "type": "application/json", - "file:checksum": "1220273d6caca8e20ab1666ba84ac763169fac4492c2c80597a18543e0982842eeb0" + "type": "application/geo+json", + "file:checksum": "1220819337b84ffbfdd2db24b89213382bef611d90c74d83ede2d1efc97ef70c926c" }, { + "href": "./BL38_10000_0305.json", "rel": "item", - "href": "./BK38_10000_0101.json", - "type": "application/json", - "file:checksum": "1220fc4759f2fdc6a5e13a30413bbfeb676dd3c1580544bec881e91f366c8974cd5b" + "type": "application/geo+json", + "file:checksum": "122014411734d6b90e66d3bb8e9dd5435bebfd40a2ef038bb046c1bbd3332a5b8718" }, { + "href": "./BL38_10000_0401.json", "rel": "item", - "href": "./BK38_10000_0102.json", - "type": "application/json", - "file:checksum": "1220ae7172c2727a7db0fc2a977effbe0c9579780499c67aa529f2afe7c21fb71129" + "type": "application/geo+json", + "file:checksum": "12203a11241968e066717109bb2d9c99125251945bad459727baca24043b77838904" }, { + "href": "./BL38_10000_0402.json", "rel": "item", - "href": "./BK38_10000_0103.json", - "type": "application/json", - "file:checksum": "122050a7dfaa7d9b630f1b83f4f3b7e59bb323a809d291da0ffb4660aa3872f5de2c" + "type": "application/geo+json", + "file:checksum": "1220ebd2e7563b9a927cdf24cb3423e59bc2dce133256c612a8a352d31725bcca773" }, { + "href": "./BL38_10000_0403.json", "rel": "item", - "href": "./BK38_10000_0104.json", - "type": "application/json", - "file:checksum": "12203ce7b82e2b6a16d34c69baa8e9a0230a406ad92933094dc7afab334f819866f2" + "type": "application/geo+json", + "file:checksum": "12204ac85d88304775a765cfcaabba33ad45569ab06aee7d06a67636bfe29c07e67c" }, { + "href": "./BL38_10000_0404.json", "rel": "item", - "href": "./BK38_10000_0105.json", - "type": "application/json", - "file:checksum": "12208c2f743a27e523d696bf9d09b62fc9837099cabfe52d16ac0e9583985988c150" + "type": "application/geo+json", + "file:checksum": "12209d8cc09439b1611fc7eac03345c19584371b059edacfd6bc4f51d24b2601fde4" }, { + "href": "./BL38_10000_0405.json", "rel": "item", - "href": "./BK38_10000_0201.json", - "type": "application/json", - "file:checksum": "1220299f7c4757e21f040b7f39bcc34e70739893585b55ac01935a8305542760ce0c" + "type": "application/geo+json", + "file:checksum": "1220d113b5639b8866d6e5d86f42078e7d1716a9612a12c327c82c9331c72e8c5993" }, { + "href": "./BL38_10000_0501.json", "rel": "item", - "href": "./BK38_10000_0202.json", - "type": "application/json", - "file:checksum": "1220d3bb28ffb6153c1008f381be507c7311e8fcf7f39c0de37aa4cdef29cbe70871" + "type": "application/geo+json", + "file:checksum": "12208a7a656e62587a6aaf3328fc317be63f58d6ef1de0c16da64215ef8c8e8d465d" }, { + "href": "./BL38_10000_0502.json", "rel": "item", - "href": "./BK38_10000_0203.json", - "type": "application/json", - "file:checksum": "12208c3d2fea550dc73fd5085534cd9ad96e39c10b258af6758ae80bd7874eea52c3" + "type": "application/geo+json", + "file:checksum": "122063c12b2c751874e7874c03b37a57a7cd4540f388166164cba7fe850305a893ed" }, { + "href": "./BL38_10000_0503.json", "rel": "item", - "href": "./BK38_10000_0204.json", - "type": "application/json", - "file:checksum": "12207845380919562bbc6f8333e9f0f2c18331127e977ff670a1467e1998ae19d462" + "type": "application/geo+json", + "file:checksum": "1220e35f5838e05210e0629086db72c959144562f03497df278bebf13acf5166990c" }, { + "href": "./BL38_10000_0504.json", "rel": "item", - "href": "./BK38_10000_0205.json", - "type": "application/json", - "file:checksum": "12205194766afce71476b47466c6f831303b6c7f0eccd4294011b237b553d2fc21cd" + "type": "application/geo+json", + "file:checksum": "12205cc34906acdff7cd2074c884a0989e5fc88cd97d1bee48c7286f927d4ab66ec6" }, { + "href": "./BL38_10000_0505.json", "rel": "item", - "href": "./BK38_10000_0301.json", - "type": "application/json", - "file:checksum": "122017a4eb442c8ee9993745ac0f3639e4d46252510402431f9ab0e1c69257328a0b" + "type": "application/geo+json", + "file:checksum": "122078b3c404ca4a9b6d5ecc3a8e35576b586dc8a9391d8a7b62c2e55fc95c39316e" }, { + "href": "./BL39_10000_0101.json", "rel": "item", - "href": "./BK38_10000_0302.json", - "type": "application/json", - "file:checksum": "12206683336bb60dd22a9f5f75808d44979f6ca53f9e68ef6ea178410f1b5690e8e5" + "type": "application/geo+json", + "file:checksum": "122077832d19f01c6227962a04103d2fb129f8c9a3ac614a70cdcadda6c66004dc63" }, { + "href": "./BL39_10000_0102.json", "rel": "item", - "href": "./BK38_10000_0303.json", - "type": "application/json", - "file:checksum": "12203cc6a451ce1f2810f21752b19fa4b7f02f57e5ebfc541b328fe1a2b81d92963c" + "type": "application/geo+json", + "file:checksum": "122024f6df720081744ef42a66c2a8c1d911ab1f6221f5a1422789c2da796b6acdb9" }, { + "href": "./BL39_10000_0103.json", "rel": "item", - "href": "./BK38_10000_0304.json", - "type": "application/json", - "file:checksum": "1220ada08fd2f68abfda1a815a79a78240c18fde31302d90d18561819ca84d8b11d8" + "type": "application/geo+json", + "file:checksum": "122005e2ce97017a36bb8bffdf14273ad62624a17950d953ea36ca05d75ce01d1ed2" }, { + "href": "./BL39_10000_0104.json", "rel": "item", - "href": "./BK38_10000_0305.json", - "type": "application/json", - "file:checksum": "1220ff699321d2f8c78c79351b9dc2f6af76cb2f4ce4320d6e2a1cca06b286d64dbf" + "type": "application/geo+json", + "file:checksum": "1220ce587ffe0af19e40c28f259a288036a3565ab339d1d80ad67a044d596581c462" }, { + "href": "./BL39_10000_0105.json", "rel": "item", - "href": "./BK38_10000_0401.json", - "type": "application/json", - "file:checksum": "1220b31a5e5994859c1bc7ae0489bc29da5b44c40351c9022074949484c5c82dfe65" + "type": "application/geo+json", + "file:checksum": "12208a77127ab1fd3f062acc237471658872dfd3f9e71bcb657aa920a5ed7b69eb07" }, { + "href": "./BL39_10000_0201.json", "rel": "item", - "href": "./BK38_10000_0402.json", - "type": "application/json", - "file:checksum": "1220b3f5526abd0893517e247b4fa3bbd0fa6b80f1ac3eeabdc8476eac8a83fea3d4" + "type": "application/geo+json", + "file:checksum": "1220c16bb87d2a4889ce12a319d6d6ce905a3aab5bf8f214eb0ef9d31d1846bfb11f" }, { + "href": "./BL39_10000_0202.json", "rel": "item", - "href": "./BK38_10000_0403.json", - "type": "application/json", - "file:checksum": "12203c3900a5252b42a67ea24ffcc7914e133e2a53d7b0c589ad0cffadb1a3b39f6c" + "type": "application/geo+json", + "file:checksum": "122017d3cc8da771acf4bd5d7fd3d1b9dfa0f443686268dea6c26223de5940d2040c" }, { + "href": "./BL39_10000_0203.json", "rel": "item", - "href": "./BK38_10000_0404.json", - "type": "application/json", - "file:checksum": "1220d01bfb0a75e5f9857d9d224a28c4d06f9db17cc047e15851b072cef7e68a9073" + "type": "application/geo+json", + "file:checksum": "12204d1babc360a1fc5613dd1af02fb85e81775c710e2d86340d9ced3478c2500ede" }, { + "href": "./BL39_10000_0204.json", "rel": "item", - "href": "./BK38_10000_0405.json", - "type": "application/json", - "file:checksum": "12205ca80ababb0c733d743f42324f5cda75fc317dda5d7e7c18df62775c89663bb4" + "type": "application/geo+json", + "file:checksum": "12204ce5339e03739a0c01a8553af51121a47bc5aa8af303a8c1970a98cc315b5bdd" }, { + "href": "./BL39_10000_0301.json", "rel": "item", - "href": "./BK38_10000_0501.json", - "type": "application/json", - "file:checksum": "12204760babe2d78418aa59596880abfaa33a3be2933390090a779f8ee5737a34e27" + "type": "application/geo+json", + "file:checksum": "122027557577196edf453a7fec089bca18f63503929f04aac0ce6fab8136f71fb2b3" }, { + "href": "./BL39_10000_0302.json", "rel": "item", - "href": "./BK38_10000_0502.json", - "type": "application/json", - "file:checksum": "12201e75fdd769d7053cb03902d9941478654b17edf3635052d6e84a7e09e30233e0" + "type": "application/geo+json", + "file:checksum": "122055046704cfc1fd35f12c6b394c57410c518344200e2aa12adc815aab7f443833" }, { + "href": "./BL39_10000_0303.json", "rel": "item", - "href": "./BK38_10000_0503.json", - "type": "application/json", - "file:checksum": "1220b9ea8eff641e72b7d841c9633d96f4b19bb51fd811ac355257ac28cca38a0251" + "type": "application/geo+json", + "file:checksum": "1220df996585b954427b2cb384e4003382c384873b33a19e8d1bb9591d1a66687624" }, { + "href": "./BL39_10000_0401.json", "rel": "item", - "href": "./BK38_10000_0504.json", - "type": "application/json", - "file:checksum": "122043c7c3418632a9193148afc8875de7d75a050d6484e56c3c1a6e81a665835918" + "type": "application/geo+json", + "file:checksum": "1220faaa9a7a109c1c60cd545a90a34a431c8caae8cacf3c5270bef42b8e4149366e" }, { + "href": "./BL39_10000_0402.json", "rel": "item", - "href": "./BK38_10000_0505.json", - "type": "application/json", - "file:checksum": "1220a1fab93e80cfe1234a99ade024e395bfb257cba214ee84ea777d21d4696d39fc" + "type": "application/geo+json", + "file:checksum": "1220b488811713765e312f3a12ac20f8c3a98cc98e45149a8e0d1cf233bb7e07c9ae" }, { + "href": "./BL39_10000_0501.json", "rel": "item", - "href": "./BK39_10000_0101.json", - "type": "application/json", - "file:checksum": "122017cfe52a595d3ed091d90ffa3bab99cbea37454e146f8466ae452d97db5f606a" + "type": "application/geo+json", + "file:checksum": "1220b4739fea5171c74451df34749d5c46d766c9518bf85ac3af02f7639d75be9de9" }, { + "href": "./BL39_10000_0502.json", "rel": "item", - "href": "./BK39_10000_0102.json", - "type": "application/json", - "file:checksum": "1220e331c4293a2a008482999b6b1a0d2fd50508e90dc4d8d9158763aa02d9a03b01" + "type": "application/geo+json", + "file:checksum": "12201e1f7744ee47a8ebae5f834532548e24b06e422f3f768196f69a6dbd3e31adef" }, { + "href": "./BM37_10000_0102.json", "rel": "item", - "href": "./BK39_10000_0103.json", - "type": "application/json", - "file:checksum": "1220f1d3b5bf8f5978c86845ed26190ad544343c150fbf9215e9d61905508558740c" + "type": "application/geo+json", + "file:checksum": "122036f3649710ae661fd2776bd3b0d9b718bc2066a37908ed8164f8d3353a906054" }, { + "href": "./BM37_10000_0103.json", "rel": "item", - "href": "./BK39_10000_0201.json", - "type": "application/json", - "file:checksum": "12206aed37a361fe2238253c1fa444828753cde6df508bd90a725a01a464bf4d7d31" + "type": "application/geo+json", + "file:checksum": "1220a299b670579633bd650521b942ad2e466fb5aff843d10ccbc90b477b61ff157b" }, { + "href": "./BM37_10000_0104.json", "rel": "item", - "href": "./BK39_10000_0202.json", - "type": "application/json", - "file:checksum": "1220b262de3c8dc07f4f8107f8327b96e1127774c2848cd54e333f3980c40d552d97" + "type": "application/geo+json", + "file:checksum": "12206042d2df4183c4f4f374baba30621be73db0e445d5b95ce82cc63df9bca5a87c" }, { + "href": "./BM37_10000_0105.json", "rel": "item", - "href": "./BK39_10000_0203.json", - "type": "application/json", - "file:checksum": "1220da63ef9fd44e2dab1638ddbbcbc203a06872a9683d32c9ad6c49656e582029bf" + "type": "application/geo+json", + "file:checksum": "12207873526007c37875d858c47c0572a2bedc691495a8394e56db7ba8f5a7845451" }, { + "href": "./BM37_10000_0203.json", "rel": "item", - "href": "./BK39_10000_0204.json", - "type": "application/json", - "file:checksum": "122084a3c20f70d6b1cd35947e3719254784f6b71b866c0059c2a99c33eb87c739f1" + "type": "application/geo+json", + "file:checksum": "1220b6a7d2cbe15812292dc1baa101c86298add1ab3ef338f7f4ffa37909fb905bc6" }, { + "href": "./BM37_10000_0204.json", "rel": "item", - "href": "./BK39_10000_0301.json", - "type": "application/json", - "file:checksum": "1220f175687e58c5e57a026887337e5ae34125965644681b30fe16c1ebf396af26df" + "type": "application/geo+json", + "file:checksum": "1220c4b12c3ed8ab329951ee436bcb70d8fffd2cd93e74d6f7dd370ecaa8d851c482" }, { + "href": "./BM37_10000_0205.json", "rel": "item", - "href": "./BK39_10000_0302.json", - "type": "application/json", - "file:checksum": "1220bd1cd50544d1fc66b75b683cb99acc98c99a14a9e4a7dc50bb8dfa3bd24b5ef1" + "type": "application/geo+json", + "file:checksum": "1220daa5a206855205eef5f67e931ffad545529dd558c574bcf030c813bf3cf22b6d" }, { + "href": "./BM37_10000_0303.json", "rel": "item", - "href": "./BK39_10000_0303.json", - "type": "application/json", - "file:checksum": "122086345e431357d43ec198d42625ca2519fb16efc0a6738d17199876ec3bbdf4c9" + "type": "application/geo+json", + "file:checksum": "1220624e809dc2666e8abb96f255d9eeedd3814ce5fd3d13a73f4a447606b3058633" }, { + "href": "./BM37_10000_0304.json", "rel": "item", - "href": "./BK39_10000_0304.json", - "type": "application/json", - "file:checksum": "1220e71ad59aba2ff20fb73fae14d3e8de0a203bf154363912610e1e16451cdfaa73" + "type": "application/geo+json", + "file:checksum": "1220a467153e2db79e91c875c3ed2cc41713c7d59e18f21501042a6dbe7d0cd5be9b" }, { + "href": "./BM37_10000_0305.json", "rel": "item", - "href": "./BK39_10000_0401.json", - "type": "application/json", - "file:checksum": "1220ed6b624ffe35e34091837907b4464a4cc77a618cc1aa6864477100da603380cf" + "type": "application/geo+json", + "file:checksum": "12205a7acd144c9706670f9764e6c07de3104f0428aeafd4af3f0e4cb41d7a8e4985" }, { + "href": "./BM37_10000_0403.json", "rel": "item", - "href": "./BK39_10000_0402.json", - "type": "application/json", - "file:checksum": "122052987a6582558b7a4576ba1b268d7812487eaf5cd3d73898eddd438e790baa75" + "type": "application/geo+json", + "file:checksum": "1220d42732db306e92124d83103a43142710b49473aa5444552a8137ddd6d7b6b8d3" }, { + "href": "./BM37_10000_0404.json", "rel": "item", - "href": "./BK39_10000_0403.json", - "type": "application/json", - "file:checksum": "12204127f757134958f264060ace580ab295a9bf375037ae2576324534e40ef0ecfa" + "type": "application/geo+json", + "file:checksum": "122075c28b43159f47f418c26898bc1c4b8e9b67bad647826c64724c3e45f00d3427" }, { + "href": "./BM37_10000_0405.json", "rel": "item", - "href": "./BK39_10000_0404.json", - "type": "application/json", - "file:checksum": "12209b413fc9a51699c971746567301d9acd8a886dc0168ac446cf381ddb281fc1d2" + "type": "application/geo+json", + "file:checksum": "1220fda872a916b0415f442fea7108ea2eeafe779b66be613c2104aa44ca612a86a5" }, { + "href": "./BM37_10000_0504.json", "rel": "item", - "href": "./BK39_10000_0501.json", - "type": "application/json", - "file:checksum": "1220605b50df9fbd1fcb05aff029b1fb88fc44e1160d1236872ee7f016ac5bac9fca" + "type": "application/geo+json", + "file:checksum": "12207118579012d0d4d9913389f56f3654f1b0afe42f30fc135804e974316f5c228d" }, { + "href": "./BM37_10000_0505.json", "rel": "item", - "href": "./BK39_10000_0502.json", - "type": "application/json", - "file:checksum": "122066f7433e9ff1e1d21d7ad5908cf83235c5dd9f7270d3633f048873f4adeaaa85" + "type": "application/geo+json", + "file:checksum": "12205b128e5496b84279be4588fdd32084398252c00b0a62ba78314b799df3dc9909" }, { + "href": "./BM38_10000_0101.json", "rel": "item", - "href": "./BK39_10000_0503.json", - "type": "application/json", - "file:checksum": "12201b4858941859559280a7e210471be39a6a96b9f9e8708f4fa5d3a4b43f6ff033" + "type": "application/geo+json", + "file:checksum": "1220d00539363a1c613c39d9a9343175a5afd0e35ec32b9104f800cb57ee4a0f8a51" }, { + "href": "./BM38_10000_0102.json", "rel": "item", - "href": "./BL38_10000_0103.json", - "type": "application/json", - "file:checksum": "122042d6be82cac6bf4e52259e867673167de8e779f5eeb525d05c0388ca08b9a1ca" + "type": "application/geo+json", + "file:checksum": "122058b645f697765fdbb7731f5e1fb79ea0545b3368987d53c2805031613958867f" }, { + "href": "./BM38_10000_0103.json", "rel": "item", - "href": "./BL38_10000_0104.json", - "type": "application/json", - "file:checksum": "1220211a876764b9c269ce5ad291e82df48ba7fe547b9c4f5719135877b85c359aa9" + "type": "application/geo+json", + "file:checksum": "1220e7c49d7c724ac9bdc27670febd70b186e057b7faaa4acf1e23a9035875d1fa60" }, { + "href": "./BM38_10000_0104.json", "rel": "item", - "href": "./BL38_10000_0105.json", - "type": "application/json", - "file:checksum": "1220e67c3095ba5dac14943b1f3126e576fff009e3267216414c4f18d44009d9ba65" + "type": "application/geo+json", + "file:checksum": "1220500a724eed91e9a24152cb6cacab201994262320414f4fb4b8ebf7131a756cde" }, { + "href": "./BM38_10000_0105.json", "rel": "item", - "href": "./BL38_10000_0203.json", - "type": "application/json", - "file:checksum": "122034fa25ec7edcd3e1bea209fb50ea477061446abf86b28a2575204f2a7c407f1d" + "type": "application/geo+json", + "file:checksum": "12207a077d08d685fff1ab93076246c74d2a9559e72b0212fbf076eeb7ff06d2027e" }, { + "href": "./BM38_10000_0201.json", "rel": "item", - "href": "./BL38_10000_0204.json", - "type": "application/json", - "file:checksum": "122048b0dfda7e0ce5074fbd78e5fd07f2509e9c3553e7a85882b374319d901cc314" + "type": "application/geo+json", + "file:checksum": "1220c86c255c8311e3e4c93736466b9cc3405c3d5a2ffce21d1d16c69278f187cf4c" }, { + "href": "./BM38_10000_0202.json", "rel": "item", - "href": "./BL38_10000_0205.json", - "type": "application/json", - "file:checksum": "1220690af91b325137328d367bd7ad15a27b8a016c40a939f764e696a94649230b80" + "type": "application/geo+json", + "file:checksum": "12201c413ecea41f8d1f6b7ad1a413aba4698c19dd314a2cb1f45dfe2c9855997773" }, { + "href": "./BM38_10000_0203.json", "rel": "item", - "href": "./BL38_10000_0302.json", - "type": "application/json", - "file:checksum": "12207e58ae8fdd4ba73fc5a146f1ce3d8f44bc38dd45abf157719d6a45645d0e140e" + "type": "application/geo+json", + "file:checksum": "122010b624c22b1b965b3ae2e449b98e798e97c479800b5cd0a622c980721ad6d82a" }, { + "href": "./BM38_10000_0204.json", "rel": "item", - "href": "./BL38_10000_0303.json", - "type": "application/json", - "file:checksum": "1220cd89192d8d9f0637ee0c79a3cf71d82fa78686e40476ae45b3d2b9c29a4441cd" + "type": "application/geo+json", + "file:checksum": "122090d5291bfe7fd68404cbccfc6f8319688bf5070334779b5be36c3f1025a39379" }, { + "href": "./BM38_10000_0205.json", "rel": "item", - "href": "./BL38_10000_0304.json", - "type": "application/json", - "file:checksum": "12208e2dbc1dfa682ceefb1d95ab46ad1db6bb32954923077005630d34804f6b83c9" + "type": "application/geo+json", + "file:checksum": "1220127424ed7d7e3aa2146fa55f1fe459ebaa46a8c16484d4d2168dc8a942b9eed3" }, { + "href": "./BM38_10000_0301.json", "rel": "item", - "href": "./BL38_10000_0305.json", - "type": "application/json", - "file:checksum": "1220f943aac89a003b6b61195ac7342718bf9501c3921c27ba651fa588173e07f17a" + "type": "application/geo+json", + "file:checksum": "12201d0ceb3d5040603d7b9bc0463108e78b7d97ba430724fb80531bd11b9ad30c38" }, { + "href": "./BM38_10000_0302.json", "rel": "item", - "href": "./BL38_10000_0405.json", - "type": "application/json", - "file:checksum": "1220dd0dd7cb6900b192e1f2433a5c4f6db3b399c1e2e9a80e1f38af55a2eff22dcf" + "type": "application/geo+json", + "file:checksum": "12205dc3b6413260e820242b09b0dbd814fbf0921a02c9f1f2682b8e9084a5c21f34" }, { + "href": "./BM38_10000_0303.json", "rel": "item", - "href": "./BL39_10000_0101.json", - "type": "application/json", - "file:checksum": "1220d9e3f88200dd773f2893d13fef75014a08d1fae512fb347c15aa06534f6ce9a3" + "type": "application/geo+json", + "file:checksum": "12204a46b0d3bf07b1c2193600feafb70d5d3e726c2d93868eb6ec358a4763407b6f" }, { + "href": "./BM38_10000_0401.json", "rel": "item", - "href": "./BL39_10000_0102.json", - "type": "application/json", - "file:checksum": "12202b4ed568b63736323a53154c8d18acd9993be1534d5b00750fd2b19a5e41e4ee" + "type": "application/geo+json", + "file:checksum": "1220164669a273d266e020b544afc34023e959ecde065a4a15c6e8381d6a593357cc" }, { + "href": "./BM38_10000_0402.json", "rel": "item", - "href": "./BL39_10000_0201.json", - "type": "application/json", - "file:checksum": "1220125fc8b2538788f1e29d7ed4b52044c71582be2f6bde7ce51a02ec69e6ed3698" + "type": "application/geo+json", + "file:checksum": "1220c677f73c9e7294a8c364d15aa355aa8ce218d1d68c994f6f40c4648abe6b69ad" }, { + "href": "./BM38_10000_0403.json", "rel": "item", - "href": "./BL39_10000_0202.json", - "type": "application/json", - "file:checksum": "1220684712c0c74a3a60e271850ff0c715fd3896a0eb14877854723509e755675d5e" + "type": "application/geo+json", + "file:checksum": "1220525efa1afe766736eb066be4d6bef790f55d0076bc761e50b368ac4f6616168c" }, { + "href": "./BM38_10000_0501.json", "rel": "item", - "href": "./BL39_10000_0203.json", - "type": "application/json", - "file:checksum": "1220de28a0fc2b437fdb717ac9ae93504cc93a76050a1f442bb17bd356b0ee829799" + "type": "application/geo+json", + "file:checksum": "1220480470866e45b1e080c2971e44b44229a5700a931f05b977606ac6a40daf4325" }, { + "href": "./BM38_10000_0502.json", "rel": "item", - "href": "./BL39_10000_0301.json", - "type": "application/json", - "file:checksum": "1220aa67a13d56f7343501c878bd5dc49ddb4c3a49da5584259fd72436f812452f23" + "type": "application/geo+json", + "file:checksum": "1220aee2967bfefc359f60c406a9384d6ed94a52df897827f91f97b42be3c2bd8d00" }, { + "href": "./BM39_10000_0101.json", "rel": "item", - "href": "./BL39_10000_0302.json", - "type": "application/json", - "file:checksum": "122062d81db3ab32b14e85c1d72611d1f4d5224d9e8f3ae840afb2054b50c0136e21" + "type": "application/geo+json", + "file:checksum": "122082837db78b06d9637f722f00fd6934040714c85a36c2afabd74ae25c7eb1dbb2" }, { + "href": "./BM39_10000_0102.json", "rel": "item", - "href": "./BL39_10000_0401.json", - "type": "application/json", - "file:checksum": "1220634bcb36390811f8f4310fdb0e1298c13a5ac2cada13e444c644010ebafcdbc2" + "type": "application/geo+json", + "file:checksum": "122050cfb3686c5a84d12622159cddf2fd34faac23e8f5000b227c255d75b377b6d5" } ], "providers": [ @@ -1276,18 +2374,21 @@ "linz:geospatial_category": "dem", "linz:region": "hawkes-bay", "linz:security_classification": "unclassified", + "created": "2024-10-21T00:03:35Z", + "updated": "2024-10-21T00:03:35Z", "extent": { - "spatial": { "bbox": [[176.0260349, -40.0750063, 177.193365, -38.9634771]] }, - "temporal": { "interval": [["2023-09-19T12:00:00Z", "2023-12-20T11:00:00Z"]] } + "spatial": { "bbox": [[176.0260349, -40.4739342, 178.0283496, -38.7469279]] }, + "temporal": { "interval": [["2023-11-19T11:00:00Z", "2024-04-26T12:00:00Z"]] } }, "assets": { "capture_area": { "href": "./capture-area.geojson", "title": "Capture area", + "description": "Boundary of the total capture area for this collection. Excludes nodata areas in the source data. Geometries are simplified.", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "12209cb32e1ad063e46dbea5f9923f725fbca55deb004a50a46730cd55d26afedda4", - "file:size": 79036 + "file:checksum": "1220cea2956d16191c3859caad951dcb291f6984275bb2b371437f63d1540a9c5607", + "file:size": 664508 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] From ea18ebf6e8fbf9e20261999dbdb493aaac2a5678 Mon Sep 17 00:00:00 2001 From: linz-li-bot <134554979+linz-li-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:31:40 +1300 Subject: [PATCH 309/309] feat: import Hawke's Bay LiDAR 1m DSM (2023-2024) - Draft LI-1538 (#317) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Basemaps preview link for Visual QA:** [Basemaps 🗺️](https://basemaps.linz.govt.nz/@-39.6106510,177.0532967,z8?style=es-hawkesbay-dsm-cvrhq-get-location-222380769flat&tileMatrix=NZTM2000Quad&debug&config=DVPzG3UESFRRo7fnBBVCvfQXpQHcHtusThuWAu5NgEf3cwMmL5oqg8rVervW5RPUt1sqwKkrQQBLQR3vH7TizF7iTbEXeKriypd7WfWeYz96i5VcRR4K7gFZmpL5yzZ8A56V5m5Ygfpec4jTpE58RDTG9h4125sHUVGME2LeFVexNJFppjtVJEvQATRX77vigRSAvaeSQydbkmNmpqZKcgTMPiqn93eFSAJFBW35PXqhsV4X6UxEUZ) **ODR destination path:** `s3://nz-elevation/hawkes-bay/hawkes-bay_2023-2024/dsm_1m/2193/` --------- Co-authored-by: pmcgarva <144646940+pmcgarva@users.noreply.github.com> Co-authored-by: Rebecca Clarke Co-authored-by: Alice Fage Co-authored-by: Alice Fage --- ...YCKM9WF7ZWQ4DPCFFCF8H40-1729478701445.yaml | 8 + .../dsm_1m/2193/collection.json | 2395 ----------------- .../dsm_1m/2193/collection.json | 2365 +++++++++++----- 3 files changed, 1741 insertions(+), 3027 deletions(-) create mode 100644 publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1729478701445.yaml delete mode 100644 stac/hawkes-bay/hawkes-bay_2023-2024/dsm_1m/2193/collection.json diff --git a/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1729478701445.yaml b/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1729478701445.yaml new file mode 100644 index 00000000..e9db8ff0 --- /dev/null +++ b/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1729478701445.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/20-es-hawkesbay-dsm-cvrhq/es-hawkesbay-dsm-cvrhq-get-location-222380769flat/", + "target": "s3://nz-elevation/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/", + "ticket": "LI-1538", + "copy_option": "--force", + "region": "hawkes-bay", + "flatten": "false" +} \ No newline at end of file diff --git a/stac/hawkes-bay/hawkes-bay_2023-2024/dsm_1m/2193/collection.json b/stac/hawkes-bay/hawkes-bay_2023-2024/dsm_1m/2193/collection.json deleted file mode 100644 index 5e235402..00000000 --- a/stac/hawkes-bay/hawkes-bay_2023-2024/dsm_1m/2193/collection.json +++ /dev/null @@ -1,2395 +0,0 @@ -{ - "type": "Collection", - "stac_version": "1.0.0", - "id": "01HYCKM9WF7ZWQ4DPCFFCF8H40", - "title": "Hawke's Bay LiDAR 1m DSM (2023-2024) - Draft", - "description": "Digital Surface Model within the Hawke's Bay region captured in 2023-2024.", - "license": "CC-BY-4.0", - "links": [ - { - "rel": "root", - "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", - "type": "application/json" - }, - { "rel": "self", "href": "./collection.json", "type": "application/json" }, - { - "href": "./BG41_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e3047cd25732854a5f3b64dcb5edb8dff94764b0aed2ec56ef006fee7b00b990" - }, - { - "href": "./BG41_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b68819f6dbf49d48b5b2dd3baef678236bc167b43e71989021a1c8fb034fe7bd" - }, - { - "href": "./BG41_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201414c7dccc7c28cb88572ad2252725cf0d40f6468c8f13fb5c84dc0640036759" - }, - { - "href": "./BG41_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203b7a151a8193f841fe98c48dbc238c428e6a2b2c85cc44b2186e0dfc709b2e9b" - }, - { - "href": "./BG42_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122077a5b4cebddde0519b429edcb9188a97e90504f85c101f6be20242208dacd71b" - }, - { - "href": "./BH36_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c65a07b083f9ca6c367966ec5e6ed9da5a7573353d0570d3f143a47a8b6ae8b9" - }, - { - "href": "./BH36_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fc1c15f9bb5b1148d1ecdb0116a482403cd5d4c0c730a82d1429c7cf148373bc" - }, - { - "href": "./BH36_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cea35799915eb88a7b5a249a0e9fcf706ecbe18697190cab8350fa0626672bc4" - }, - { - "href": "./BH36_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ac6449d26e660ffb5591ce2cc9538655f96eee68d061c8c2275eac27661603de" - }, - { - "href": "./BH36_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207e06f81078d514c960d66dc0d075c6417b3525cca60e91a57569134a500fd620" - }, - { - "href": "./BH37_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cdb5345700b4825ce245351060724059086a534e7da543e9cb5301c2feb1ea64" - }, - { - "href": "./BH37_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200f704112aff5bb77ef081034113927dca79ce2e1ed3f72ef81104f02654c27f1" - }, - { - "href": "./BH38_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220736a83f51ebd31bf94032c3953de306e93998a82b414561521b7426d57992b3b" - }, - { - "href": "./BH38_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f4edaefa7908c8558203bc43f1f2bb1fb5f4827ef84356b8579cce2d693590e3" - }, - { - "href": "./BH38_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122043bd5cc7d31232351dfe68e1438ff4481ac65069e44cae7dc1727c7e76aaaea5" - }, - { - "href": "./BH38_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122035d1e43df9bee48858c42804350d05fd8d52160682d1c3d5f22ff5105a9d5d91" - }, - { - "href": "./BH38_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208530ba714e9558766f149ca0b7cbd2bbea497a13544916f72300d1fc42dc6eaa" - }, - { - "href": "./BH38_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a07774f005429f166aa1e6fadb076bfd9ff225a5612911efc999eccbc3a075f6" - }, - { - "href": "./BH38_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208f10498dff310deb5e4e49470f83c26864badac64c073f806a4c93e40e659f37" - }, - { - "href": "./BH38_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122008c39ca55528a8b89265ffce1bd69555394445d568008e9302f56ea5668b7e71" - }, - { - "href": "./BH39_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204985c394ecadb409d5eef554091bb611421809774f587cd61cc38c12a508bb74" - }, - { - "href": "./BH39_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122033b698271030d9a5170072b5cd2018e1289bc8ce257528a6c3b737f2f1e05065" - }, - { - "href": "./BH39_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202832585dd3d3c02e16c2d0381af22009d561bb5f2255652a0e757fb3aeee3003" - }, - { - "href": "./BH39_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f0db838489d4d077fc91dde466f846ba96ec41f62b2af079547d730448ec57e8" - }, - { - "href": "./BH39_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200fb67c81468133ac7765111fa1539993227f9c786deb2fa6508e990669d26a9a" - }, - { - "href": "./BH39_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122024c454629ad6479dbe2db2e146ff52f51559bb70877a931a7d1ab66208f9ea1f" - }, - { - "href": "./BH39_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122056523fc3e0f69d775ce34cac4aa116889d94291be859bb780f1a4fc99e03c724" - }, - { - "href": "./BH39_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cb07efb799050ef9a47331a1f05b00cee051d134b4813f35adc5a2c9bae970ac" - }, - { - "href": "./BH39_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205cda6ecf5f7c7118aef3efd317d079f2b30cc36b8b664e95ce13ffa52e526fd2" - }, - { - "href": "./BH39_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122040df70a66d2d49556f8aa90af1443b52b05e36ad109c3a3f568a51af352ac267" - }, - { - "href": "./BH39_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220da6cf7ebfc31068775976093239485def3f30a1e57af285f939f8f953d0b904e" - }, - { - "href": "./BH39_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122064c030a37172a7ce63f72432beedd86683fc764b2737cf6417d87cefcbec9910" - }, - { - "href": "./BH39_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d3a0e79f2da911c7b2ad4e5b734b2b9e0e3204346efc47d49ab6dc53499ef28e" - }, - { - "href": "./BH39_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122006c891df905edee154dcd9e16373658d31e8adc16e773792c15f9c15df006df6" - }, - { - "href": "./BH39_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205c0d232bc3486d0ab985b8ef945cab89359f2e0b1713462941e0942e0c00443b" - }, - { - "href": "./BH40_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f25ccbcc1361e8c59b2ef53c00a905ecd69463a7b3ce7ace191fb83a2e634a46" - }, - { - "href": "./BH40_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122098fd279f901502f84ff2270dcddf6da2041dfdab11764ed0810097e91e03c4be" - }, - { - "href": "./BH40_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209d3242c11e3ab429588c1a6390508ed04b473bc1a380ed256ad023411ddb67b7" - }, - { - "href": "./BH40_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220eeb04a8a84cf3fc2fc15a55e69f1094994c78102b4727872223ef96495806db6" - }, - { - "href": "./BH40_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d82daf184d71cafe81a249fe5675e4621fc1c15962ae6ccb97cfcac7f6367444" - }, - { - "href": "./BH40_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b26d24c50fc52eec7c63a9584904eabe83a972b818d2a5601c2ba60703e69ae1" - }, - { - "href": "./BH40_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122084f75c5d2a1c8111a2281962cdca198482066acd8eb5a09c27d5898f6624b54d" - }, - { - "href": "./BH40_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205dd07cc96da1cb1afb61a5f261786bf19c295da507b11b55f86b1a846c7aeeff" - }, - { - "href": "./BH40_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122095c44227d06e6006e70df34bf9d0f5a072c7fc87c394605c6ddc6d9da8181773" - }, - { - "href": "./BH40_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209629bd42c4547ba432adf1fc84745b414f566600daf9720959de24aa38025ba9" - }, - { - "href": "./BH40_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d7b552cfa80eb1884e800b220156c382f70db5337447b4d5ec93fadc15680253" - }, - { - "href": "./BH40_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220308e99f0aebcc19ff4e408575ffe03607d174b5fb39eeb33010b369c975977d3" - }, - { - "href": "./BH40_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220bbe348329be838569b4a34c2577444893cd9c0ce22e681d481ab06bb429ce197" - }, - { - "href": "./BH40_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cc10c24dc5a2c49f91f9654b684ed7fa9fc0e91a573752f5543f3cd93dbe1606" - }, - { - "href": "./BH40_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220792b41270c7aed8dc707f405dd2ca1b5431b9e99f8eef76c971c63510a512830" - }, - { - "href": "./BH40_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203c4edb3ef02ebef97937bc72ed6b6df85cb8b090601e52287ebeac9f0bb63c63" - }, - { - "href": "./BH40_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206f55284b66c50d95f927a335f05ddf9698336f24aecd3270ce05159335a7c97f" - }, - { - "href": "./BH40_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201de663990582ac517963487072d3f8b9dc80a173b4408d2d90a55610203445db" - }, - { - "href": "./BH40_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c74d747372a76567828e2a97bc1555a48a76702c601253f8cb7fcd3b0e9bbeb7" - }, - { - "href": "./BH40_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d83182155ad35f4bf2021bfad94aff1d552cb0dbe0f69bddbd6d056597b64562" - }, - { - "href": "./BH40_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122077634f6d5b6a49e25b1ff1dcbf50c36a2ebd9103ec0dbd1f7667c34f80f46e78" - }, - { - "href": "./BH40_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122057c270594ae2faf3910b77eb0de46c067024a11adc2f2c450238056d2370d268" - }, - { - "href": "./BH41_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220802c9fed30ceb73a333d2ff08401d85e832fcd7d88fc449c05d2b00e103e6087" - }, - { - "href": "./BH41_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204fdcad9c1a6bcd175cebee78c8771d29967fe670453735a5b1cbcf2d58b9f50c" - }, - { - "href": "./BH41_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205b9703d687e03c80cbb786fdfb829a1ae1bf81a23fbfd847fb9769ebb165c164" - }, - { - "href": "./BH41_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220104985b90293c60ed7113e3638b74a8a136c255c7af8716106ca45d08c4f5397" - }, - { - "href": "./BH41_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220bbf8c9d8da0e1cd5481d2c8be1ee0f98d03f29ddab3a4fed132a66d277a2444e" - }, - { - "href": "./BH41_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220076dae2e84ef0ab8368ac62960ba809a712085cf7726406d55980ffc0a14d9c7" - }, - { - "href": "./BH41_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200e78f7f70f025a8f8be815681fc7a8d2bc8aeda331b5ae700283d3ecf3211259" - }, - { - "href": "./BH41_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220379242f521e6824555ae1caa2b3a971eef1d6864d9c11f58300bf493d22c6064" - }, - { - "href": "./BH41_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206cba026fa4edc32d0ea2fbe4390165e81750c26bb4eea64cb2d8591b560ea2ba" - }, - { - "href": "./BH41_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cdaa4845b97667ff6ea10bdd3bc2fb4d963e0a9f70afe479d350863f65a2b8c8" - }, - { - "href": "./BH41_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c1873e00874354bd9d6ab3748b795347dc8d4f083a27356bf48ef99625715a0f" - }, - { - "href": "./BH41_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206e9d1a766e93c461d1fe76fc952ff3daf159f898b915ae456e149739be3fc176" - }, - { - "href": "./BH41_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ca3d5f72f10be86347d63cbd89a8ee2d363667c4c1078885d07c99cae843d99d" - }, - { - "href": "./BH41_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200b15a5e429bd7d562f9e9770e49d5312cc077b153c698d0c5171b7091da70417" - }, - { - "href": "./BH41_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122075dd79f62dadb3354ecfa23f3c345df883a9f2e9b6450ede2d4fca0981f123c4" - }, - { - "href": "./BH41_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122013557598e31f149852845a34b1acd5e46b01f7a1dee46de3707563a41eda779e" - }, - { - "href": "./BH41_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204a86aed5ec2d8e86ba64c05b0f21a782acaf6291942ed1243aa5704d7bb4fae8" - }, - { - "href": "./BH41_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206835de1589ba48d2be7b1aaa354eacb3c8526e34f1283fa37aa97beb06798447" - }, - { - "href": "./BH41_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a08abdfc8b5b1bd4e9cd1c7258a92d8e4cb2ebf97b2dd7f1e2fb70793d31bcde" - }, - { - "href": "./BH41_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a686242c675242bcd4b933bfb81b8e195c0196874553b0b0cce59787cce7fe5d" - }, - { - "href": "./BH41_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203c8c1a8404d08b7362ac4d12a02084dab750c243414c3923e1f374d50c77ed13" - }, - { - "href": "./BH42_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200f8b3e4d46fb23c7dad0ff0105c3d15686128fa3b7d06a5506e10a8ea4c7f7eb" - }, - { - "href": "./BH42_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f6dd812782baf3435a8fe83b84766d99887bf420506808a26131bd4bf87b2557" - }, - { - "href": "./BH42_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205522b1eb5cbd6c84bf50f58553223ac9cad004c7e2c267ee485ce089f18d5b4c" - }, - { - "href": "./BH42_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e47785338f41eb9ce9358e44d43602379800b60f398354c6cb08db4a3c050468" - }, - { - "href": "./BH42_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220027d2362c5094f362d282b64fbf4bfd5418de21ff86c7e1074642b7d5229a104" - }, - { - "href": "./BH42_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122098e88fae1cea45fd6c1282bce2226141db09a0755310939178ddd41509319874" - }, - { - "href": "./BH42_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208366f30a82356c8b3f6f62ada686a9b9bfce4465fa088754c5f4520641604109" - }, - { - "href": "./BH42_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220dfaba705b92d1761803c8007cad5692fc71fcf946a45d41fcfb080c61e9cf516" - }, - { - "href": "./BH42_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220807d262b73af80fcdaf481c7dc037942213a93fd62fac94b625d9758725c8ce6" - }, - { - "href": "./BH42_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122041a7933c0cda867d469946f567bfd61aa16d07151b66ea8e7529e18a6e096359" - }, - { - "href": "./BH42_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208a8c46dea28f7d8c33a545f53cb636a9828eb2a7cde7ef54e6e34a10f51b6da9" - }, - { - "href": "./BH42_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b275839b6ecf6f72e6e4e5d989cad1ec21268dbd518f15464c6f444f285ddc07" - }, - { - "href": "./BH42_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209cd68c132c69ea5def138e2348826d058557406d88862edca59396831401f925" - }, - { - "href": "./BH42_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cd2d1ad8f641b711b15767983bdeee44e1d94ca7fdb65166e85ccf6273bfc721" - }, - { - "href": "./BH42_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e32bbd9a5dfb693d4d58c681b1c36e724b35ebe0b29e88b72f96b5f64a854118" - }, - { - "href": "./BH42_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201a80b1fd1c226f1035ad000e953b040c65ef1a807f59f07e9bfe1bae0fc4a4ff" - }, - { - "href": "./BH42_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122089581c8bb668d7899f27e5bf062ddc254ddbd52f5d8c56c07a49a6edac10ad0a" - }, - { - "href": "./BH42_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220219aa62cae974d711f7dde98d108d817798114da8198e8b2afdbdb9396e0d71c" - }, - { - "href": "./BH42_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203ae2c3281e6a5bd1c4df9fb79426d622ac17038fb916f578f06d657f7d770edb" - }, - { - "href": "./BH43_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220db4acb35d4e41d1d739f3b129bfe63965172944f89b7d734f7a4dbe6b25e7d5d" - }, - { - "href": "./BH43_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203cf041115087c4f864ed298d78e6e973f1cafc8f0fc6b0223afbca72e58ffc52" - }, - { - "href": "./BH43_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122096fd2bbd72d54ad43cc64e15328edf19285e52724f8defd309919ff6511e044c" - }, - { - "href": "./BH43_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208bdff37e6de78878fbb0f1b384c8a10869cdea02f90c303231ecb8db4c8d1aa5" - }, - { - "href": "./BH43_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a4a1171b2408da227e608028674822016d2f0deef8403cdcd82ca981b91adf6c" - }, - { - "href": "./BH43_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fbcaf2288a244cefc9f48a663e51193519683ad6df964ea37b29bff5ee67892b" - }, - { - "href": "./BJ36_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204fde4d2861370adaf8b7894d4006298a53f8186d192fa7a73f83984f91c52fd8" - }, - { - "href": "./BJ36_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220aa5420b939837d413712db68b6472c959850bcf2a8d626b791149d8f91742379" - }, - { - "href": "./BJ36_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a7d25da025071c59ed1015d995687965563fe8d837661ed36dabe3ba0b0ce23d" - }, - { - "href": "./BJ36_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122043a375209dc5b4e9c5ec360ade50276855028c84fa6fdfcf493a5326f4e3ded3" - }, - { - "href": "./BJ36_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fb4cde02188a098707280c87ff008c63d15e4c3c79f9e949db56eacaf7b78e9e" - }, - { - "href": "./BJ36_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204dd20a2f8e55eed183700fe0de50d8df7de7a5006444c89b279ded3992fcda8c" - }, - { - "href": "./BJ36_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122082af0093aab856a3f1af4c0c86d5eb50c41b799d46bfa737c7513d5eb6b40175" - }, - { - "href": "./BJ36_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e2d3195868e5e80f71bd66f96f37e7b69cb87b6769638121d04d859ce943db0d" - }, - { - "href": "./BJ36_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207e01b164118fbd345a06538aae6f795ecb259c8e5cc85a9420b3f25ae9953444" - }, - { - "href": "./BJ36_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f7717a46c2e26730e8d2251f9d82f861e3812fd7173e6193e1154eda5be5b7bd" - }, - { - "href": "./BJ36_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201ed3042c134b9220897b819bb16533e2b40abc0cb933ec06e44c380365615ed8" - }, - { - "href": "./BJ36_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209d0405e8a508778fabdb4e51106cef99810c21894dfe3d01d09fb155527e17f2" - }, - { - "href": "./BJ36_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220dfd1d776f966e8fe512af324f1f0d8920c685ec7d69c979775c2610abaeb6acc" - }, - { - "href": "./BJ36_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220eddbc20a84d4bc071d938f49cb3a1816e47fa2d59d7ff2fb190e3cc98a544e0d" - }, - { - "href": "./BJ37_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220329db4d86ddfd2b165184a48b28531cea2c0a04b805e48cb3ea977c1633c9d51" - }, - { - "href": "./BJ37_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220395f67223cd69ab73260f39e4ad30c5e0ef0ca0172cc20ebf6c87143bdb5aeb5" - }, - { - "href": "./BJ37_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206ec0458e10958341d4dbbb42b2aebfb7458a3d9e1ab9a608c1b4fb4c1d700de2" - }, - { - "href": "./BJ37_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122031a3e4947d1cf45586229b08d2e698a1a0cb9471922725e80ab81626f2140b51" - }, - { - "href": "./BJ37_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206a1fa12738b9aea2fc109076eca03941991796508e18ec2994f206840192f75b" - }, - { - "href": "./BJ37_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206c6eaf596cbdb10f273088d22e0585b510e8c3d2c34db336e9fde9a4fbc9164c" - }, - { - "href": "./BJ37_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122030fbea9e6408a19d85a49d57985b086a119c5c0dc9cff42c8f726bed6ca21509" - }, - { - "href": "./BJ37_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c9394e7b4c35bd27eb103c360861c82ef3dacf9203d4a3354aa5cd030682e052" - }, - { - "href": "./BJ37_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122027754c74f66634487a6f17dfa777cc38010d027c56910290d9291f640ace205c" - }, - { - "href": "./BJ37_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220bad3049b04014ebc7fe237e3167514913019edb89230ed0529be7ae4b82a3305" - }, - { - "href": "./BJ37_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b59e07f8642e14117e154cd5c8bdd18e03f7bac09565d1e8f779883bb6502560" - }, - { - "href": "./BJ37_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a518d7c96f0cb52f619bcfb1aebd703538a87529aaa077b1f28811507685caf0" - }, - { - "href": "./BJ37_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205492770ca2ad9ca622d913decadbf1048cbc19f2fe1a87c5c63330a4e9492e90" - }, - { - "href": "./BJ37_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200bae6982ae88ce9128d8c51ac5fbebb70a19131e78a8ea789ee184b92fca1c9d" - }, - { - "href": "./BJ37_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209b207c4085ffe3178f3ba5f7d1064b89f67073fd49051655923ffd03d1977543" - }, - { - "href": "./BJ37_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207747a57523bd0bdd7f3a852786f7618c5deb421f04c738a59726bad4fcbac76e" - }, - { - "href": "./BJ37_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c522b056145aa88de9540b3163498f11811cee64fae39950a258dce30cef0690" - }, - { - "href": "./BJ37_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220027eef706ba54a1b4bcaffa84160d2a0c1c0b64459d3bdf215a19e02bc315b0f" - }, - { - "href": "./BJ37_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122044eb9a8ef8dc6f1d3a7c91a18200c69b7e639fbc592b75dd345c86d3b0fc28c1" - }, - { - "href": "./BJ37_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220be8f72c7b504b820b11eb267a62e1c179fc629e55cb2563bf48de7558a4cf723" - }, - { - "href": "./BJ37_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203fed032340160cc4a9028b727e3527d71b74d7fd1470c1b1ebcdbaa456e7825a" - }, - { - "href": "./BJ37_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f99cfc8e6871a4fab9454207be712a4408b51cc8ed3bc0250eee05256a914ff7" - }, - { - "href": "./BJ37_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ec2a591e2c1f3ea5e8addd4895ea5f5e9d29986f1b30df87db87820520cf6cac" - }, - { - "href": "./BJ37_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220345280ac40e56bbd02a634824c6c1856c2833f37cd684297ee64599b771ee4fe" - }, - { - "href": "./BJ38_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206590a95f9cb75388eb3a36ea2a9bce9fbe4ee1ed76fccd7e72901dede1fe5c6b" - }, - { - "href": "./BJ38_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220df9bafc93edc0889ca50e7b59924938d237ce86c4b8d11b9c81f8cda7862700f" - }, - { - "href": "./BJ38_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d5d23606c76033f135bdf6ff7ddda89fb16fe5c0e509531c46eebaead65d71f4" - }, - { - "href": "./BJ38_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220465c16199dd6a70e14346ce6794df8dd3b6b8f2f52a9f03c80ef034ddda1821c" - }, - { - "href": "./BJ38_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220839de273fc54f6e655f71839684b153786415cb68fa7775466fd30da31d77896" - }, - { - "href": "./BJ38_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e64ed03bac1eddb15c0b6e68ee206ecdb5037e08d63b41609304bc9ed34e0787" - }, - { - "href": "./BJ38_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220630e4cdfe6b1e992af9b7fe987e09a5a50b1104f0d557b9ee6270d714ca6700a" - }, - { - "href": "./BJ38_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209b1521e5e614565286b24253b46ed77c2b7369303e138fff1a193f60ba8190d9" - }, - { - "href": "./BJ38_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220df050c53fd77814cf5da99bb85adfdf2289b84ffd9061d44effba07014053957" - }, - { - "href": "./BJ38_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203913cd842b57d5e52a9181dd25ff10e4a7f13957bb03c9e76530388d9f1afb5b" - }, - { - "href": "./BJ38_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122027ff35e2585b53aacacb2414e86cc83002e53ccec17c998bb00f23023958d839" - }, - { - "href": "./BJ38_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f1960befe2b8eaeb8db02eaf0c3f36abe9e9833b484a04598818c089ea30423c" - }, - { - "href": "./BJ38_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204a2b58e990fee0778fb46b3c97d8b7d0660ead002907008a62bb71376ad320c7" - }, - { - "href": "./BJ38_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c90e4a7d7aece55c99c671e9d08204cbd6cb3c80f2e03abc80d057a2e9e28947" - }, - { - "href": "./BJ38_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209967fd9374a33065e871dfc65ab490de50dbe732625086fb13e4a7c64fecc3d1" - }, - { - "href": "./BJ38_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122076ad9b26a9867434073502c067caa89cf4bc07c7f67982f15a76bed5798e1422" - }, - { - "href": "./BJ38_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ed4fdc77dfe52b73859182e8c7e893b5a0efd3b90c08835f47d5aa1e00e01fd7" - }, - { - "href": "./BJ38_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fb7f74da6af409d90b7934321ae361b3eea529eaefe89e017a8e6995ca253e6b" - }, - { - "href": "./BJ38_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a22ddb59880108f5b327ce16ba3a050fe09a9129983f8cc0f8b515be673bd8ca" - }, - { - "href": "./BJ38_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205c3ca5234b1a0282b88d9a530ffa6278746f2db2811636fbc3ff78f8017d1073" - }, - { - "href": "./BJ38_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122000722317320c783fa25e561de989ce6b80dfbada48f308a68fc33ded774d6445" - }, - { - "href": "./BJ38_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f2359fdeeaf62e44c2c68df0bfb1017f729ce4f017b989d9f678f6783c4e3eb4" - }, - { - "href": "./BJ38_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122010b0eba82fd0647f97304fdc7aa9c7935e97cb584e48f919c0af1c28bbfca11e" - }, - { - "href": "./BJ38_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e48cd9918a824fd2feb16c2c5e8177ecb295b04d54770314c0b3eec6ad654bf0" - }, - { - "href": "./BJ38_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122022a7610215fa81c48b5a8b544985c891a7272b244b11ddcd4ac8c546df9ed139" - }, - { - "href": "./BJ39_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209142666220eb872e2f4e1c2e524d5df05a8f983e077a6eba28583f1bcf6df748" - }, - { - "href": "./BJ39_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122078b45b6572ef3125c378cc872e486add31732cc53007543efec74677626aeee1" - }, - { - "href": "./BJ39_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122018f9beb98da7000d32b31270d704e66950048eb0e86042544e54e3925dc022aa" - }, - { - "href": "./BJ39_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220bd65cad1a829d442eb0677fe84d3b25d5e5528ce44ffa2a0d24134e580103083" - }, - { - "href": "./BJ39_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220332ca1ff3bd4c37ed239667b215b094029c235fd15c7d199f4903cf4f41fd9e9" - }, - { - "href": "./BJ39_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f4be2e23a4df374e2caa53601b88e19d1d9b2ebe1e09979f792c13c551741f72" - }, - { - "href": "./BJ39_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a62ac3e48cc210d4e3885ae41b53bc8cb9be00df7bf23783c1fba1875d0f5661" - }, - { - "href": "./BJ39_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a6c388504809025a98784b882fe57153e542d8322f78784718425709a59a96c7" - }, - { - "href": "./BJ39_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122027ed6d7c94faf1580b2e0c8b93a422aba112facaacf9445055e7c9f8cafece46" - }, - { - "href": "./BJ39_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f5d1d913116556cb960ae6b7b5a03a96e367c0dda0d9a4fe6df62f083d79f6be" - }, - { - "href": "./BJ39_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206d3fefd29f268f99243cce6f16a846962edcf81d798b400c683c88ebd15b1999" - }, - { - "href": "./BJ39_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122075f0a1f906914a7e42071b2556b9e2a01decc4da00f2a7332133dbeb7920051c" - }, - { - "href": "./BJ39_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209c6a7389e07438142ac4ba9d7703cf23144288c5af9eeec46468f76b564bd5e5" - }, - { - "href": "./BJ39_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e7f3a00729d8c4d01f41f58a26f87c0ce6344d0b633e3496f0fcdbf5874404eb" - }, - { - "href": "./BJ39_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209482e86bf1055aa71c4af863e74643a9d9cffee59082af95d5c853057e8f1e18" - }, - { - "href": "./BJ39_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122064a8b2f44349bbadbcecff7d7a07ab8c5458863081fe28ac1aa811436954ace5" - }, - { - "href": "./BJ39_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220dbbcb80955da8fa43e1e6dbe0704b8bae3abc72a5292ea3131cca990c265f434" - }, - { - "href": "./BJ39_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122033fa7ca5219d4230aa19545ff2068435dd456a16855b807228560f7484605251" - }, - { - "href": "./BJ39_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205ad3bf79fa9ce7d08dd37c06de82bdf632edfccc3ab31f0c126069af80ce3ee0" - }, - { - "href": "./BJ39_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122079cf02e5a1d0c8bf729b5bc189dd68389f2062a6ac6f494b806e0390d04ad6c4" - }, - { - "href": "./BJ39_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220242cb8e1853cd144ca6823ac9d17181656c1c2fdf1c2d7d99f42cf31f260c26e" - }, - { - "href": "./BJ40_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220910fee66be94b7e8598e1d0d7edef9a78ee237f051bab03d7800b8842b458cc7" - }, - { - "href": "./BJ40_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208bd5ffd3c9ecbbf3f23bfa8ecf6a4a0007d09ca61dbda34f369a27c2302c7487" - }, - { - "href": "./BJ40_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204d94ed004dec6aabc9fab0e3e05c29c61d47563bfc04e679cd1cebbbcf1b2954" - }, - { - "href": "./BJ42_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122025825c25a381dc1cdb7fe47045fd8d3c4139fd51b101096ae5a2f60b0e1758e8" - }, - { - "href": "./BJ42_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203ca4a65eb6811ce14d0fc70b378d08944db455e139b0921d38393596e240985d" - }, - { - "href": "./BJ42_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f5af5d7dcf7bb62df4ce540f32fcbb125c2dbf379bd90e874f6b3401f6261dab" - }, - { - "href": "./BJ43_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c62ff0915b08e90a76228c18a2bb75e142eff85ae4311b356aad6755b9d9024f" - }, - { - "href": "./BJ43_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b0cd02eaa6475f8579ac0ee0edec44d9afa3b7a814872128fddfcdd5f3c44014" - }, - { - "href": "./BJ43_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220be16288e596756d51f4e94d20216dd3fbc33c14142101aa13fe3f3563bf9e44d" - }, - { - "href": "./BJ43_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205f132ec29597f0eb4b9d87b7863e59c8aabc71fe2b809ffb23ee1fc9e2e14173" - }, - { - "href": "./BJ43_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220bf1a1c9ca6b598d6d661f402289a523915870e499f1700f241cef373968a61a6" - }, - { - "href": "./BJ43_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203c99f424f8269671623ba4c5b314659bebff5b543751a159d4eae931dacdb0ed" - }, - { - "href": "./BK36_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cf6a013b0e8047090bf82045bfbf77fd081c5c9aa90322314e8af58b38024be2" - }, - { - "href": "./BK36_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220589a9f1c53a1ee87058b9125f7b7f6c4087c6005cb0cc669f5558c3aedf4cfbe" - }, - { - "href": "./BK36_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203f39b16e7c36806684c7c6aa0fdced87985123a76450c0dcb1c158eb664de077" - }, - { - "href": "./BK36_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122064dea1c5c50f821c79e6e03890b8f3991abb80a0eb70bc2cc58f8e5f3a816bd7" - }, - { - "href": "./BK36_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a8c4117e5c8f5ddc4e59d4cd50eff7a8fa19734563c13a7dc1adf73b36824b97" - }, - { - "href": "./BK36_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202a907e9a03ad8bed7553e5ec8514e2c8441298277b6fed6471004a63dca240d7" - }, - { - "href": "./BK36_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220865357d519e9346fb7ed85d04622efabc0a448fd8994f39b4050c2aca4336eb3" - }, - { - "href": "./BK36_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c2f006878171f402af18087b070708610d92737536a0d5af96212a8b3c601c28" - }, - { - "href": "./BK36_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201f2fee0295c6089cb6648a9f69db9876af9893ae72d193a3ad15e95dc3d44a33" - }, - { - "href": "./BK37_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122083cb0dcf49470ff15046062537dc2dcd06da120acaa0e1cc782bc2d9d4ffbbd2" - }, - { - "href": "./BK37_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a3fe38c7239737c32bb0c135944ebef6b2f289c1a320bcd1207b591959f65c1c" - }, - { - "href": "./BK37_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202808e4c607e0b6e56a70f695cec8e435de2a35d183fb4ac32b8362473fb4445f" - }, - { - "href": "./BK37_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220aa9a6389010b0defef83dd6bddcb0998cb158218ad54ef2e2a508c0f4ac38815" - }, - { - "href": "./BK37_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220830ec08831aff9b865c99ac484627e6eb84fc0de2ec1efc74fa2ddc2c0fb0b6e" - }, - { - "href": "./BK37_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c99d77dcf2738856528784a0e659b0aea95bb31f5a8d2c8cd7b4732fdb8a7c9b" - }, - { - "href": "./BK37_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201372fb3dfa5bfe88e9d6038abcaeb144c7c190180213a92c28fb0a022d6705dc" - }, - { - "href": "./BK37_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f5a5fa1098e480b81906107c0e0b26662f045d2dc6a32e3716f93e616a0c9a35" - }, - { - "href": "./BK37_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203e9b967d073e419db96a40f71887bfdaf10ca55acfa2f245fac41023f8992823" - }, - { - "href": "./BK37_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a77cb1b70c73d16ee1866a3ea6d9560e493bf1afa8c4aaf0c0efd35389687b57" - }, - { - "href": "./BK37_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d143d6d41f7c659bc9d5b2b756a2dfc1f6a508d62af80cb1e9cfec2b53e4f4d6" - }, - { - "href": "./BK37_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206f083cf0a974795222d3d4b4a242a02f6c27a99847bdcd343b2dd783d91e63c3" - }, - { - "href": "./BK37_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122085ad4714414e0974317ab675a82a087bb20597b53005be80904726594ce72b52" - }, - { - "href": "./BK37_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122001c997d9ed991085f67a9081006ac8c70ba6bede3722dd49f63071fccc5e5dd9" - }, - { - "href": "./BK37_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122066ec0d2fc515258f11873ec4459d8d9960aab296952e127780e4708711e8d9dd" - }, - { - "href": "./BK37_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122003a37454d212aea54279c79a2f6a8d92b10cc12ce2da656738bc91cc77188951" - }, - { - "href": "./BK37_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207b25e93e4b76d0ffb73d6fc3edb3dcea066b254a8125239c2787fb1c995f25a2" - }, - { - "href": "./BK37_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122075956886ea18c057198f839b8fb8af4de7d0c63e8218ebfcab9919c828e361c3" - }, - { - "href": "./BK37_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201cf2832f9490109b1ddcabf94edd99199f884a4d2961ad74c7cf6da4df34f80e" - }, - { - "href": "./BK37_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b60e0cb119bda7c9d220869b520d917feb173582bbe4bb1ae8ff26caff5b7503" - }, - { - "href": "./BK37_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e2f4d263a24797cc1b84184cb9c5a0503bb072afe9bc9d81553add0646fed14d" - }, - { - "href": "./BK37_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122017e236aa58fafa5f713f02a6c78a14227d8d7d620f3da8bbc397a31caeb197af" - }, - { - "href": "./BK37_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202b6e242bf7131b480cae8f34d45da6de5b9c7ba99c57aa3cbad4c464f877b4ae" - }, - { - "href": "./BK37_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220df943950514c1b7879e5372aa53b7a2bf8495724e0782d5ee816b0f1c0b0b389" - }, - { - "href": "./BK37_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f5b388c99b80b33fffb8bf2241a054a5c681bb8b80616921407071980c1e2847" - }, - { - "href": "./BK38_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d653209a3ec2e679938079f33cc18d55dedbf01e8371cae5e6ed48bdc5afd6d1" - }, - { - "href": "./BK38_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220be01b522beb6f20dd4f3a0df1c0210ac5c2630e948ef99229dcb40724cbd02fa" - }, - { - "href": "./BK38_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220dad73ee1420d66790ecb01d342297640df0f48fd992768fa9670a428872ca03c" - }, - { - "href": "./BK38_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c6297f92bacf0e7f2f74a8cfa864be7c18be5d762600c4c1a037b10b6567d510" - }, - { - "href": "./BK38_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220112b629b629bcfb7409ee0b56612d66c4fa231a09719e5e25608ce2fe093a35e" - }, - { - "href": "./BK38_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122011f6ac6c91d8ed31ddf76fbb47a7acd4e2abb27fd2db3a72f7852fe8b3044385" - }, - { - "href": "./BK38_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204a6b6e2fb9629126eb7909336024c2161247129e7d0c264bfee1077706e62499" - }, - { - "href": "./BK38_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e964b2d0a26c6c1ce7c9607929dca66afb6a65a806b8eb5b558d2c80a7b76414" - }, - { - "href": "./BK38_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201b208e60fd4122886e77d30f58546d3dab4325f191a37d6058e186d638342236" - }, - { - "href": "./BK38_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f02c10779669ad612c714c5f2d180e02287faba0ff98d162ce53e4e7b0a6f227" - }, - { - "href": "./BK38_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122032588d4e530ef2ce556409abacabf287e0cd9f324b6968fcc7a38c5ba8b47cc6" - }, - { - "href": "./BK38_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220774b8d9290ceacdd6004caed80fd3f806ff93a893baf805935c9565da5b53a5d" - }, - { - "href": "./BK38_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205ca51a029b4edb450b2baa2f237d108d5dd260ae58ededbbef555073857c2045" - }, - { - "href": "./BK38_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122030b22a17a345988ee7164eea33e84986c4fafab32237c7ce4699c8d3e740c618" - }, - { - "href": "./BK38_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220738df18ec2dec7ea16d8c62645f7cfb411d615a28c3da33239764f2c68b4de89" - }, - { - "href": "./BK38_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220246bc13c454766c2086a18e06654279d8ed487c3631153754f68b1721443b966" - }, - { - "href": "./BK38_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122051b9fbac39cac674ce38078265685a2fe2f20a356d60cce4c918e9fb25f23e8a" - }, - { - "href": "./BK38_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202c2a5218b94098f7c4253e1f6775cd6e92dd46926aa52247e58693cdd67c5629" - }, - { - "href": "./BK38_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220243542cff5b574df4189d52b5f48a118a4f59538cded68f63707033f5a2faac6" - }, - { - "href": "./BK38_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122056c90be3e3e82b1f536bb94fd793db987ca64d0b997f503665ec2fa2aa4a14d5" - }, - { - "href": "./BK38_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220622cbe70eddcb4f54a6e2530b60b4a289309b9e6bc0cd0d44657aa018315fdaf" - }, - { - "href": "./BK38_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122049f0960eb9e2f6df543bb28250dd3ed0ca2f5f4dcc675aeb6d4252cf6851ab7d" - }, - { - "href": "./BK38_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cf4208516415c190a75e0630600a8df277ad0946a6dae9124239d273dbf2aea1" - }, - { - "href": "./BK38_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200e99a04f6e993545cbb907c255aeea8cdb3a3a34ea6ddaa94fb98928297573d3" - }, - { - "href": "./BK38_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fb35dd4e9fded45ed80679d396c6040e68b9d5fe251dae3bfa849f6dcb25803d" - }, - { - "href": "./BK39_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201a9b1cc4ca294a730499cb28450b2a53437a2849e4e021ee9f9e1c528855dc52" - }, - { - "href": "./BK39_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220667da1a09235591b1d12b278ad252d065e8695a5290e1f5b3a6cf1f70e1b1d8b" - }, - { - "href": "./BK39_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122060269813d32e457cc69735f18926f7fc2bf3d07f3494da30a8c545eac989da9a" - }, - { - "href": "./BK39_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e21babe0356211c63db9855e7c61989761d05ddc20c213f1953b82930a46e38d" - }, - { - "href": "./BK39_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202b7339d6234d4f313aac14b04cb9eba1a517c8dccd31058474e9091c0827eebd" - }, - { - "href": "./BK39_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fd9830478435d375bf327ff0bebb26abf370d23e407921b3e6eee52995b6c142" - }, - { - "href": "./BK39_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fc9aeda40bd19588834d0f529d7871793eecfd4fdc55b18955e97d17400b5b8c" - }, - { - "href": "./BK39_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208d9a0004818d00b0fab8c4e4ca4c291a5a2d5459e9d6e9b51f926e8063ec4be6" - }, - { - "href": "./BK39_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c11db104f850be7ff0f5cac4d1eefa8000de146b29f8e221987e2a6aa1546536" - }, - { - "href": "./BK39_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e10fa7b7d7a6383b910bf668965d683c7ba3221e6a550ac066d89421d1c8ae80" - }, - { - "href": "./BK39_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220da8b743a48e2f9e22b62c4a169c12b66decc774ab3881929d39403e38f342206" - }, - { - "href": "./BK39_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220bdbc96eb8be66b211f90a5c445f5f15fc4ecd4e4c2471232710f125983c126e6" - }, - { - "href": "./BK39_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207ddbac0814f3d607c5672e982e9546922ae31dec2e08b44c968b440c36f482e8" - }, - { - "href": "./BK39_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209bc454d936e0385f07117b3d0bdc22f9c19a060d6d08f54918030a671a0db0fb" - }, - { - "href": "./BK39_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207d019441625281bfad368cbfbb4cbc9d20d0b6f56cd44984e4a91444f1f67cc8" - }, - { - "href": "./BK39_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205f6dcd4b6c0b13912083cbc9705f6e8bd8d5823425779d10b61ad099ca1b9826" - }, - { - "href": "./BK39_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202ab71b7702c2836389520d3cda9dae1c2e7431ccf9bf6138db55ca9600218c95" - }, - { - "href": "./BK39_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e36ece95f75014ceb743526748f4bcae551d8fe831c66eaeb2a7c71c8472cee0" - }, - { - "href": "./BK39_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122058a6d053359448b43c713e7b25edc913b473d74d2026b42fd401889e51cacb34" - }, - { - "href": "./BK39_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220891e48cca3de819f872d7ec13f264bc56ce19db13ae45fb55e83cdadfc51adcd" - }, - { - "href": "./BK39_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e96c6924c7bc24c767b8e2f26305092ebb8055bd73fdefac104d5f768b00fd6d" - }, - { - "href": "./BK39_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203792789128c6b2fdbd108dede6164629cbba9d67ced0553e9d0f78fa72b8964c" - }, - { - "href": "./BK40_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122001648ef3b9f800a58cbe9394b92f76382c916e7ebfb5629afc0ca663d4f0c0fa" - }, - { - "href": "./BK40_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122006ae586115dbc0df8bad022f7e613f0d5354c1b15f0b936fed4c71b9edeb0789" - }, - { - "href": "./BL36_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204ba0e3c7b21561508103ce860e4706b5b3e17b1c54815ab62791e85ae0f99e00" - }, - { - "href": "./BL36_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b45550dccdf58f1caa1ea260816c41276a5f7e15ce5a50e9d0d579400e08b3cf" - }, - { - "href": "./BL36_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d48d9b6c18ea783cc999062ed5f06046ed62ceb3a96af7e9794ed39e5298092b" - }, - { - "href": "./BL36_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b5ad09af49f4b40dbb475b61882370c8b2bcc2fce094e7194e74362b3ec005ef" - }, - { - "href": "./BL36_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208840ce6d7f4d9e7a9bc277f71c4414e7015e5126e68e41de333f42ad91638f3b" - }, - { - "href": "./BL36_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c0a7074250dd3e5341927c0c795c3df2a9f2e5a4ff228f43021b8008e1459978" - }, - { - "href": "./BL36_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220af15ec2d29cb797b9580bc01e3e3df2d316cdbea47ce9abc379bbc3b3efc3768" - }, - { - "href": "./BL36_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f75e4309c71b05f99d0f1368da67f29ef14bbe5436bc7bdb0a165c29b989b1ea" - }, - { - "href": "./BL36_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a2fca8887f9fede7820840eae093bc02461aabde8735a02dd206650963c15faa" - }, - { - "href": "./BL36_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220416246ee812e893fb25c76f5c429cbe0c5dd4eea2ae93740a73da8c6417b363b" - }, - { - "href": "./BL37_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220742705c9912d203a174116e54cc90c2b0f59afcda1664dc2a82196fadd9df9da" - }, - { - "href": "./BL37_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c1211e7274e18b70d12c8e68af4fa53e193872084927342fbbd7ed0ee3b09992" - }, - { - "href": "./BL37_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cd7c9c3d908f41e70e9deb762062c44a77c6e380b5ca6752b887341bef2bb24e" - }, - { - "href": "./BL37_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207f281fe5d8c73ff7ac54f04c3a5b1832cd6b614cd9ba2bb7a84992b64c1d3ab0" - }, - { - "href": "./BL37_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fced5b6562a11bbf80b280c598fe9b531c61ca374e9e1c4eea3b2fdfc404b267" - }, - { - "href": "./BL37_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205a2450b8654f43f8ea356e754494ed2c924db2138f5cef77b859bc6d0fa11f97" - }, - { - "href": "./BL37_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204abf94fba47588c1e0f2da82a0dcb60fb28d51b191b19a4f34d1202d2187b17c" - }, - { - "href": "./BL37_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12205a3b3350c717c28b64da3c77b2d22bbdef2b02dd79dc4eddea18a784d96efb1d" - }, - { - "href": "./BL37_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208bbb532fb4efc458aa5b99d7043c27899780b8432d7fe57c19d30310b9eadcf7" - }, - { - "href": "./BL37_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c18638a86344b3ff99fc2dfb55c14e88a4181b5dcee28b5331381868e5b916e4" - }, - { - "href": "./BL37_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220791b7ebb1f4dce55b5db81bd51ffb0518017593cdd63001e4123db2cf659b664" - }, - { - "href": "./BL37_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12208719e385e9c4da5a11391a8b807ec0144c59e79971db931a12233969445e5c3a" - }, - { - "href": "./BL37_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d7f619fe100322a61fda8738ff7317b8087ddec0b489fd0f97b957b41bcc04c4" - }, - { - "href": "./BL37_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122048104d498461f28ca72c7b4db13388b69aab601ca0d2f9586bdc0dee4bd40083" - }, - { - "href": "./BL37_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200fc1b5e077e352399964c6a04e850a430f6c55dc2f933165aec7de41a7459646" - }, - { - "href": "./BL37_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122065ca8baae73317a48d0b0bcdbc01fa166f5b981b9bbcead0a55ce5e138e75499" - }, - { - "href": "./BL37_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220876014d352f304da1c9bcee1db908ad276b9a4b612e23b544f4da486c99ecbfc" - }, - { - "href": "./BL37_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220df8f7bf4882f99157057cf313ccb2e15d5669ac9532c803c1f58a058e394f133" - }, - { - "href": "./BL37_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e3cf76beb2ae5d0230913433dcb89d546fd980e3b238cab794792d7787f8cc25" - }, - { - "href": "./BL37_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220217f5050bf68957de4b7995be557c80f2003ca10f024734f8ed4d39b47aa99f3" - }, - { - "href": "./BL37_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209be10b1f467fb0c350752a7c4c4eea5e34055ff871630fdbe329ac9b7e4d8ea2" - }, - { - "href": "./BL37_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122063c1738d7b66dccbee89171017174062e5642d044b4432c9ee0b832547dd84de" - }, - { - "href": "./BL37_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fa4fbf13dde12f078b4ffa5e1ac134f2fa7d132881bbdc1409a2d72f3ba62be4" - }, - { - "href": "./BL37_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a407dfcbeb9cd1cd13f420380e971a3c9929f214a94f6b76426baae498ff10bc" - }, - { - "href": "./BL38_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206693cacc9fe427b85ac227f833e2cc60da51fd216450645ea42ebea773df0716" - }, - { - "href": "./BL38_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206d222afd7187a004a58016592cd918664c88e587bbf803e58634e37099626ab0" - }, - { - "href": "./BL38_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220da98a49d20dc7dad99edfd4b06df0e1ae18199b3a7a0e1488fe0b9b4ee355875" - }, - { - "href": "./BL38_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f0635521c7b9921c9cc7d832589acdd8ee8598cf1bf2508355818cb1982d9562" - }, - { - "href": "./BL38_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206afad81de6a172770727dbf2be3b9c9517c2617e08df423b75224d07e55920eb" - }, - { - "href": "./BL38_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220aa0878e4109ec6bdecd18c0a9f364508603bcf63fcfaeed5a2ff75460ffe1fde" - }, - { - "href": "./BL38_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e1364ce8c521dcbe13ae0fe63145f609b49728eac0a68c675add7e9e7e32b08d" - }, - { - "href": "./BL38_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220681ca91684d3f761ae7a4e573ad71b62de30133802d4433dbadb5a7e58e675dc" - }, - { - "href": "./BL38_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c641c7fbd6745b2e92063e4d5a3013639aaa48a4c35bf164b209d72f9d3b35b6" - }, - { - "href": "./BL38_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b0f628e2ff23d3ba281b8cd6901a9712dc59f549befc64bbf788c268fdcca67b" - }, - { - "href": "./BL38_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220977b27f852e4f649c61b2a9be014ca53061070fe0d51a6c7ede0f47b82ecf0ae" - }, - { - "href": "./BL38_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122096d2406b34bc4b9374e78deed0b0a72d15d7835ddd30caa421c3ae541c5fcd57" - }, - { - "href": "./BL38_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f1809655c051f3b1ea2e59df2f838c78875b458c582dfa00ad24e82094b22af8" - }, - { - "href": "./BL38_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220169af32dc4ca4b04ef78d3f6aac8a9fe9b5993fe8422b78cad9584d8a3b50a08" - }, - { - "href": "./BL38_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201cf6689d9d320bf49f25540b9fd979ec5dbdd373eee8f9105a34e865419ed91b" - }, - { - "href": "./BL38_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b6b0fddb2b66baa4b0f86b168a5221e1fa274f518c4d5ba7059e0c01d19f3441" - }, - { - "href": "./BL38_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122067a20f4bfae71a86b7556e34a7daaf36ef5e1e0f1beae03fd069b8ac3f1f7b11" - }, - { - "href": "./BL38_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12201ce22821778be6ea4f2f4c336fbb79561d69b42c9ca1b7a3416a36981061cc4d" - }, - { - "href": "./BL38_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220dc77586af71d21e73d9a66b386b95f97101f74657a7c70e6183908cb248cdd02" - }, - { - "href": "./BL38_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b3fa5a2d94114c1fc1dc7a09bd6d8552e533e8665c4a162f16a7ba28437c01d0" - }, - { - "href": "./BL38_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220552ff048f7c490e7443eabb7a706953abcfe3500f0a65f237520e9757c0fc792" - }, - { - "href": "./BL38_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220fe27e48ec7e96a57cd7ded26c4c4a61e8b70d8cf2ebb5ec1dcc8d2b69fca7a9a" - }, - { - "href": "./BL38_10000_0503.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122069cec694cb23a42b1f66abb97abf5e53cb8e3ff6f36c430c2d3061433e04ca77" - }, - { - "href": "./BL38_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f28d7d81da080e1b3604f2be6a0308154204340c8e84866295d8cf731bbf673f" - }, - { - "href": "./BL38_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220209aaa9a0b451d5210e925daa06e4d0d781233c3f0e069224c317688369885a8" - }, - { - "href": "./BL39_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202ceafad9f1111a67b80256e1213f45992c8ca9d60da64943ee55d276a18a8c52" - }, - { - "href": "./BL39_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122092dbe8e5c6b1109a9c463b456ce33a9f72395ba51453839e9e596fd2dba54a14" - }, - { - "href": "./BL39_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122041cb7ccce7e3939655b305b33fcf5a09732011f5dcdaa295ed2f69f373d2e343" - }, - { - "href": "./BL39_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220c8d488dec06e932b618377edbd5e97a972c97335c36efe89994a3505a2c6a601" - }, - { - "href": "./BL39_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207577b36aeb14447343fc81251c40947739a50e4493285a4d53158afc6526fc8f" - }, - { - "href": "./BL39_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f9ff0aeb24257632a6196b00e012016ef996d16afb5504965f9189bbd3e8b762" - }, - { - "href": "./BL39_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122034119cd3e8cc4d11b474be496a4d59f838242f379438f533b6f29cc45e3a197b" - }, - { - "href": "./BL39_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122022dc625e8cd429ad0a59b0e05b30d4e550eb00ebbef4164ce5cfeed20a5701b6" - }, - { - "href": "./BL39_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a0ff1f831cdf3a6fd5f6cd8f2e28c96d9748f9c9a5dc78e18d72160ad28b1386" - }, - { - "href": "./BL39_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122090d898d5f4f0c7177d9f0af5aae343410153e4912f47a1dd0e292ede9b794f20" - }, - { - "href": "./BL39_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122088bc6c9dfdcb59f7f7e52461263f9473a69478b75d31b9dd0aa5ee7009b7f909" - }, - { - "href": "./BL39_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e98d17b813b2052a039d09b9980a449e3cb030efeb5b38ffabab61990643d2ae" - }, - { - "href": "./BL39_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209d3172a1a5ce6ed58906d938a5006ab981c48a28351dd5e86d74d273bfa6d8c0" - }, - { - "href": "./BL39_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a8a0b985ce6927b185c7ac2ae02ca6352c426d7d058662d17e66cc551667b1d5" - }, - { - "href": "./BL39_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204738870333fcf5b6af7a0d289f9d1eab728454a599dee78650de77d6599d50bb" - }, - { - "href": "./BL39_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a5070623918027f3a961a16640883b790f44aacc7215876292d31a75425c1554" - }, - { - "href": "./BM37_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202d6760b93d46852218ef6417ec66ceba463e4082ef0100eaa64b375e54af1650" - }, - { - "href": "./BM37_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220668212bb90855d9a3d7add136fe50007376e5c2bf54e5bfb3b6e3e7dd44f515e" - }, - { - "href": "./BM37_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12209550f92bd0cb55deb75de6cf305729caa355868a031d30d979842730e05d7594" - }, - { - "href": "./BM37_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220370dda1774f3c853d676b81d3beca48a31bfc8e73cbbcc6e2e1bdf88f1d5dcce" - }, - { - "href": "./BM37_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12207e11694b5ef83ff2b19bc78fedae348db00ecfdb31982f295b1a100af96d905e" - }, - { - "href": "./BM37_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122093e2187c374ab9ebd08356443d1956316e153d3cc7f17c7ff6ec26c41d186f7b" - }, - { - "href": "./BM37_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220f9d989f4816566a896c11d71f6b84dcb34b848c9827fea7a928fb7f52905fb77" - }, - { - "href": "./BM37_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12206ec821dcd11ca6e8762725f941b3689dc7ac770f8c8d2b77031c5068a7f0a166" - }, - { - "href": "./BM37_10000_0304.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122041b168c79e456377024a6a07d633e9ba622ad7b87a9715fa5a7ff20b6137cbae" - }, - { - "href": "./BM37_10000_0305.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220475b1a555f365e88830b23d591e41e3dd91efec3a4520ceb96f8bca0fdbc0de0" - }, - { - "href": "./BM37_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122053a7e60c5e48d9e66f0ae45206793f3fad8f83d2ae56a5911fd7472ffdf489a9" - }, - { - "href": "./BM37_10000_0404.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220ddc9993da6b0509cbbe6a1c1dc58b5ce1aa6537ad4cf4dafc1e9964b02a1762f" - }, - { - "href": "./BM37_10000_0405.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220779a1391ed4033fce587ea663a46146d2ee74ffa27e4a6e932b30d351461cffe" - }, - { - "href": "./BM37_10000_0504.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122038623dce3032221fd106ebd3dc737a116cef415b74a98c29e145b7c2f71958f2" - }, - { - "href": "./BM37_10000_0505.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220a24b1193f361f0e1b3f2a9ef5e8529eb5fb45f91ef440dae5b6144c66a5ba028" - }, - { - "href": "./BM38_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122034c6ab346b97cb4520adc133c97502a85543833286cb36ff663b3f8b5fc787da" - }, - { - "href": "./BM38_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12203a708c7e3b424ee0c5b8425ea1d172a8c170177cd4ee2c22c9e23e6a91c4aed5" - }, - { - "href": "./BM38_10000_0103.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12200105606c6bb5da9017fcccd90c9a4f9f78e30b3572c2c3dc740a5cca176df7fb" - }, - { - "href": "./BM38_10000_0104.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122075d43e64bfd9afd47140ce520752ba28bd9246e3501d4b51fc45cfa532bd5890" - }, - { - "href": "./BM38_10000_0105.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122013603c5c5d33949518c948f9cc76e594d0ad3b33f9c4255885e0e5ae6f24da88" - }, - { - "href": "./BM38_10000_0201.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122094561796853677ea889fc7ddcb12bca0c70f5aa6f44b59380c5f2ab378977d88" - }, - { - "href": "./BM38_10000_0202.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220035cc0ce5cc40683dcf0e596277cdd22f307483b4572e8906c2d9c533ccb2936" - }, - { - "href": "./BM38_10000_0203.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12202c5267ed24ae813ed4e9dc22ecc163f80a1d265abbfc09b5522ac943a53a95cc" - }, - { - "href": "./BM38_10000_0204.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220bfae802cd88d9a3ca9f74690cd2907802e962a49e485d31ebf0605167390ce86" - }, - { - "href": "./BM38_10000_0205.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122064d29660fa0951642a958db0d3ab15939d8aa637c03f7cb2ae1ee689529783b2" - }, - { - "href": "./BM38_10000_0301.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220315663d3d4f8e9eff7d938af638690dbd501d94d520db20ee1b4a19fd824d8df" - }, - { - "href": "./BM38_10000_0302.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220cc6e89b39811b8e6cf7d8a0ae760427a285245baf10187f8da8746692ccf6174" - }, - { - "href": "./BM38_10000_0303.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122017508c4ba015379e196e7e0e71d04a52cd0f7c410b83861f3d42d9617f167b92" - }, - { - "href": "./BM38_10000_0401.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220e662cb36b90b3926ca4d3dc1c12166e78e9f081202689799d3e38d86286e2e27" - }, - { - "href": "./BM38_10000_0402.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220b965077dcfbad2100c3564de0e2cfb0f72aa1ae5ceb8ccf3c0b8e1e3ac8034a4" - }, - { - "href": "./BM38_10000_0403.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220d35afdf222fafff9bc908735600826d985b0bd56430ca4038248be9502b6649a" - }, - { - "href": "./BM38_10000_0501.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "1220627504fe1b70a17240da78454ebb391295a5734d8f63068ec00ff199bd8ef0d9" - }, - { - "href": "./BM38_10000_0502.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "12204fef2aff39c953f0638ea02b2ee898c348ddc250166e9d603286c385cc4a9ac6" - }, - { - "href": "./BM39_10000_0101.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122019dd996a8a3c672b3f9a6c2a20ac493c692983f760af0d61a476c21d5c1058de" - }, - { - "href": "./BM39_10000_0102.json", - "rel": "item", - "type": "application/geo+json", - "file:checksum": "122050848469c09b960ec07964ca10b6c0fcbae80e73c008cf13d26735940de76397" - } - ], - "providers": [ - { "name": "Woolpert", "roles": ["producer"] }, - { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, - { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } - ], - "linz:lifecycle": "ongoing", - "linz:geospatial_category": "dsm", - "linz:region": "hawkes-bay", - "linz:security_classification": "unclassified", - "created": "2024-10-21T00:03:14Z", - "updated": "2024-10-21T00:03:14Z", - "extent": { - "spatial": { "bbox": [[176.0260349, -40.4739342, 178.0283496, -38.7469279]] }, - "temporal": { "interval": [["2023-11-19T11:00:00Z", "2024-04-26T12:00:00Z"]] } - }, - "assets": { - "capture_area": { - "href": "./capture-area.geojson", - "title": "Capture area", - "description": "Boundary of the total capture area for this collection. Excludes nodata areas in the source data. Geometries are simplified.", - "type": "application/geo+json", - "roles": ["metadata"], - "file:checksum": "12200b085bcda2a54ec2446dc354c5a8725ebd6f19bff41fc19f3776dcc59d9ec600", - "file:size": 665215 - } - }, - "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] -} diff --git a/stac/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/collection.json b/stac/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/collection.json index 5819f62b..5e235402 100644 --- a/stac/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/collection.json +++ b/stac/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/collection.json @@ -2,8 +2,8 @@ "type": "Collection", "stac_version": "1.0.0", "id": "01HYCKM9WF7ZWQ4DPCFFCF8H40", - "title": "Hawke's Bay LiDAR 1m DSM (2023) - Draft", - "description": "Digital Surface Model within the Hawke's Bay region captured in 2023.", + "title": "Hawke's Bay LiDAR 1m DSM (2023-2024) - Draft", + "description": "Digital Surface Model within the Hawke's Bay region captured in 2023-2024.", "license": "CC-BY-4.0", "links": [ { @@ -13,1258 +13,2356 @@ }, { "rel": "self", "href": "./collection.json", "type": "application/json" }, { + "href": "./BG41_10000_0502.json", "rel": "item", - "href": "./BH36_10000_0404.json", - "type": "application/json", - "file:checksum": "1220279fe24c88513542656794c0c72b0ccefa4b1a662f60a669f011cb10722a24ea" + "type": "application/geo+json", + "file:checksum": "1220e3047cd25732854a5f3b64dcb5edb8dff94764b0aed2ec56ef006fee7b00b990" }, { + "href": "./BG41_10000_0503.json", "rel": "item", - "href": "./BH36_10000_0405.json", - "type": "application/json", - "file:checksum": "1220ea34dd7607f3ef4c91a430aa844261e99a98403cc0a0433b4ceb28a8df934f27" + "type": "application/geo+json", + "file:checksum": "1220b68819f6dbf49d48b5b2dd3baef678236bc167b43e71989021a1c8fb034fe7bd" }, { + "href": "./BG41_10000_0504.json", "rel": "item", - "href": "./BH36_10000_0503.json", - "type": "application/json", - "file:checksum": "122021aafc9642e8059cb0429dd1ebff900b27263e68e1ecb0edd270e5b47de3e08e" + "type": "application/geo+json", + "file:checksum": "12201414c7dccc7c28cb88572ad2252725cf0d40f6468c8f13fb5c84dc0640036759" }, { + "href": "./BG41_10000_0505.json", "rel": "item", - "href": "./BH36_10000_0504.json", - "type": "application/json", - "file:checksum": "12209a8de72a92e87ab083390fb7ec7df1553d9c2d76cd9b78fe388a54672dfb6b0b" + "type": "application/geo+json", + "file:checksum": "12203b7a151a8193f841fe98c48dbc238c428e6a2b2c85cc44b2186e0dfc709b2e9b" }, { + "href": "./BG42_10000_0501.json", "rel": "item", - "href": "./BH36_10000_0505.json", - "type": "application/json", - "file:checksum": "1220357e4c8647ac4abe1222fc8a7f742b2473c63b648d1656c2bf97d356a54c5bb1" + "type": "application/geo+json", + "file:checksum": "122077a5b4cebddde0519b429edcb9188a97e90504f85c101f6be20242208dacd71b" }, { + "href": "./BH36_10000_0404.json", "rel": "item", - "href": "./BH37_10000_0501.json", - "type": "application/json", - "file:checksum": "1220f5030bdb2167f649c75076e20f55eb3b4fba8906375a12e4b440fb6a73d457ad" + "type": "application/geo+json", + "file:checksum": "1220c65a07b083f9ca6c367966ec5e6ed9da5a7573353d0570d3f143a47a8b6ae8b9" }, { + "href": "./BH36_10000_0405.json", "rel": "item", - "href": "./BH37_10000_0502.json", - "type": "application/json", - "file:checksum": "12200fdb268ce8059ed86b8e2076f165ec0cda34b3710418688b82430960878e864d" + "type": "application/geo+json", + "file:checksum": "1220fc1c15f9bb5b1148d1ecdb0116a482403cd5d4c0c730a82d1429c7cf148373bc" }, { + "href": "./BH36_10000_0503.json", "rel": "item", - "href": "./BH38_10000_0304.json", - "type": "application/json", - "file:checksum": "1220902a85e3f89f9719eeabdbcf47eb2dfdab1ac27b4d5fd764c6bf157b497817e7" + "type": "application/geo+json", + "file:checksum": "1220cea35799915eb88a7b5a249a0e9fcf706ecbe18697190cab8350fa0626672bc4" }, { + "href": "./BH36_10000_0504.json", "rel": "item", - "href": "./BH38_10000_0305.json", - "type": "application/json", - "file:checksum": "12207f92c3a3240e0af4aa5ce51a6a394ffcd0c50a5d2e52fdecd0ed127af7c7e470" + "type": "application/geo+json", + "file:checksum": "1220ac6449d26e660ffb5591ce2cc9538655f96eee68d061c8c2275eac27661603de" }, { + "href": "./BH36_10000_0505.json", "rel": "item", - "href": "./BH38_10000_0403.json", - "type": "application/json", - "file:checksum": "1220bff41ed412bd4df949a086f351403b9e00de2a5cd62145d728d57483a0f470eb" + "type": "application/geo+json", + "file:checksum": "12207e06f81078d514c960d66dc0d075c6417b3525cca60e91a57569134a500fd620" }, { + "href": "./BH37_10000_0501.json", "rel": "item", - "href": "./BH38_10000_0404.json", - "type": "application/json", - "file:checksum": "1220433cdfc24e1f34f046abef2e17f9d7a5181a5fd7c7bb9f49795a8a55a55e5775" + "type": "application/geo+json", + "file:checksum": "1220cdb5345700b4825ce245351060724059086a534e7da543e9cb5301c2feb1ea64" }, { + "href": "./BH37_10000_0502.json", "rel": "item", - "href": "./BH38_10000_0405.json", - "type": "application/json", - "file:checksum": "122027df61c29839507a8e82a954ce163ed68360d3ee727afa1039ebd6d20f0e3c5d" + "type": "application/geo+json", + "file:checksum": "12200f704112aff5bb77ef081034113927dca79ce2e1ed3f72ef81104f02654c27f1" }, { + "href": "./BH38_10000_0304.json", "rel": "item", - "href": "./BH38_10000_0503.json", - "type": "application/json", - "file:checksum": "12209d41d1197c66849580c8f2cec405b895f66f539a6e2cf2182e9c41e9683a2ce5" + "type": "application/geo+json", + "file:checksum": "1220736a83f51ebd31bf94032c3953de306e93998a82b414561521b7426d57992b3b" }, { + "href": "./BH38_10000_0305.json", "rel": "item", - "href": "./BH38_10000_0504.json", - "type": "application/json", - "file:checksum": "1220b747becfe799566022ff64a0fa3ba5eb9a47251ed324f6f8f4a0ccfe3f7a2318" + "type": "application/geo+json", + "file:checksum": "1220f4edaefa7908c8558203bc43f1f2bb1fb5f4827ef84356b8579cce2d693590e3" }, { + "href": "./BH38_10000_0403.json", "rel": "item", - "href": "./BH38_10000_0505.json", - "type": "application/json", - "file:checksum": "122024f8f248e8ca8be2e6419e7b1cfda35c01cab6ec018481d3ad1ec9bd1964ab9f" + "type": "application/geo+json", + "file:checksum": "122043bd5cc7d31232351dfe68e1438ff4481ac65069e44cae7dc1727c7e76aaaea5" }, { + "href": "./BH38_10000_0404.json", "rel": "item", - "href": "./BH39_10000_0301.json", - "type": "application/json", - "file:checksum": "12201675ff4dc375b7db9d072b8f397c00fb901b35f75a8a5e0c16a2243c3d5bde5f" + "type": "application/geo+json", + "file:checksum": "122035d1e43df9bee48858c42804350d05fd8d52160682d1c3d5f22ff5105a9d5d91" }, { + "href": "./BH38_10000_0405.json", "rel": "item", - "href": "./BH39_10000_0302.json", - "type": "application/json", - "file:checksum": "1220fba30a3546ecaed855e12a34e5529e9a5744c181e2364a31b25c89e38b1e6ed2" + "type": "application/geo+json", + "file:checksum": "12208530ba714e9558766f149ca0b7cbd2bbea497a13544916f72300d1fc42dc6eaa" }, { + "href": "./BH38_10000_0503.json", "rel": "item", - "href": "./BH39_10000_0303.json", - "type": "application/json", - "file:checksum": "12205d0375d03a3d7f39876b4f9c5b0bcd4e25f80ba96942513edc43b8fb385534d1" + "type": "application/geo+json", + "file:checksum": "1220a07774f005429f166aa1e6fadb076bfd9ff225a5612911efc999eccbc3a075f6" }, { + "href": "./BH38_10000_0504.json", "rel": "item", - "href": "./BH39_10000_0304.json", - "type": "application/json", - "file:checksum": "122027812477f03f0d543f9e91fc5e092f2381fe375bfcbaff70e52b3446d2ff02e0" + "type": "application/geo+json", + "file:checksum": "12208f10498dff310deb5e4e49470f83c26864badac64c073f806a4c93e40e659f37" }, { + "href": "./BH38_10000_0505.json", "rel": "item", - "href": "./BH39_10000_0305.json", - "type": "application/json", - "file:checksum": "1220fb4343399ad3acf098333dd680b32dc742e896a937337a15408432dcdf03c13f" + "type": "application/geo+json", + "file:checksum": "122008c39ca55528a8b89265ffce1bd69555394445d568008e9302f56ea5668b7e71" }, { + "href": "./BH39_10000_0301.json", "rel": "item", - "href": "./BH39_10000_0401.json", - "type": "application/json", - "file:checksum": "122030a8115dd46ef3e001be2c82cb685fd45f825a991e89e87c12b00c0e936bea70" + "type": "application/geo+json", + "file:checksum": "12204985c394ecadb409d5eef554091bb611421809774f587cd61cc38c12a508bb74" }, { + "href": "./BH39_10000_0302.json", "rel": "item", - "href": "./BH39_10000_0402.json", - "type": "application/json", - "file:checksum": "12206a9a19def3e1615b6eeb448126967920d5b99f6c5e8ee068337e86f3586d88e9" + "type": "application/geo+json", + "file:checksum": "122033b698271030d9a5170072b5cd2018e1289bc8ce257528a6c3b737f2f1e05065" }, { + "href": "./BH39_10000_0303.json", "rel": "item", - "href": "./BH39_10000_0403.json", - "type": "application/json", - "file:checksum": "12206ef92a5edc86ed5650c993f8a77abe57ad1e190d5c92ce28976b03c7af406a3d" + "type": "application/geo+json", + "file:checksum": "12202832585dd3d3c02e16c2d0381af22009d561bb5f2255652a0e757fb3aeee3003" }, { + "href": "./BH39_10000_0304.json", "rel": "item", - "href": "./BH39_10000_0404.json", - "type": "application/json", - "file:checksum": "1220a39fb4a9de95900c566420a7aaae13bcf9d9a64ba225ed8f1f8a0820d28c950a" + "type": "application/geo+json", + "file:checksum": "1220f0db838489d4d077fc91dde466f846ba96ec41f62b2af079547d730448ec57e8" }, { + "href": "./BH39_10000_0305.json", "rel": "item", - "href": "./BH39_10000_0405.json", - "type": "application/json", - "file:checksum": "12200d148098cccec5558b6de280a8a28067f9b843531c184522dad1bb6c240f2151" + "type": "application/geo+json", + "file:checksum": "12200fb67c81468133ac7765111fa1539993227f9c786deb2fa6508e990669d26a9a" }, { + "href": "./BH39_10000_0401.json", "rel": "item", - "href": "./BH39_10000_0501.json", - "type": "application/json", - "file:checksum": "122000d20782a3897daa18437810b8a9e31e17936ae8a1cb0976f6b34112ac76a282" + "type": "application/geo+json", + "file:checksum": "122024c454629ad6479dbe2db2e146ff52f51559bb70877a931a7d1ab66208f9ea1f" }, { + "href": "./BH39_10000_0402.json", "rel": "item", - "href": "./BH39_10000_0502.json", - "type": "application/json", - "file:checksum": "12200d06f6deb401e6392f636f487fe9652f3b5eec3e72602a4eea6bdd51f09a1e6d" + "type": "application/geo+json", + "file:checksum": "122056523fc3e0f69d775ce34cac4aa116889d94291be859bb780f1a4fc99e03c724" }, { + "href": "./BH39_10000_0403.json", "rel": "item", - "href": "./BH39_10000_0503.json", - "type": "application/json", - "file:checksum": "1220959902dcfd7c452267c6d8b26ffecb984c03cf51d2ae1506f5f944bb0d65f171" + "type": "application/geo+json", + "file:checksum": "1220cb07efb799050ef9a47331a1f05b00cee051d134b4813f35adc5a2c9bae970ac" + }, + { + "href": "./BH39_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205cda6ecf5f7c7118aef3efd317d079f2b30cc36b8b664e95ce13ffa52e526fd2" }, { + "href": "./BH39_10000_0405.json", "rel": "item", - "href": "./BH39_10000_0504.json", - "type": "application/json", - "file:checksum": "1220494a2148edff8861340e39246352ca341eeb6185ef9af377470355668897e821" + "type": "application/geo+json", + "file:checksum": "122040df70a66d2d49556f8aa90af1443b52b05e36ad109c3a3f568a51af352ac267" + }, + { + "href": "./BH39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da6cf7ebfc31068775976093239485def3f30a1e57af285f939f8f953d0b904e" + }, + { + "href": "./BH39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064c030a37172a7ce63f72432beedd86683fc764b2737cf6417d87cefcbec9910" + }, + { + "href": "./BH39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d3a0e79f2da911c7b2ad4e5b734b2b9e0e3204346efc47d49ab6dc53499ef28e" }, { + "href": "./BH39_10000_0504.json", "rel": "item", + "type": "application/geo+json", + "file:checksum": "122006c891df905edee154dcd9e16373658d31e8adc16e773792c15f9c15df006df6" + }, + { "href": "./BH39_10000_0505.json", - "type": "application/json", - "file:checksum": "1220ac69299b1b87618109be0632fa13a2e6e8a6c8e1571d612c74a74c40dc802358" + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205c0d232bc3486d0ab985b8ef945cab89359f2e0b1713462941e0942e0c00443b" }, { + "href": "./BH40_10000_0104.json", "rel": "item", - "href": "./BH40_10000_0401.json", - "type": "application/json", - "file:checksum": "12209e4c61d5c353763b48c9d2e0747e8da9143b3c1f245227d6de0419e6189300db" + "type": "application/geo+json", + "file:checksum": "1220f25ccbcc1361e8c59b2ef53c00a905ecd69463a7b3ce7ace191fb83a2e634a46" }, { + "href": "./BH40_10000_0105.json", "rel": "item", - "href": "./BH40_10000_0402.json", - "type": "application/json", - "file:checksum": "122072c05bd94cd01096a6ebe9d88bc47206365150e32c062321ef90245263ac3493" + "type": "application/geo+json", + "file:checksum": "122098fd279f901502f84ff2270dcddf6da2041dfdab11764ed0810097e91e03c4be" }, { + "href": "./BH40_10000_0201.json", "rel": "item", - "href": "./BH40_10000_0501.json", - "type": "application/json", - "file:checksum": "1220aca5b3f621bd71ca1b3781d9bbfe2deed705d61122eaea7d61143a3be474ed26" + "type": "application/geo+json", + "file:checksum": "12209d3242c11e3ab429588c1a6390508ed04b473bc1a380ed256ad023411ddb67b7" }, { + "href": "./BH40_10000_0202.json", "rel": "item", - "href": "./BH40_10000_0502.json", - "type": "application/json", - "file:checksum": "12203653fea1bc84e93b9f3d07e248f34c5a38f8a732835a58779cc6ddb11752fcb8" + "type": "application/geo+json", + "file:checksum": "1220eeb04a8a84cf3fc2fc15a55e69f1094994c78102b4727872223ef96495806db6" }, { + "href": "./BH40_10000_0203.json", "rel": "item", - "href": "./BH40_10000_0503.json", - "type": "application/json", - "file:checksum": "12209a74e3bbf2885fccc5330a41625a28c45d4f691bd6b0a45e5dfd190e445d69bd" + "type": "application/geo+json", + "file:checksum": "1220d82daf184d71cafe81a249fe5675e4621fc1c15962ae6ccb97cfcac7f6367444" }, { + "href": "./BH40_10000_0204.json", "rel": "item", - "href": "./BJ36_10000_0103.json", - "type": "application/json", - "file:checksum": "122015a22a0734e628fc60450f90b2a82a33be8c1f3dbb30a85fcb13f46e84f842df" + "type": "application/geo+json", + "file:checksum": "1220b26d24c50fc52eec7c63a9584904eabe83a972b818d2a5601c2ba60703e69ae1" }, { + "href": "./BH40_10000_0205.json", "rel": "item", - "href": "./BJ36_10000_0104.json", - "type": "application/json", - "file:checksum": "12209d5f5228a5f43dcc72c7a79faf0285380434e0c53de2013f6a9007fa1c52493a" + "type": "application/geo+json", + "file:checksum": "122084f75c5d2a1c8111a2281962cdca198482066acd8eb5a09c27d5898f6624b54d" }, { + "href": "./BH40_10000_0301.json", "rel": "item", - "href": "./BJ36_10000_0105.json", - "type": "application/json", - "file:checksum": "12207483ae8fc8910b1a95ba566050ce363d32cdf0792cb5b25584d736fa492407e0" + "type": "application/geo+json", + "file:checksum": "12205dd07cc96da1cb1afb61a5f261786bf19c295da507b11b55f86b1a846c7aeeff" }, { + "href": "./BH40_10000_0302.json", "rel": "item", - "href": "./BJ36_10000_0203.json", - "type": "application/json", - "file:checksum": "122008330b85ea84c76ab2d5708fd3e1f2b0f81a85e6d9c88c0a3aaac2a5f0d5c6bd" + "type": "application/geo+json", + "file:checksum": "122095c44227d06e6006e70df34bf9d0f5a072c7fc87c394605c6ddc6d9da8181773" }, { + "href": "./BH40_10000_0303.json", "rel": "item", - "href": "./BJ36_10000_0204.json", - "type": "application/json", - "file:checksum": "12203038d4a2b96d481216396c8c1a87858c2efe4cad195c3b58becc6bfdb1cc28ed" + "type": "application/geo+json", + "file:checksum": "12209629bd42c4547ba432adf1fc84745b414f566600daf9720959de24aa38025ba9" }, { + "href": "./BH40_10000_0304.json", "rel": "item", - "href": "./BJ36_10000_0205.json", - "type": "application/json", - "file:checksum": "1220cdfffd5760cfe2bfc2bb8a655a899a333f2f870cecd4f21d28bcaf3bcf28c56a" + "type": "application/geo+json", + "file:checksum": "1220d7b552cfa80eb1884e800b220156c382f70db5337447b4d5ec93fadc15680253" }, { + "href": "./BH40_10000_0305.json", "rel": "item", - "href": "./BJ36_10000_0303.json", - "type": "application/json", - "file:checksum": "122036b786509d6bad8d4e00a36c35c12fded2b07e417baa5904beb5326f482df9bb" + "type": "application/geo+json", + "file:checksum": "1220308e99f0aebcc19ff4e408575ffe03607d174b5fb39eeb33010b369c975977d3" }, { + "href": "./BH40_10000_0401.json", "rel": "item", - "href": "./BJ36_10000_0304.json", - "type": "application/json", - "file:checksum": "1220f92acc2306bfe285ff692f04c089e35dc3219032bfa721490e62b9443f2e9922" + "type": "application/geo+json", + "file:checksum": "1220bbe348329be838569b4a34c2577444893cd9c0ce22e681d481ab06bb429ce197" }, { + "href": "./BH40_10000_0402.json", "rel": "item", - "href": "./BJ36_10000_0305.json", - "type": "application/json", - "file:checksum": "12207d8038dac6657d09ac5b439db192f4f445f6922c21a5062b293b22d9f81e59bf" + "type": "application/geo+json", + "file:checksum": "1220cc10c24dc5a2c49f91f9654b684ed7fa9fc0e91a573752f5543f3cd93dbe1606" }, { + "href": "./BH40_10000_0403.json", "rel": "item", - "href": "./BJ36_10000_0403.json", - "type": "application/json", - "file:checksum": "12205039c236d3ff4a24316183beac103d9edc6a896f45ac271fce5f65bd4fe6aaf8" + "type": "application/geo+json", + "file:checksum": "1220792b41270c7aed8dc707f405dd2ca1b5431b9e99f8eef76c971c63510a512830" }, { + "href": "./BH40_10000_0404.json", "rel": "item", - "href": "./BJ36_10000_0404.json", - "type": "application/json", - "file:checksum": "12207d210c5dbcd1ae2d71945bcb5157b1f7088ab7d44202157435f2c1d9c71254f0" + "type": "application/geo+json", + "file:checksum": "12203c4edb3ef02ebef97937bc72ed6b6df85cb8b090601e52287ebeac9f0bb63c63" }, { + "href": "./BH40_10000_0405.json", "rel": "item", - "href": "./BJ36_10000_0405.json", - "type": "application/json", - "file:checksum": "122019cdbe244a05be78ed226f5c74ffc96ba660204a44035df632faa5a36b96df43" + "type": "application/geo+json", + "file:checksum": "12206f55284b66c50d95f927a335f05ddf9698336f24aecd3270ce05159335a7c97f" }, { + "href": "./BH40_10000_0501.json", "rel": "item", - "href": "./BJ36_10000_0504.json", - "type": "application/json", - "file:checksum": "12200edd8730cbe33f90cc90bbfee7cebe2b6b62c607a810daab81f099f682091616" + "type": "application/geo+json", + "file:checksum": "12201de663990582ac517963487072d3f8b9dc80a173b4408d2d90a55610203445db" }, { + "href": "./BH40_10000_0502.json", "rel": "item", - "href": "./BJ36_10000_0505.json", - "type": "application/json", - "file:checksum": "1220610344e27b2ec39d9410c3c435406644ce28bea2fdaac99b0552099149866fc4" + "type": "application/geo+json", + "file:checksum": "1220c74d747372a76567828e2a97bc1555a48a76702c601253f8cb7fcd3b0e9bbeb7" }, { + "href": "./BH40_10000_0503.json", "rel": "item", - "href": "./BJ37_10000_0101.json", - "type": "application/json", - "file:checksum": "12206a8035458f68de2be1bf2950da2a8bfdbebe83b995496eecf48a2652c00042d8" + "type": "application/geo+json", + "file:checksum": "1220d83182155ad35f4bf2021bfad94aff1d552cb0dbe0f69bddbd6d056597b64562" }, { + "href": "./BH40_10000_0504.json", "rel": "item", - "href": "./BJ37_10000_0102.json", - "type": "application/json", - "file:checksum": "1220937bd335dca0ee012684763ef25dd91799d6d44aecbae50793a8a7fa492a9188" + "type": "application/geo+json", + "file:checksum": "122077634f6d5b6a49e25b1ff1dcbf50c36a2ebd9103ec0dbd1f7667c34f80f46e78" }, { + "href": "./BH40_10000_0505.json", "rel": "item", - "href": "./BJ37_10000_0103.json", - "type": "application/json", - "file:checksum": "12207b737d9cd67f601fa3715c4991206f75eb58f57ca175d086dbf451b0aed246f0" + "type": "application/geo+json", + "file:checksum": "122057c270594ae2faf3910b77eb0de46c067024a11adc2f2c450238056d2370d268" }, { + "href": "./BH41_10000_0101.json", "rel": "item", - "href": "./BJ37_10000_0104.json", - "type": "application/json", - "file:checksum": "1220f9ad9c3a5690e6fb0c3c13f8b63465a8572d8c6cdd5490e3f58351485089eb36" + "type": "application/geo+json", + "file:checksum": "1220802c9fed30ceb73a333d2ff08401d85e832fcd7d88fc449c05d2b00e103e6087" }, { + "href": "./BH41_10000_0102.json", "rel": "item", - "href": "./BJ37_10000_0201.json", - "type": "application/json", - "file:checksum": "1220b60a2c66ab169145400d70002df4acb7971c54f2d953fe0929065570a3687e20" + "type": "application/geo+json", + "file:checksum": "12204fdcad9c1a6bcd175cebee78c8771d29967fe670453735a5b1cbcf2d58b9f50c" }, { + "href": "./BH41_10000_0103.json", "rel": "item", - "href": "./BJ37_10000_0202.json", - "type": "application/json", - "file:checksum": "12201d5c999333d420ba5e8054f8acb346cc6aaf9a145a11e8c0fbb62862d51efd2a" + "type": "application/geo+json", + "file:checksum": "12205b9703d687e03c80cbb786fdfb829a1ae1bf81a23fbfd847fb9769ebb165c164" }, { + "href": "./BH41_10000_0104.json", "rel": "item", - "href": "./BJ37_10000_0203.json", - "type": "application/json", - "file:checksum": "12201ea5741ddf2f4883f1ad795e38258bb7407ff6f4c43f1165094fa6f4bda838e4" + "type": "application/geo+json", + "file:checksum": "1220104985b90293c60ed7113e3638b74a8a136c255c7af8716106ca45d08c4f5397" }, { + "href": "./BH41_10000_0105.json", "rel": "item", - "href": "./BJ37_10000_0204.json", - "type": "application/json", - "file:checksum": "1220ac3b1089bb0e5a91a10d31e2b1f55cb855109c3c72b28ef275f34baf3bc0af67" + "type": "application/geo+json", + "file:checksum": "1220bbf8c9d8da0e1cd5481d2c8be1ee0f98d03f29ddab3a4fed132a66d277a2444e" }, { + "href": "./BH41_10000_0201.json", "rel": "item", - "href": "./BJ37_10000_0205.json", - "type": "application/json", - "file:checksum": "1220b75f32ff8cc943439e442dd561b3d173d1c361a7d494b458680e2b9f99c04ef3" + "type": "application/geo+json", + "file:checksum": "1220076dae2e84ef0ab8368ac62960ba809a712085cf7726406d55980ffc0a14d9c7" }, { + "href": "./BH41_10000_0202.json", "rel": "item", - "href": "./BJ37_10000_0301.json", - "type": "application/json", - "file:checksum": "122063745879e02d36b6ec5ae528acafda1ad0be1df265bf4c34a9ebb15c9646d3ce" + "type": "application/geo+json", + "file:checksum": "12200e78f7f70f025a8f8be815681fc7a8d2bc8aeda331b5ae700283d3ecf3211259" }, { + "href": "./BH41_10000_0203.json", "rel": "item", - "href": "./BJ37_10000_0302.json", - "type": "application/json", - "file:checksum": "1220694eab3558d8daa620bc2d1c903f0bda47d015f0761e6428cbdee0c950d3a6d6" + "type": "application/geo+json", + "file:checksum": "1220379242f521e6824555ae1caa2b3a971eef1d6864d9c11f58300bf493d22c6064" }, { + "href": "./BH41_10000_0204.json", "rel": "item", - "href": "./BJ37_10000_0303.json", - "type": "application/json", - "file:checksum": "1220b2d840d66a31805a7f77bf32d363f8f4065f3f2dce8bf82df1827325c1ea80ba" + "type": "application/geo+json", + "file:checksum": "12206cba026fa4edc32d0ea2fbe4390165e81750c26bb4eea64cb2d8591b560ea2ba" }, { + "href": "./BH41_10000_0205.json", "rel": "item", - "href": "./BJ37_10000_0304.json", - "type": "application/json", - "file:checksum": "1220e818705f29cb86dcfc8fc79e0e1e714b839e14d7f7464d3ff448aeb37193e25a" + "type": "application/geo+json", + "file:checksum": "1220cdaa4845b97667ff6ea10bdd3bc2fb4d963e0a9f70afe479d350863f65a2b8c8" }, { + "href": "./BH41_10000_0301.json", "rel": "item", - "href": "./BJ37_10000_0305.json", - "type": "application/json", - "file:checksum": "1220a219d26a50dbf814c7c4fccfe3b3ba6130ca0a986b2b58e90373ab5bac8ae53c" + "type": "application/geo+json", + "file:checksum": "1220c1873e00874354bd9d6ab3748b795347dc8d4f083a27356bf48ef99625715a0f" }, { + "href": "./BH41_10000_0302.json", "rel": "item", - "href": "./BJ37_10000_0401.json", - "type": "application/json", - "file:checksum": "12209d61c0fa702be789a9d612ad277f2110cb5e48167a3c0cee6cefe0a904c6a905" + "type": "application/geo+json", + "file:checksum": "12206e9d1a766e93c461d1fe76fc952ff3daf159f898b915ae456e149739be3fc176" }, { + "href": "./BH41_10000_0303.json", "rel": "item", - "href": "./BJ37_10000_0402.json", - "type": "application/json", - "file:checksum": "1220140d98d2c83c7738b3c39000d0c9d25763fb8057ab8ffa1c30a5458ee78519c7" + "type": "application/geo+json", + "file:checksum": "1220ca3d5f72f10be86347d63cbd89a8ee2d363667c4c1078885d07c99cae843d99d" }, { + "href": "./BH41_10000_0304.json", "rel": "item", - "href": "./BJ37_10000_0403.json", - "type": "application/json", - "file:checksum": "1220438781726ecccd14115e3799bf6ac5f33f9681931689add10d8e756c51fec5a5" + "type": "application/geo+json", + "file:checksum": "12200b15a5e429bd7d562f9e9770e49d5312cc077b153c698d0c5171b7091da70417" }, { + "href": "./BH41_10000_0305.json", "rel": "item", - "href": "./BJ37_10000_0404.json", - "type": "application/json", - "file:checksum": "1220689f0f2416c4d5fa0711bde840755147964afd7ae27b0d1bc2123d938886a7cd" + "type": "application/geo+json", + "file:checksum": "122075dd79f62dadb3354ecfa23f3c345df883a9f2e9b6450ede2d4fca0981f123c4" }, { + "href": "./BH41_10000_0401.json", "rel": "item", - "href": "./BJ37_10000_0405.json", - "type": "application/json", - "file:checksum": "12202406d3837d432f80ce33733110663b9d93f149e6c599544bfdf2683ca5bbe05e" + "type": "application/geo+json", + "file:checksum": "122013557598e31f149852845a34b1acd5e46b01f7a1dee46de3707563a41eda779e" }, { + "href": "./BH41_10000_0402.json", "rel": "item", - "href": "./BJ37_10000_0501.json", - "type": "application/json", - "file:checksum": "12201934b96cbd405cad823b718f9026923c436a6bcf2aef0e173063b56c97f48b89" + "type": "application/geo+json", + "file:checksum": "12204a86aed5ec2d8e86ba64c05b0f21a782acaf6291942ed1243aa5704d7bb4fae8" }, { + "href": "./BH41_10000_0403.json", "rel": "item", - "href": "./BJ37_10000_0502.json", - "type": "application/json", - "file:checksum": "1220b237d465ca4e1b5e1efa87330ca47e9a33537593e78925600e6b2d31a9b52c6a" + "type": "application/geo+json", + "file:checksum": "12206835de1589ba48d2be7b1aaa354eacb3c8526e34f1283fa37aa97beb06798447" }, { + "href": "./BH41_10000_0404.json", "rel": "item", - "href": "./BJ37_10000_0503.json", - "type": "application/json", - "file:checksum": "122087adef38937ec97c9ac6413a844444f1a938f0333c8ebe90c9edbfeddbe38871" + "type": "application/geo+json", + "file:checksum": "1220a08abdfc8b5b1bd4e9cd1c7258a92d8e4cb2ebf97b2dd7f1e2fb70793d31bcde" }, { + "href": "./BH41_10000_0405.json", "rel": "item", - "href": "./BJ37_10000_0504.json", - "type": "application/json", - "file:checksum": "122083861e574549f7bff8f1343b475b239870e4d606f155725da660e4df31c1c034" + "type": "application/geo+json", + "file:checksum": "1220a686242c675242bcd4b933bfb81b8e195c0196874553b0b0cce59787cce7fe5d" }, { + "href": "./BH41_10000_0501.json", "rel": "item", - "href": "./BJ37_10000_0505.json", - "type": "application/json", - "file:checksum": "1220cea3426bcfa3358943b1e3e7c827684d67cada0a76631c3378ae52248dc24683" + "type": "application/geo+json", + "file:checksum": "12203c8c1a8404d08b7362ac4d12a02084dab750c243414c3923e1f374d50c77ed13" }, { + "href": "./BH42_10000_0101.json", "rel": "item", - "href": "./BJ38_10000_0101.json", - "type": "application/json", - "file:checksum": "1220a26d248c57ea37a24b5c165ec6a3e9c8fc9a8a23b1eb273d58f53c3b0c6bcee8" + "type": "application/geo+json", + "file:checksum": "12200f8b3e4d46fb23c7dad0ff0105c3d15686128fa3b7d06a5506e10a8ea4c7f7eb" }, { + "href": "./BH42_10000_0102.json", "rel": "item", - "href": "./BJ38_10000_0102.json", - "type": "application/json", - "file:checksum": "1220ac7495753dc1d9b73a4fd668832ffc25fe05ea01e90d79084583a834a8dd1b51" + "type": "application/geo+json", + "file:checksum": "1220f6dd812782baf3435a8fe83b84766d99887bf420506808a26131bd4bf87b2557" }, { + "href": "./BH42_10000_0201.json", "rel": "item", - "href": "./BJ38_10000_0103.json", - "type": "application/json", - "file:checksum": "122042607ea82cada0deeb643e254ba219fd3985ce0f9536e0baeaed441a7ba8ee7a" + "type": "application/geo+json", + "file:checksum": "12205522b1eb5cbd6c84bf50f58553223ac9cad004c7e2c267ee485ce089f18d5b4c" }, { + "href": "./BH42_10000_0202.json", "rel": "item", - "href": "./BJ38_10000_0104.json", - "type": "application/json", - "file:checksum": "1220815b43f54522418db0394197cc052ef2c56a76bf610c2b924ce3192d6dc593f6" + "type": "application/geo+json", + "file:checksum": "1220e47785338f41eb9ce9358e44d43602379800b60f398354c6cb08db4a3c050468" }, { + "href": "./BH42_10000_0203.json", "rel": "item", - "href": "./BJ38_10000_0105.json", - "type": "application/json", - "file:checksum": "1220eb4151c8b088265b37cae29eda700264740f4710a0b7666b39e784c294aadf56" + "type": "application/geo+json", + "file:checksum": "1220027d2362c5094f362d282b64fbf4bfd5418de21ff86c7e1074642b7d5229a104" }, { + "href": "./BH42_10000_0204.json", "rel": "item", - "href": "./BJ38_10000_0201.json", - "type": "application/json", - "file:checksum": "122050c99b55f60b130ffd12da10d5465d9a701bdb35052f35c6675ac2d2074f2367" + "type": "application/geo+json", + "file:checksum": "122098e88fae1cea45fd6c1282bce2226141db09a0755310939178ddd41509319874" }, { + "href": "./BH42_10000_0205.json", "rel": "item", - "href": "./BJ38_10000_0202.json", - "type": "application/json", - "file:checksum": "122063a323fefa5499fb47bbcacf8af0b7c666850a9ebbed8bb668b53ba61ae9201e" + "type": "application/geo+json", + "file:checksum": "12208366f30a82356c8b3f6f62ada686a9b9bfce4465fa088754c5f4520641604109" }, { + "href": "./BH42_10000_0301.json", "rel": "item", - "href": "./BJ38_10000_0203.json", - "type": "application/json", - "file:checksum": "12208a153476353681f24fff9c3cc7958b537b2a694b628aebec98e5bbc2bfdb84fc" + "type": "application/geo+json", + "file:checksum": "1220dfaba705b92d1761803c8007cad5692fc71fcf946a45d41fcfb080c61e9cf516" }, { + "href": "./BH42_10000_0302.json", "rel": "item", - "href": "./BJ38_10000_0204.json", - "type": "application/json", - "file:checksum": "12203f1e126000fd7f8c81f9cbd7f9d7aea9e3ffa01e70c2b20f0eff8cc3e817a04b" + "type": "application/geo+json", + "file:checksum": "1220807d262b73af80fcdaf481c7dc037942213a93fd62fac94b625d9758725c8ce6" }, { + "href": "./BH42_10000_0303.json", "rel": "item", - "href": "./BJ38_10000_0205.json", - "type": "application/json", - "file:checksum": "1220840080fd795f5ee4e4ead51ff5f4d6603c9e0dc8d82ef06942bb1d52e8540423" + "type": "application/geo+json", + "file:checksum": "122041a7933c0cda867d469946f567bfd61aa16d07151b66ea8e7529e18a6e096359" }, { + "href": "./BH42_10000_0304.json", "rel": "item", - "href": "./BJ38_10000_0301.json", - "type": "application/json", - "file:checksum": "12200ac15eb229af796ac05080382ee629e62030f373f2ac2cb316d504b17d6df394" + "type": "application/geo+json", + "file:checksum": "12208a8c46dea28f7d8c33a545f53cb636a9828eb2a7cde7ef54e6e34a10f51b6da9" }, { + "href": "./BH42_10000_0305.json", "rel": "item", - "href": "./BJ38_10000_0302.json", - "type": "application/json", - "file:checksum": "1220e7ef81b27a8269f787122ad4e9fe6fdc618a130c068a0a2af6b35ae8bcd3fd7a" + "type": "application/geo+json", + "file:checksum": "1220b275839b6ecf6f72e6e4e5d989cad1ec21268dbd518f15464c6f444f285ddc07" }, { + "href": "./BH42_10000_0401.json", "rel": "item", - "href": "./BJ38_10000_0303.json", - "type": "application/json", - "file:checksum": "1220de0c4b6ffcc38b8728bb3b15647ee9759f9a729872ee9171a68d7dfae7c77875" + "type": "application/geo+json", + "file:checksum": "12209cd68c132c69ea5def138e2348826d058557406d88862edca59396831401f925" }, { + "href": "./BH42_10000_0402.json", "rel": "item", - "href": "./BJ38_10000_0304.json", - "type": "application/json", - "file:checksum": "1220228c49fbf6ecb6542e52e86f97808234052f982f4750bc0bf24fde4e78b85187" + "type": "application/geo+json", + "file:checksum": "1220cd2d1ad8f641b711b15767983bdeee44e1d94ca7fdb65166e85ccf6273bfc721" }, { + "href": "./BH42_10000_0403.json", "rel": "item", - "href": "./BJ38_10000_0305.json", - "type": "application/json", - "file:checksum": "1220494d4e7f989d00a4d0b6dce17f397bdf922ac90a713e0711704417870576976a" + "type": "application/geo+json", + "file:checksum": "1220e32bbd9a5dfb693d4d58c681b1c36e724b35ebe0b29e88b72f96b5f64a854118" }, { + "href": "./BH42_10000_0404.json", "rel": "item", - "href": "./BJ38_10000_0401.json", - "type": "application/json", - "file:checksum": "1220355e1ac2d2be9c358f9ad8b98b7953bc45b1d8f1539e95a157aeaf3a8f8d3179" + "type": "application/geo+json", + "file:checksum": "12201a80b1fd1c226f1035ad000e953b040c65ef1a807f59f07e9bfe1bae0fc4a4ff" }, { + "href": "./BH42_10000_0405.json", "rel": "item", - "href": "./BJ38_10000_0402.json", - "type": "application/json", - "file:checksum": "12207b5ef75831da8d89302bf87c009289adde09e74f7a0e428b3fe8e61ae776ec68" + "type": "application/geo+json", + "file:checksum": "122089581c8bb668d7899f27e5bf062ddc254ddbd52f5d8c56c07a49a6edac10ad0a" }, { + "href": "./BH42_10000_0504.json", "rel": "item", - "href": "./BJ38_10000_0403.json", - "type": "application/json", - "file:checksum": "122068499567e016b4cd317cb804101dd2685dc794de2cb16834b246aa67723e8ded" + "type": "application/geo+json", + "file:checksum": "1220219aa62cae974d711f7dde98d108d817798114da8198e8b2afdbdb9396e0d71c" }, { + "href": "./BH42_10000_0505.json", "rel": "item", - "href": "./BJ38_10000_0404.json", - "type": "application/json", - "file:checksum": "122064d357192305ce31b90ce769bedc9c60f59e27b60e90ececfcc6428f220d998a" + "type": "application/geo+json", + "file:checksum": "12203ae2c3281e6a5bd1c4df9fb79426d622ac17038fb916f578f06d657f7d770edb" + }, + { + "href": "./BH43_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220db4acb35d4e41d1d739f3b129bfe63965172944f89b7d734f7a4dbe6b25e7d5d" + }, + { + "href": "./BH43_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203cf041115087c4f864ed298d78e6e973f1cafc8f0fc6b0223afbca72e58ffc52" + }, + { + "href": "./BH43_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122096fd2bbd72d54ad43cc64e15328edf19285e52724f8defd309919ff6511e044c" + }, + { + "href": "./BH43_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208bdff37e6de78878fbb0f1b384c8a10869cdea02f90c303231ecb8db4c8d1aa5" + }, + { + "href": "./BH43_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4a1171b2408da227e608028674822016d2f0deef8403cdcd82ca981b91adf6c" + }, + { + "href": "./BH43_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fbcaf2288a244cefc9f48a663e51193519683ad6df964ea37b29bff5ee67892b" + }, + { + "href": "./BJ36_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204fde4d2861370adaf8b7894d4006298a53f8186d192fa7a73f83984f91c52fd8" + }, + { + "href": "./BJ36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa5420b939837d413712db68b6472c959850bcf2a8d626b791149d8f91742379" + }, + { + "href": "./BJ36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7d25da025071c59ed1015d995687965563fe8d837661ed36dabe3ba0b0ce23d" + }, + { + "href": "./BJ36_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043a375209dc5b4e9c5ec360ade50276855028c84fa6fdfcf493a5326f4e3ded3" + }, + { + "href": "./BJ36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb4cde02188a098707280c87ff008c63d15e4c3c79f9e949db56eacaf7b78e9e" + }, + { + "href": "./BJ36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204dd20a2f8e55eed183700fe0de50d8df7de7a5006444c89b279ded3992fcda8c" + }, + { + "href": "./BJ36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122082af0093aab856a3f1af4c0c86d5eb50c41b799d46bfa737c7513d5eb6b40175" + }, + { + "href": "./BJ36_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e2d3195868e5e80f71bd66f96f37e7b69cb87b6769638121d04d859ce943db0d" + }, + { + "href": "./BJ36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207e01b164118fbd345a06538aae6f795ecb259c8e5cc85a9420b3f25ae9953444" + }, + { + "href": "./BJ36_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f7717a46c2e26730e8d2251f9d82f861e3812fd7173e6193e1154eda5be5b7bd" + }, + { + "href": "./BJ36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201ed3042c134b9220897b819bb16533e2b40abc0cb933ec06e44c380365615ed8" + }, + { + "href": "./BJ36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d0405e8a508778fabdb4e51106cef99810c21894dfe3d01d09fb155527e17f2" + }, + { + "href": "./BJ36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dfd1d776f966e8fe512af324f1f0d8920c685ec7d69c979775c2610abaeb6acc" + }, + { + "href": "./BJ36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eddbc20a84d4bc071d938f49cb3a1816e47fa2d59d7ff2fb190e3cc98a544e0d" + }, + { + "href": "./BJ37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220329db4d86ddfd2b165184a48b28531cea2c0a04b805e48cb3ea977c1633c9d51" + }, + { + "href": "./BJ37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220395f67223cd69ab73260f39e4ad30c5e0ef0ca0172cc20ebf6c87143bdb5aeb5" + }, + { + "href": "./BJ37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206ec0458e10958341d4dbbb42b2aebfb7458a3d9e1ab9a608c1b4fb4c1d700de2" + }, + { + "href": "./BJ37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122031a3e4947d1cf45586229b08d2e698a1a0cb9471922725e80ab81626f2140b51" + }, + { + "href": "./BJ37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206a1fa12738b9aea2fc109076eca03941991796508e18ec2994f206840192f75b" + }, + { + "href": "./BJ37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206c6eaf596cbdb10f273088d22e0585b510e8c3d2c34db336e9fde9a4fbc9164c" + }, + { + "href": "./BJ37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030fbea9e6408a19d85a49d57985b086a119c5c0dc9cff42c8f726bed6ca21509" + }, + { + "href": "./BJ37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9394e7b4c35bd27eb103c360861c82ef3dacf9203d4a3354aa5cd030682e052" + }, + { + "href": "./BJ37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122027754c74f66634487a6f17dfa777cc38010d027c56910290d9291f640ace205c" + }, + { + "href": "./BJ37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bad3049b04014ebc7fe237e3167514913019edb89230ed0529be7ae4b82a3305" + }, + { + "href": "./BJ37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b59e07f8642e14117e154cd5c8bdd18e03f7bac09565d1e8f779883bb6502560" + }, + { + "href": "./BJ37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a518d7c96f0cb52f619bcfb1aebd703538a87529aaa077b1f28811507685caf0" + }, + { + "href": "./BJ37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205492770ca2ad9ca622d913decadbf1048cbc19f2fe1a87c5c63330a4e9492e90" + }, + { + "href": "./BJ37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200bae6982ae88ce9128d8c51ac5fbebb70a19131e78a8ea789ee184b92fca1c9d" + }, + { + "href": "./BJ37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209b207c4085ffe3178f3ba5f7d1064b89f67073fd49051655923ffd03d1977543" + }, + { + "href": "./BJ37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207747a57523bd0bdd7f3a852786f7618c5deb421f04c738a59726bad4fcbac76e" + }, + { + "href": "./BJ37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c522b056145aa88de9540b3163498f11811cee64fae39950a258dce30cef0690" + }, + { + "href": "./BJ37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220027eef706ba54a1b4bcaffa84160d2a0c1c0b64459d3bdf215a19e02bc315b0f" + }, + { + "href": "./BJ37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122044eb9a8ef8dc6f1d3a7c91a18200c69b7e639fbc592b75dd345c86d3b0fc28c1" + }, + { + "href": "./BJ37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be8f72c7b504b820b11eb267a62e1c179fc629e55cb2563bf48de7558a4cf723" + }, + { + "href": "./BJ37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203fed032340160cc4a9028b727e3527d71b74d7fd1470c1b1ebcdbaa456e7825a" + }, + { + "href": "./BJ37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f99cfc8e6871a4fab9454207be712a4408b51cc8ed3bc0250eee05256a914ff7" + }, + { + "href": "./BJ37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec2a591e2c1f3ea5e8addd4895ea5f5e9d29986f1b30df87db87820520cf6cac" + }, + { + "href": "./BJ37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220345280ac40e56bbd02a634824c6c1856c2833f37cd684297ee64599b771ee4fe" + }, + { + "href": "./BJ38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206590a95f9cb75388eb3a36ea2a9bce9fbe4ee1ed76fccd7e72901dede1fe5c6b" + }, + { + "href": "./BJ38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df9bafc93edc0889ca50e7b59924938d237ce86c4b8d11b9c81f8cda7862700f" + }, + { + "href": "./BJ38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5d23606c76033f135bdf6ff7ddda89fb16fe5c0e509531c46eebaead65d71f4" + }, + { + "href": "./BJ38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220465c16199dd6a70e14346ce6794df8dd3b6b8f2f52a9f03c80ef034ddda1821c" + }, + { + "href": "./BJ38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220839de273fc54f6e655f71839684b153786415cb68fa7775466fd30da31d77896" + }, + { + "href": "./BJ38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e64ed03bac1eddb15c0b6e68ee206ecdb5037e08d63b41609304bc9ed34e0787" + }, + { + "href": "./BJ38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220630e4cdfe6b1e992af9b7fe987e09a5a50b1104f0d557b9ee6270d714ca6700a" + }, + { + "href": "./BJ38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209b1521e5e614565286b24253b46ed77c2b7369303e138fff1a193f60ba8190d9" + }, + { + "href": "./BJ38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df050c53fd77814cf5da99bb85adfdf2289b84ffd9061d44effba07014053957" + }, + { + "href": "./BJ38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203913cd842b57d5e52a9181dd25ff10e4a7f13957bb03c9e76530388d9f1afb5b" + }, + { + "href": "./BJ38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122027ff35e2585b53aacacb2414e86cc83002e53ccec17c998bb00f23023958d839" + }, + { + "href": "./BJ38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1960befe2b8eaeb8db02eaf0c3f36abe9e9833b484a04598818c089ea30423c" + }, + { + "href": "./BJ38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a2b58e990fee0778fb46b3c97d8b7d0660ead002907008a62bb71376ad320c7" + }, + { + "href": "./BJ38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c90e4a7d7aece55c99c671e9d08204cbd6cb3c80f2e03abc80d057a2e9e28947" + }, + { + "href": "./BJ38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209967fd9374a33065e871dfc65ab490de50dbe732625086fb13e4a7c64fecc3d1" + }, + { + "href": "./BJ38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122076ad9b26a9867434073502c067caa89cf4bc07c7f67982f15a76bed5798e1422" + }, + { + "href": "./BJ38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed4fdc77dfe52b73859182e8c7e893b5a0efd3b90c08835f47d5aa1e00e01fd7" + }, + { + "href": "./BJ38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb7f74da6af409d90b7934321ae361b3eea529eaefe89e017a8e6995ca253e6b" + }, + { + "href": "./BJ38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a22ddb59880108f5b327ce16ba3a050fe09a9129983f8cc0f8b515be673bd8ca" + }, + { + "href": "./BJ38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205c3ca5234b1a0282b88d9a530ffa6278746f2db2811636fbc3ff78f8017d1073" + }, + { + "href": "./BJ38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122000722317320c783fa25e561de989ce6b80dfbada48f308a68fc33ded774d6445" + }, + { + "href": "./BJ38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f2359fdeeaf62e44c2c68df0bfb1017f729ce4f017b989d9f678f6783c4e3eb4" + }, + { + "href": "./BJ38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010b0eba82fd0647f97304fdc7aa9c7935e97cb584e48f919c0af1c28bbfca11e" + }, + { + "href": "./BJ38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e48cd9918a824fd2feb16c2c5e8177ecb295b04d54770314c0b3eec6ad654bf0" + }, + { + "href": "./BJ38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022a7610215fa81c48b5a8b544985c891a7272b244b11ddcd4ac8c546df9ed139" + }, + { + "href": "./BJ39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209142666220eb872e2f4e1c2e524d5df05a8f983e077a6eba28583f1bcf6df748" + }, + { + "href": "./BJ39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122078b45b6572ef3125c378cc872e486add31732cc53007543efec74677626aeee1" + }, + { + "href": "./BJ39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122018f9beb98da7000d32b31270d704e66950048eb0e86042544e54e3925dc022aa" + }, + { + "href": "./BJ39_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bd65cad1a829d442eb0677fe84d3b25d5e5528ce44ffa2a0d24134e580103083" + }, + { + "href": "./BJ39_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220332ca1ff3bd4c37ed239667b215b094029c235fd15c7d199f4903cf4f41fd9e9" + }, + { + "href": "./BJ39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4be2e23a4df374e2caa53601b88e19d1d9b2ebe1e09979f792c13c551741f72" + }, + { + "href": "./BJ39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a62ac3e48cc210d4e3885ae41b53bc8cb9be00df7bf23783c1fba1875d0f5661" + }, + { + "href": "./BJ39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a6c388504809025a98784b882fe57153e542d8322f78784718425709a59a96c7" + }, + { + "href": "./BJ39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122027ed6d7c94faf1580b2e0c8b93a422aba112facaacf9445055e7c9f8cafece46" + }, + { + "href": "./BJ39_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5d1d913116556cb960ae6b7b5a03a96e367c0dda0d9a4fe6df62f083d79f6be" + }, + { + "href": "./BJ39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d3fefd29f268f99243cce6f16a846962edcf81d798b400c683c88ebd15b1999" + }, + { + "href": "./BJ39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075f0a1f906914a7e42071b2556b9e2a01decc4da00f2a7332133dbeb7920051c" + }, + { + "href": "./BJ39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209c6a7389e07438142ac4ba9d7703cf23144288c5af9eeec46468f76b564bd5e5" + }, + { + "href": "./BJ39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e7f3a00729d8c4d01f41f58a26f87c0ce6344d0b633e3496f0fcdbf5874404eb" + }, + { + "href": "./BJ39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209482e86bf1055aa71c4af863e74643a9d9cffee59082af95d5c853057e8f1e18" + }, + { + "href": "./BJ39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064a8b2f44349bbadbcecff7d7a07ab8c5458863081fe28ac1aa811436954ace5" + }, + { + "href": "./BJ39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbbcb80955da8fa43e1e6dbe0704b8bae3abc72a5292ea3131cca990c265f434" + }, + { + "href": "./BJ39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122033fa7ca5219d4230aa19545ff2068435dd456a16855b807228560f7484605251" + }, + { + "href": "./BJ39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ad3bf79fa9ce7d08dd37c06de82bdf632edfccc3ab31f0c126069af80ce3ee0" + }, + { + "href": "./BJ39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122079cf02e5a1d0c8bf729b5bc189dd68389f2062a6ac6f494b806e0390d04ad6c4" + }, + { + "href": "./BJ39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220242cb8e1853cd144ca6823ac9d17181656c1c2fdf1c2d7d99f42cf31f260c26e" + }, + { + "href": "./BJ40_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220910fee66be94b7e8598e1d0d7edef9a78ee237f051bab03d7800b8842b458cc7" + }, + { + "href": "./BJ40_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208bd5ffd3c9ecbbf3f23bfa8ecf6a4a0007d09ca61dbda34f369a27c2302c7487" + }, + { + "href": "./BJ40_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d94ed004dec6aabc9fab0e3e05c29c61d47563bfc04e679cd1cebbbcf1b2954" + }, + { + "href": "./BJ42_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122025825c25a381dc1cdb7fe47045fd8d3c4139fd51b101096ae5a2f60b0e1758e8" + }, + { + "href": "./BJ42_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203ca4a65eb6811ce14d0fc70b378d08944db455e139b0921d38393596e240985d" + }, + { + "href": "./BJ42_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5af5d7dcf7bb62df4ce540f32fcbb125c2dbf379bd90e874f6b3401f6261dab" + }, + { + "href": "./BJ43_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c62ff0915b08e90a76228c18a2bb75e142eff85ae4311b356aad6755b9d9024f" + }, + { + "href": "./BJ43_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0cd02eaa6475f8579ac0ee0edec44d9afa3b7a814872128fddfcdd5f3c44014" + }, + { + "href": "./BJ43_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be16288e596756d51f4e94d20216dd3fbc33c14142101aa13fe3f3563bf9e44d" + }, + { + "href": "./BJ43_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f132ec29597f0eb4b9d87b7863e59c8aabc71fe2b809ffb23ee1fc9e2e14173" + }, + { + "href": "./BJ43_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf1a1c9ca6b598d6d661f402289a523915870e499f1700f241cef373968a61a6" + }, + { + "href": "./BJ43_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c99f424f8269671623ba4c5b314659bebff5b543751a159d4eae931dacdb0ed" + }, + { + "href": "./BK36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf6a013b0e8047090bf82045bfbf77fd081c5c9aa90322314e8af58b38024be2" + }, + { + "href": "./BK36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220589a9f1c53a1ee87058b9125f7b7f6c4087c6005cb0cc669f5558c3aedf4cfbe" + }, + { + "href": "./BK36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203f39b16e7c36806684c7c6aa0fdced87985123a76450c0dcb1c158eb664de077" + }, + { + "href": "./BK36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064dea1c5c50f821c79e6e03890b8f3991abb80a0eb70bc2cc58f8e5f3a816bd7" + }, + { + "href": "./BK36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a8c4117e5c8f5ddc4e59d4cd50eff7a8fa19734563c13a7dc1adf73b36824b97" + }, + { + "href": "./BK36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a907e9a03ad8bed7553e5ec8514e2c8441298277b6fed6471004a63dca240d7" + }, + { + "href": "./BK36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220865357d519e9346fb7ed85d04622efabc0a448fd8994f39b4050c2aca4336eb3" + }, + { + "href": "./BK36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c2f006878171f402af18087b070708610d92737536a0d5af96212a8b3c601c28" + }, + { + "href": "./BK36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f2fee0295c6089cb6648a9f69db9876af9893ae72d193a3ad15e95dc3d44a33" + }, + { + "href": "./BK37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122083cb0dcf49470ff15046062537dc2dcd06da120acaa0e1cc782bc2d9d4ffbbd2" + }, + { + "href": "./BK37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a3fe38c7239737c32bb0c135944ebef6b2f289c1a320bcd1207b591959f65c1c" + }, + { + "href": "./BK37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202808e4c607e0b6e56a70f695cec8e435de2a35d183fb4ac32b8362473fb4445f" + }, + { + "href": "./BK37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa9a6389010b0defef83dd6bddcb0998cb158218ad54ef2e2a508c0f4ac38815" + }, + { + "href": "./BK37_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220830ec08831aff9b865c99ac484627e6eb84fc0de2ec1efc74fa2ddc2c0fb0b6e" + }, + { + "href": "./BK37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c99d77dcf2738856528784a0e659b0aea95bb31f5a8d2c8cd7b4732fdb8a7c9b" + }, + { + "href": "./BK37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201372fb3dfa5bfe88e9d6038abcaeb144c7c190180213a92c28fb0a022d6705dc" + }, + { + "href": "./BK37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5a5fa1098e480b81906107c0e0b26662f045d2dc6a32e3716f93e616a0c9a35" + }, + { + "href": "./BK37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203e9b967d073e419db96a40f71887bfdaf10ca55acfa2f245fac41023f8992823" + }, + { + "href": "./BK37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a77cb1b70c73d16ee1866a3ea6d9560e493bf1afa8c4aaf0c0efd35389687b57" + }, + { + "href": "./BK37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d143d6d41f7c659bc9d5b2b756a2dfc1f6a508d62af80cb1e9cfec2b53e4f4d6" + }, + { + "href": "./BK37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f083cf0a974795222d3d4b4a242a02f6c27a99847bdcd343b2dd783d91e63c3" + }, + { + "href": "./BK37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122085ad4714414e0974317ab675a82a087bb20597b53005be80904726594ce72b52" + }, + { + "href": "./BK37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122001c997d9ed991085f67a9081006ac8c70ba6bede3722dd49f63071fccc5e5dd9" + }, + { + "href": "./BK37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122066ec0d2fc515258f11873ec4459d8d9960aab296952e127780e4708711e8d9dd" + }, + { + "href": "./BK37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003a37454d212aea54279c79a2f6a8d92b10cc12ce2da656738bc91cc77188951" + }, + { + "href": "./BK37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b25e93e4b76d0ffb73d6fc3edb3dcea066b254a8125239c2787fb1c995f25a2" + }, + { + "href": "./BK37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075956886ea18c057198f839b8fb8af4de7d0c63e8218ebfcab9919c828e361c3" + }, + { + "href": "./BK37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201cf2832f9490109b1ddcabf94edd99199f884a4d2961ad74c7cf6da4df34f80e" + }, + { + "href": "./BK37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b60e0cb119bda7c9d220869b520d917feb173582bbe4bb1ae8ff26caff5b7503" + }, + { + "href": "./BK37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e2f4d263a24797cc1b84184cb9c5a0503bb072afe9bc9d81553add0646fed14d" + }, + { + "href": "./BK37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017e236aa58fafa5f713f02a6c78a14227d8d7d620f3da8bbc397a31caeb197af" + }, + { + "href": "./BK37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202b6e242bf7131b480cae8f34d45da6de5b9c7ba99c57aa3cbad4c464f877b4ae" + }, + { + "href": "./BK37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df943950514c1b7879e5372aa53b7a2bf8495724e0782d5ee816b0f1c0b0b389" + }, + { + "href": "./BK37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5b388c99b80b33fffb8bf2241a054a5c681bb8b80616921407071980c1e2847" + }, + { + "href": "./BK38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d653209a3ec2e679938079f33cc18d55dedbf01e8371cae5e6ed48bdc5afd6d1" + }, + { + "href": "./BK38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be01b522beb6f20dd4f3a0df1c0210ac5c2630e948ef99229dcb40724cbd02fa" + }, + { + "href": "./BK38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dad73ee1420d66790ecb01d342297640df0f48fd992768fa9670a428872ca03c" + }, + { + "href": "./BK38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c6297f92bacf0e7f2f74a8cfa864be7c18be5d762600c4c1a037b10b6567d510" + }, + { + "href": "./BK38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220112b629b629bcfb7409ee0b56612d66c4fa231a09719e5e25608ce2fe093a35e" + }, + { + "href": "./BK38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011f6ac6c91d8ed31ddf76fbb47a7acd4e2abb27fd2db3a72f7852fe8b3044385" + }, + { + "href": "./BK38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a6b6e2fb9629126eb7909336024c2161247129e7d0c264bfee1077706e62499" + }, + { + "href": "./BK38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e964b2d0a26c6c1ce7c9607929dca66afb6a65a806b8eb5b558d2c80a7b76414" + }, + { + "href": "./BK38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201b208e60fd4122886e77d30f58546d3dab4325f191a37d6058e186d638342236" + }, + { + "href": "./BK38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f02c10779669ad612c714c5f2d180e02287faba0ff98d162ce53e4e7b0a6f227" + }, + { + "href": "./BK38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122032588d4e530ef2ce556409abacabf287e0cd9f324b6968fcc7a38c5ba8b47cc6" + }, + { + "href": "./BK38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220774b8d9290ceacdd6004caed80fd3f806ff93a893baf805935c9565da5b53a5d" + }, + { + "href": "./BK38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ca51a029b4edb450b2baa2f237d108d5dd260ae58ededbbef555073857c2045" + }, + { + "href": "./BK38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030b22a17a345988ee7164eea33e84986c4fafab32237c7ce4699c8d3e740c618" + }, + { + "href": "./BK38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220738df18ec2dec7ea16d8c62645f7cfb411d615a28c3da33239764f2c68b4de89" + }, + { + "href": "./BK38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220246bc13c454766c2086a18e06654279d8ed487c3631153754f68b1721443b966" + }, + { + "href": "./BK38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122051b9fbac39cac674ce38078265685a2fe2f20a356d60cce4c918e9fb25f23e8a" + }, + { + "href": "./BK38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202c2a5218b94098f7c4253e1f6775cd6e92dd46926aa52247e58693cdd67c5629" + }, + { + "href": "./BK38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220243542cff5b574df4189d52b5f48a118a4f59538cded68f63707033f5a2faac6" + }, + { + "href": "./BK38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122056c90be3e3e82b1f536bb94fd793db987ca64d0b997f503665ec2fa2aa4a14d5" + }, + { + "href": "./BK38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220622cbe70eddcb4f54a6e2530b60b4a289309b9e6bc0cd0d44657aa018315fdaf" + }, + { + "href": "./BK38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122049f0960eb9e2f6df543bb28250dd3ed0ca2f5f4dcc675aeb6d4252cf6851ab7d" + }, + { + "href": "./BK38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf4208516415c190a75e0630600a8df277ad0946a6dae9124239d273dbf2aea1" + }, + { + "href": "./BK38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e99a04f6e993545cbb907c255aeea8cdb3a3a34ea6ddaa94fb98928297573d3" + }, + { + "href": "./BK38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb35dd4e9fded45ed80679d396c6040e68b9d5fe251dae3bfa849f6dcb25803d" + }, + { + "href": "./BK39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a9b1cc4ca294a730499cb28450b2a53437a2849e4e021ee9f9e1c528855dc52" + }, + { + "href": "./BK39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220667da1a09235591b1d12b278ad252d065e8695a5290e1f5b3a6cf1f70e1b1d8b" + }, + { + "href": "./BK39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060269813d32e457cc69735f18926f7fc2bf3d07f3494da30a8c545eac989da9a" + }, + { + "href": "./BK39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e21babe0356211c63db9855e7c61989761d05ddc20c213f1953b82930a46e38d" + }, + { + "href": "./BK39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202b7339d6234d4f313aac14b04cb9eba1a517c8dccd31058474e9091c0827eebd" + }, + { + "href": "./BK39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd9830478435d375bf327ff0bebb26abf370d23e407921b3e6eee52995b6c142" + }, + { + "href": "./BK39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fc9aeda40bd19588834d0f529d7871793eecfd4fdc55b18955e97d17400b5b8c" + }, + { + "href": "./BK39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208d9a0004818d00b0fab8c4e4ca4c291a5a2d5459e9d6e9b51f926e8063ec4be6" + }, + { + "href": "./BK39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c11db104f850be7ff0f5cac4d1eefa8000de146b29f8e221987e2a6aa1546536" + }, + { + "href": "./BK39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e10fa7b7d7a6383b910bf668965d683c7ba3221e6a550ac066d89421d1c8ae80" + }, + { + "href": "./BK39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da8b743a48e2f9e22b62c4a169c12b66decc774ab3881929d39403e38f342206" + }, + { + "href": "./BK39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bdbc96eb8be66b211f90a5c445f5f15fc4ecd4e4c2471232710f125983c126e6" + }, + { + "href": "./BK39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207ddbac0814f3d607c5672e982e9546922ae31dec2e08b44c968b440c36f482e8" + }, + { + "href": "./BK39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209bc454d936e0385f07117b3d0bdc22f9c19a060d6d08f54918030a671a0db0fb" + }, + { + "href": "./BK39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d019441625281bfad368cbfbb4cbc9d20d0b6f56cd44984e4a91444f1f67cc8" + }, + { + "href": "./BK39_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f6dcd4b6c0b13912083cbc9705f6e8bd8d5823425779d10b61ad099ca1b9826" + }, + { + "href": "./BK39_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202ab71b7702c2836389520d3cda9dae1c2e7431ccf9bf6138db55ca9600218c95" }, { + "href": "./BK39_10000_0501.json", "rel": "item", - "href": "./BJ38_10000_0405.json", - "type": "application/json", - "file:checksum": "12207d658ffcdcd8c44977c78490446f28653122d0deb905f9adb959ddcd03bea897" + "type": "application/geo+json", + "file:checksum": "1220e36ece95f75014ceb743526748f4bcae551d8fe831c66eaeb2a7c71c8472cee0" }, { + "href": "./BK39_10000_0502.json", "rel": "item", - "href": "./BJ38_10000_0501.json", - "type": "application/json", - "file:checksum": "122012272fd5d283d3000df7957ba230d3fa8177c65e8f9968c5a3904969d681cbce" + "type": "application/geo+json", + "file:checksum": "122058a6d053359448b43c713e7b25edc913b473d74d2026b42fd401889e51cacb34" }, { + "href": "./BK39_10000_0503.json", "rel": "item", - "href": "./BJ38_10000_0502.json", - "type": "application/json", - "file:checksum": "122004444484496fdfdbeb44b7697f934322a24f2deef3161b7af53f99e3e512aa96" + "type": "application/geo+json", + "file:checksum": "1220891e48cca3de819f872d7ec13f264bc56ce19db13ae45fb55e83cdadfc51adcd" }, { + "href": "./BK39_10000_0504.json", "rel": "item", - "href": "./BJ38_10000_0503.json", - "type": "application/json", - "file:checksum": "1220c25240f7184701b61825d8dfd5c729a9faa42f67d1721ed0a2078be27426dbf3" + "type": "application/geo+json", + "file:checksum": "1220e96c6924c7bc24c767b8e2f26305092ebb8055bd73fdefac104d5f768b00fd6d" }, { + "href": "./BK39_10000_0505.json", "rel": "item", - "href": "./BJ38_10000_0504.json", - "type": "application/json", - "file:checksum": "1220af2c4c8a684b1baee9a8689967e96ed20e939d736856a771770291913de3131f" + "type": "application/geo+json", + "file:checksum": "12203792789128c6b2fdbd108dede6164629cbba9d67ced0553e9d0f78fa72b8964c" }, { + "href": "./BK40_10000_0301.json", "rel": "item", - "href": "./BJ38_10000_0505.json", - "type": "application/json", - "file:checksum": "122087c739bcbd92793918aea06c8bf857ab498d16aa7c6faac23d6598cf8c0757e9" + "type": "application/geo+json", + "file:checksum": "122001648ef3b9f800a58cbe9394b92f76382c916e7ebfb5629afc0ca663d4f0c0fa" }, { + "href": "./BK40_10000_0401.json", "rel": "item", - "href": "./BJ39_10000_0101.json", - "type": "application/json", - "file:checksum": "12205a057164087e7f557f1408597ceb96d37424f2d7fa10e47aad42c834b4eb912c" + "type": "application/geo+json", + "file:checksum": "122006ae586115dbc0df8bad022f7e613f0d5354c1b15f0b936fed4c71b9edeb0789" }, { + "href": "./BL36_10000_0104.json", "rel": "item", - "href": "./BJ39_10000_0102.json", - "type": "application/json", - "file:checksum": "1220b8c34619ee904ee501298e99ee37cc0b7eaf9d6dca4994920d8adc6806434788" + "type": "application/geo+json", + "file:checksum": "12204ba0e3c7b21561508103ce860e4706b5b3e17b1c54815ab62791e85ae0f99e00" }, { + "href": "./BL36_10000_0105.json", "rel": "item", - "href": "./BJ39_10000_0103.json", - "type": "application/json", - "file:checksum": "122078f4ab3be8ec6071a9c374181cd15def281bb177dfc45fad14acb8818b27d317" + "type": "application/geo+json", + "file:checksum": "1220b45550dccdf58f1caa1ea260816c41276a5f7e15ce5a50e9d0d579400e08b3cf" }, { + "href": "./BL36_10000_0203.json", "rel": "item", - "href": "./BJ39_10000_0104.json", - "type": "application/json", - "file:checksum": "122065e0461d5c9d83f5df26fe96b236f9a99c6eec884ab95e925dd4d3582e4a981c" + "type": "application/geo+json", + "file:checksum": "1220d48d9b6c18ea783cc999062ed5f06046ed62ceb3a96af7e9794ed39e5298092b" }, { + "href": "./BL36_10000_0204.json", "rel": "item", - "href": "./BJ39_10000_0105.json", - "type": "application/json", - "file:checksum": "122000feacae29e95da5431ee2aa273ade2f6f1f32767b1991394b37df20f9611bc4" + "type": "application/geo+json", + "file:checksum": "1220b5ad09af49f4b40dbb475b61882370c8b2bcc2fce094e7194e74362b3ec005ef" }, { + "href": "./BL36_10000_0205.json", "rel": "item", - "href": "./BJ39_10000_0201.json", - "type": "application/json", - "file:checksum": "12204643e7915dfe35b5f13d054c6d089cdeea040bc6f38de9704f4d355257fcf5da" + "type": "application/geo+json", + "file:checksum": "12208840ce6d7f4d9e7a9bc277f71c4414e7015e5126e68e41de333f42ad91638f3b" }, { + "href": "./BL36_10000_0303.json", "rel": "item", - "href": "./BJ39_10000_0202.json", - "type": "application/json", - "file:checksum": "122036c6800e7b77adcd15414e9f9caa09226d27e8737d725f799f40a0da47a5028c" + "type": "application/geo+json", + "file:checksum": "1220c0a7074250dd3e5341927c0c795c3df2a9f2e5a4ff228f43021b8008e1459978" }, { + "href": "./BL36_10000_0304.json", "rel": "item", - "href": "./BJ39_10000_0203.json", - "type": "application/json", - "file:checksum": "12204ea2370a33966967868cfcc7e9e109f050e8e620f3c353eaaaab2758b965d9ee" + "type": "application/geo+json", + "file:checksum": "1220af15ec2d29cb797b9580bc01e3e3df2d316cdbea47ce9abc379bbc3b3efc3768" }, { + "href": "./BL36_10000_0305.json", "rel": "item", - "href": "./BJ39_10000_0204.json", - "type": "application/json", - "file:checksum": "122096c41fdc6bdc14f4b5c41e051b4370cdd006eea839ea8a582ab0bda2445a8879" + "type": "application/geo+json", + "file:checksum": "1220f75e4309c71b05f99d0f1368da67f29ef14bbe5436bc7bdb0a165c29b989b1ea" }, { + "href": "./BL36_10000_0404.json", "rel": "item", - "href": "./BJ39_10000_0205.json", - "type": "application/json", - "file:checksum": "1220d9149cdc4948712b0edf3408a06680c45df8bb2fe91acde82249daea7124c5b3" + "type": "application/geo+json", + "file:checksum": "1220a2fca8887f9fede7820840eae093bc02461aabde8735a02dd206650963c15faa" }, { + "href": "./BL36_10000_0405.json", "rel": "item", - "href": "./BJ39_10000_0301.json", - "type": "application/json", - "file:checksum": "1220d14c2caa5dc78972ab98b41740be497f9ab914b5ce6d044c0527cc51f5899ca0" + "type": "application/geo+json", + "file:checksum": "1220416246ee812e893fb25c76f5c429cbe0c5dd4eea2ae93740a73da8c6417b363b" }, { + "href": "./BL37_10000_0101.json", "rel": "item", - "href": "./BJ39_10000_0302.json", - "type": "application/json", - "file:checksum": "122038988e3eb6acf28c4e7b339576d7c36a710159cbb1e29e8bc2f28adbacecaf55" + "type": "application/geo+json", + "file:checksum": "1220742705c9912d203a174116e54cc90c2b0f59afcda1664dc2a82196fadd9df9da" }, { + "href": "./BL37_10000_0102.json", "rel": "item", - "href": "./BJ39_10000_0303.json", - "type": "application/json", - "file:checksum": "1220e0fa653c80fa6bad8fb5906315d90478e89d1e6c84ee928438d43ff799c67621" + "type": "application/geo+json", + "file:checksum": "1220c1211e7274e18b70d12c8e68af4fa53e193872084927342fbbd7ed0ee3b09992" }, { + "href": "./BL37_10000_0103.json", "rel": "item", - "href": "./BJ39_10000_0304.json", - "type": "application/json", - "file:checksum": "122025030f990eb4d69f0d05e8da18d65edf47e4183d52be7821fd26e503790046f6" + "type": "application/geo+json", + "file:checksum": "1220cd7c9c3d908f41e70e9deb762062c44a77c6e380b5ca6752b887341bef2bb24e" }, { + "href": "./BL37_10000_0104.json", "rel": "item", - "href": "./BJ39_10000_0305.json", - "type": "application/json", - "file:checksum": "1220c70638b2ba23571cdb984b5fa9c946c65873c7e714914b98ea8461b9b5daa827" + "type": "application/geo+json", + "file:checksum": "12207f281fe5d8c73ff7ac54f04c3a5b1832cd6b614cd9ba2bb7a84992b64c1d3ab0" }, { + "href": "./BL37_10000_0105.json", "rel": "item", - "href": "./BJ39_10000_0401.json", - "type": "application/json", - "file:checksum": "1220abf331cca13aa880a924ee2831064f9b2611b68e4bf89b4dd485597237e5d231" + "type": "application/geo+json", + "file:checksum": "1220fced5b6562a11bbf80b280c598fe9b531c61ca374e9e1c4eea3b2fdfc404b267" }, { + "href": "./BL37_10000_0201.json", "rel": "item", - "href": "./BJ39_10000_0402.json", - "type": "application/json", - "file:checksum": "1220a723556ee5a5e5188488d8426f2ccdddc532474bafb4ef44caa86375b564095d" + "type": "application/geo+json", + "file:checksum": "12205a2450b8654f43f8ea356e754494ed2c924db2138f5cef77b859bc6d0fa11f97" }, { + "href": "./BL37_10000_0202.json", "rel": "item", - "href": "./BJ39_10000_0403.json", - "type": "application/json", - "file:checksum": "1220138d2bab10f28f87889a6dd6886da9ed0aecd5833912f825f1ffb9b16aa47840" + "type": "application/geo+json", + "file:checksum": "12204abf94fba47588c1e0f2da82a0dcb60fb28d51b191b19a4f34d1202d2187b17c" }, { + "href": "./BL37_10000_0203.json", "rel": "item", - "href": "./BJ39_10000_0501.json", - "type": "application/json", - "file:checksum": "12207a396f2e05f4733fd4ba56b158ff844c04ed6cf988ee1f964fac9f90e3f74d18" + "type": "application/geo+json", + "file:checksum": "12205a3b3350c717c28b64da3c77b2d22bbdef2b02dd79dc4eddea18a784d96efb1d" }, { + "href": "./BL37_10000_0204.json", "rel": "item", - "href": "./BJ39_10000_0502.json", - "type": "application/json", - "file:checksum": "1220dbae3959a57c2cb2b724cdfece6df8fe6da23c67cfc3774a7d407dd1acfea5e1" + "type": "application/geo+json", + "file:checksum": "12208bbb532fb4efc458aa5b99d7043c27899780b8432d7fe57c19d30310b9eadcf7" }, { + "href": "./BL37_10000_0205.json", "rel": "item", - "href": "./BJ39_10000_0503.json", - "type": "application/json", - "file:checksum": "1220d8029ae4532bc14666b720eb91f7c225fa59fb82e9aef606d909286d47cc3034" + "type": "application/geo+json", + "file:checksum": "1220c18638a86344b3ff99fc2dfb55c14e88a4181b5dcee28b5331381868e5b916e4" }, { + "href": "./BL37_10000_0301.json", "rel": "item", - "href": "./BJ40_10000_0101.json", - "type": "application/json", - "file:checksum": "1220e52ee7092da4a25af9df75204bb5956a95d749c0b6a90335bbc2bbbe5e32c306" + "type": "application/geo+json", + "file:checksum": "1220791b7ebb1f4dce55b5db81bd51ffb0518017593cdd63001e4123db2cf659b664" }, { + "href": "./BL37_10000_0302.json", "rel": "item", - "href": "./BJ40_10000_0102.json", - "type": "application/json", - "file:checksum": "12206e58ecdec6e44e9f922a755547205cf5a7e69e1c0e3b413806b3307be5048bdc" + "type": "application/geo+json", + "file:checksum": "12208719e385e9c4da5a11391a8b807ec0144c59e79971db931a12233969445e5c3a" }, { + "href": "./BL37_10000_0303.json", "rel": "item", - "href": "./BJ40_10000_0201.json", - "type": "application/json", - "file:checksum": "12209487e62a06c2cf8516ed9e1d8bace179a346407fe2dc6fd9eaf5b20335c4aa0d" + "type": "application/geo+json", + "file:checksum": "1220d7f619fe100322a61fda8738ff7317b8087ddec0b489fd0f97b957b41bcc04c4" }, { + "href": "./BL37_10000_0304.json", "rel": "item", - "href": "./BK36_10000_0104.json", - "type": "application/json", - "file:checksum": "1220de32a4d2aa02a091c7f20c4e9099ac99596e06e1eb71961c84f8ef0a40c7d6df" + "type": "application/geo+json", + "file:checksum": "122048104d498461f28ca72c7b4db13388b69aab601ca0d2f9586bdc0dee4bd40083" }, { + "href": "./BL37_10000_0305.json", "rel": "item", - "href": "./BK36_10000_0105.json", - "type": "application/json", - "file:checksum": "1220b5a554676b1a9a6a882f803c1d03d73ad6692ec29e2b697f4f98d681ec3e07a1" + "type": "application/geo+json", + "file:checksum": "12200fc1b5e077e352399964c6a04e850a430f6c55dc2f933165aec7de41a7459646" }, { + "href": "./BL37_10000_0401.json", "rel": "item", - "href": "./BK36_10000_0204.json", - "type": "application/json", - "file:checksum": "1220b816807847ed0ade2c66ba42828ecfcf7803c1b374d21f25fd3bc26423fb1ada" + "type": "application/geo+json", + "file:checksum": "122065ca8baae73317a48d0b0bcdbc01fa166f5b981b9bbcead0a55ce5e138e75499" }, { + "href": "./BL37_10000_0402.json", "rel": "item", - "href": "./BK36_10000_0205.json", - "type": "application/json", - "file:checksum": "12203e92e5e29e80f0e2e7337ad96635cf76ab72d768ca6eefe8742af1eacecb4b2c" + "type": "application/geo+json", + "file:checksum": "1220876014d352f304da1c9bcee1db908ad276b9a4b612e23b544f4da486c99ecbfc" }, { + "href": "./BL37_10000_0403.json", "rel": "item", - "href": "./BK36_10000_0305.json", - "type": "application/json", - "file:checksum": "1220bdab2e5b3f0ed5adafa4c19b5b8faae6993f780204271f1d0e257193a463f41f" + "type": "application/geo+json", + "file:checksum": "1220df8f7bf4882f99157057cf313ccb2e15d5669ac9532c803c1f58a058e394f133" }, { + "href": "./BL37_10000_0404.json", "rel": "item", - "href": "./BK37_10000_0101.json", - "type": "application/json", - "file:checksum": "12201b7c1d2bccb4db47cebee8bed80f48d039d0d40afe8d3ed143318222f976f3cb" + "type": "application/geo+json", + "file:checksum": "1220e3cf76beb2ae5d0230913433dcb89d546fd980e3b238cab794792d7787f8cc25" }, { + "href": "./BL37_10000_0405.json", "rel": "item", - "href": "./BK37_10000_0102.json", - "type": "application/json", - "file:checksum": "122078bf0ade9a730c0e2088cf0216f3d1b11fe8696d6d9991935eaa09f7128f7022" + "type": "application/geo+json", + "file:checksum": "1220217f5050bf68957de4b7995be557c80f2003ca10f024734f8ed4d39b47aa99f3" }, { + "href": "./BL37_10000_0502.json", "rel": "item", - "href": "./BK37_10000_0103.json", - "type": "application/json", - "file:checksum": "1220e5f788b98e18c31ff647b81fed35743b184825b564b4be7159a5a85afd4428f2" + "type": "application/geo+json", + "file:checksum": "12209be10b1f467fb0c350752a7c4c4eea5e34055ff871630fdbe329ac9b7e4d8ea2" }, { + "href": "./BL37_10000_0503.json", "rel": "item", - "href": "./BK37_10000_0104.json", - "type": "application/json", - "file:checksum": "122087ef7157de7f60697837ff31d9fcf99f551db544c0fa3201b247e10efc63add2" + "type": "application/geo+json", + "file:checksum": "122063c1738d7b66dccbee89171017174062e5642d044b4432c9ee0b832547dd84de" }, { + "href": "./BL37_10000_0504.json", "rel": "item", - "href": "./BK37_10000_0105.json", - "type": "application/json", - "file:checksum": "1220422c0e703311d82c04212c53476f8f5ca74483a03b2f5d0d2bb5209b38131209" + "type": "application/geo+json", + "file:checksum": "1220fa4fbf13dde12f078b4ffa5e1ac134f2fa7d132881bbdc1409a2d72f3ba62be4" }, { + "href": "./BL37_10000_0505.json", "rel": "item", - "href": "./BK37_10000_0201.json", - "type": "application/json", - "file:checksum": "1220288b29957a9bc975ec95f11a448983ec8d76ac33879c1cf1db1ff79731de289b" + "type": "application/geo+json", + "file:checksum": "1220a407dfcbeb9cd1cd13f420380e971a3c9929f214a94f6b76426baae498ff10bc" }, { + "href": "./BL38_10000_0101.json", "rel": "item", - "href": "./BK37_10000_0202.json", - "type": "application/json", - "file:checksum": "12200daba25b592ae692ceef67fe75af19278b1d75e08c8612c5eb631d061cb40694" + "type": "application/geo+json", + "file:checksum": "12206693cacc9fe427b85ac227f833e2cc60da51fd216450645ea42ebea773df0716" }, { + "href": "./BL38_10000_0102.json", "rel": "item", - "href": "./BK37_10000_0203.json", - "type": "application/json", - "file:checksum": "1220d438abc5fa02c9c89acdf03a2cbdbeb6a08dc0ac39f16ec808ec323eb5315852" + "type": "application/geo+json", + "file:checksum": "12206d222afd7187a004a58016592cd918664c88e587bbf803e58634e37099626ab0" }, { + "href": "./BL38_10000_0103.json", "rel": "item", - "href": "./BK37_10000_0204.json", - "type": "application/json", - "file:checksum": "12200b6dbc2251d607045d9e1438516a27888eeb56eb9df8a9e933b7b0d354acbe20" + "type": "application/geo+json", + "file:checksum": "1220da98a49d20dc7dad99edfd4b06df0e1ae18199b3a7a0e1488fe0b9b4ee355875" }, { + "href": "./BL38_10000_0104.json", "rel": "item", - "href": "./BK37_10000_0205.json", - "type": "application/json", - "file:checksum": "1220851de739f0686b3728c584f0a6409294a3e8c23405e43f2d8ce4c75b41f7bb0d" + "type": "application/geo+json", + "file:checksum": "1220f0635521c7b9921c9cc7d832589acdd8ee8598cf1bf2508355818cb1982d9562" }, { + "href": "./BL38_10000_0105.json", "rel": "item", - "href": "./BK37_10000_0301.json", - "type": "application/json", - "file:checksum": "12208cd810ed1ee5a0b6f3d2cf438f1fa3f6c520ec56c45c4b8ac0f7b954176ecbf0" + "type": "application/geo+json", + "file:checksum": "12206afad81de6a172770727dbf2be3b9c9517c2617e08df423b75224d07e55920eb" }, { + "href": "./BL38_10000_0201.json", "rel": "item", - "href": "./BK37_10000_0302.json", - "type": "application/json", - "file:checksum": "12203de5d62ebc15d9737c341fc321659167c85639e1c97687343b145b14515c0173" + "type": "application/geo+json", + "file:checksum": "1220aa0878e4109ec6bdecd18c0a9f364508603bcf63fcfaeed5a2ff75460ffe1fde" }, { + "href": "./BL38_10000_0202.json", "rel": "item", - "href": "./BK37_10000_0303.json", - "type": "application/json", - "file:checksum": "1220013d9cd75dd03510f6300f2925692d3a6cc3d63c29ef8ee7a5f7a487d1d21209" + "type": "application/geo+json", + "file:checksum": "1220e1364ce8c521dcbe13ae0fe63145f609b49728eac0a68c675add7e9e7e32b08d" }, { + "href": "./BL38_10000_0203.json", "rel": "item", - "href": "./BK37_10000_0304.json", - "type": "application/json", - "file:checksum": "12201001a86568766b000675740b320a4fd3be2efa9aa7ab42fa429d8c894d1f3952" + "type": "application/geo+json", + "file:checksum": "1220681ca91684d3f761ae7a4e573ad71b62de30133802d4433dbadb5a7e58e675dc" }, { + "href": "./BL38_10000_0204.json", "rel": "item", - "href": "./BK37_10000_0305.json", - "type": "application/json", - "file:checksum": "12201a9ddf2eddc0a86360b06eebef25f886c3d32f3855ae8e1a88dc860da2ed45b1" + "type": "application/geo+json", + "file:checksum": "1220c641c7fbd6745b2e92063e4d5a3013639aaa48a4c35bf164b209d72f9d3b35b6" }, { + "href": "./BL38_10000_0205.json", "rel": "item", - "href": "./BK37_10000_0401.json", - "type": "application/json", - "file:checksum": "12208318224ced346b48a587f491e0b3f0f4f8c7ea913c27d275bd8302edb784528a" + "type": "application/geo+json", + "file:checksum": "1220b0f628e2ff23d3ba281b8cd6901a9712dc59f549befc64bbf788c268fdcca67b" }, { + "href": "./BL38_10000_0301.json", "rel": "item", - "href": "./BK37_10000_0402.json", - "type": "application/json", - "file:checksum": "122064fb39dac8c0e5872a624b88d43a71433910fd389b809439a4f5bab94c53c9d3" + "type": "application/geo+json", + "file:checksum": "1220977b27f852e4f649c61b2a9be014ca53061070fe0d51a6c7ede0f47b82ecf0ae" }, { + "href": "./BL38_10000_0302.json", "rel": "item", - "href": "./BK37_10000_0403.json", - "type": "application/json", - "file:checksum": "12203f6bb83e71c436779ac89da5e377b0a7e254764b142328fb1d39d55212595555" + "type": "application/geo+json", + "file:checksum": "122096d2406b34bc4b9374e78deed0b0a72d15d7835ddd30caa421c3ae541c5fcd57" }, { + "href": "./BL38_10000_0303.json", "rel": "item", - "href": "./BK37_10000_0404.json", - "type": "application/json", - "file:checksum": "1220d88c49e11dd8d150cf148c8c19a2acf911ae79d4ae1c4229ef86e2c690072ec9" + "type": "application/geo+json", + "file:checksum": "1220f1809655c051f3b1ea2e59df2f838c78875b458c582dfa00ad24e82094b22af8" }, { + "href": "./BL38_10000_0304.json", "rel": "item", - "href": "./BK37_10000_0405.json", - "type": "application/json", - "file:checksum": "1220888717ae66b12eada9f8aa2aa7d4fa5c4903e6d97e4cf37096a4786014c23916" + "type": "application/geo+json", + "file:checksum": "1220169af32dc4ca4b04ef78d3f6aac8a9fe9b5993fe8422b78cad9584d8a3b50a08" }, { + "href": "./BL38_10000_0305.json", "rel": "item", - "href": "./BK38_10000_0101.json", - "type": "application/json", - "file:checksum": "1220e03266104e45541a47707bb0246d7adc5e6d5b4be4a7956feea078a4f5ae22b2" + "type": "application/geo+json", + "file:checksum": "12201cf6689d9d320bf49f25540b9fd979ec5dbdd373eee8f9105a34e865419ed91b" }, { + "href": "./BL38_10000_0401.json", "rel": "item", - "href": "./BK38_10000_0102.json", - "type": "application/json", - "file:checksum": "12208b223e07d88132237bd082239d4505d52d7c13aba464c6275c1b837066a35ce4" + "type": "application/geo+json", + "file:checksum": "1220b6b0fddb2b66baa4b0f86b168a5221e1fa274f518c4d5ba7059e0c01d19f3441" }, { + "href": "./BL38_10000_0402.json", "rel": "item", - "href": "./BK38_10000_0103.json", - "type": "application/json", - "file:checksum": "1220139d2fb30f0f1318bec2210603df9055894af353e96547eaf4c5169fd9a89635" + "type": "application/geo+json", + "file:checksum": "122067a20f4bfae71a86b7556e34a7daaf36ef5e1e0f1beae03fd069b8ac3f1f7b11" }, { + "href": "./BL38_10000_0403.json", "rel": "item", - "href": "./BK38_10000_0104.json", - "type": "application/json", - "file:checksum": "122039e3abc71a31345ff8d480e8ee79fbefa31f69d1968cb62ecc52572dd7612161" + "type": "application/geo+json", + "file:checksum": "12201ce22821778be6ea4f2f4c336fbb79561d69b42c9ca1b7a3416a36981061cc4d" }, { + "href": "./BL38_10000_0404.json", "rel": "item", - "href": "./BK38_10000_0105.json", - "type": "application/json", - "file:checksum": "12200614d3a5d98c1bfdf57ac977310a6bb885c3fbb9c12f152438d8b633837eadb4" + "type": "application/geo+json", + "file:checksum": "1220dc77586af71d21e73d9a66b386b95f97101f74657a7c70e6183908cb248cdd02" }, { + "href": "./BL38_10000_0405.json", "rel": "item", - "href": "./BK38_10000_0201.json", - "type": "application/json", - "file:checksum": "12208299a6ed837165ba2677729f57fe86c2817b828983ff02049451bdfc6eb996d8" + "type": "application/geo+json", + "file:checksum": "1220b3fa5a2d94114c1fc1dc7a09bd6d8552e533e8665c4a162f16a7ba28437c01d0" }, { + "href": "./BL38_10000_0501.json", "rel": "item", - "href": "./BK38_10000_0202.json", - "type": "application/json", - "file:checksum": "1220fd52631113072f42471307ea8398251f6bc25c960456e47cfc86b36247b9bf8c" + "type": "application/geo+json", + "file:checksum": "1220552ff048f7c490e7443eabb7a706953abcfe3500f0a65f237520e9757c0fc792" }, { + "href": "./BL38_10000_0502.json", "rel": "item", - "href": "./BK38_10000_0203.json", - "type": "application/json", - "file:checksum": "1220faad24fb6610a3f0b4697cd1248859ea36244eabeb035b3e216cb8c9f1627ee5" + "type": "application/geo+json", + "file:checksum": "1220fe27e48ec7e96a57cd7ded26c4c4a61e8b70d8cf2ebb5ec1dcc8d2b69fca7a9a" }, { + "href": "./BL38_10000_0503.json", "rel": "item", - "href": "./BK38_10000_0204.json", - "type": "application/json", - "file:checksum": "1220ae24f931de39044e9e2468f353bec53bd6d3a9c866b9ee6dd0b69a9756dc9a77" + "type": "application/geo+json", + "file:checksum": "122069cec694cb23a42b1f66abb97abf5e53cb8e3ff6f36c430c2d3061433e04ca77" }, { + "href": "./BL38_10000_0504.json", "rel": "item", - "href": "./BK38_10000_0205.json", - "type": "application/json", - "file:checksum": "1220d658ac714785daf1549d970a4425e660ac9a5c2e1a0445e07af5182422a3f30a" + "type": "application/geo+json", + "file:checksum": "1220f28d7d81da080e1b3604f2be6a0308154204340c8e84866295d8cf731bbf673f" }, { + "href": "./BL38_10000_0505.json", "rel": "item", - "href": "./BK38_10000_0301.json", - "type": "application/json", - "file:checksum": "1220d6bbe13529e3eb8180e920de52eeca522eea511b9d7033f8ccdc607eaccba43b" + "type": "application/geo+json", + "file:checksum": "1220209aaa9a0b451d5210e925daa06e4d0d781233c3f0e069224c317688369885a8" }, { + "href": "./BL39_10000_0101.json", "rel": "item", - "href": "./BK38_10000_0302.json", - "type": "application/json", - "file:checksum": "12209b9e73bd3de304f58aaaa16988afdcaf3898fc34123f35b85aa762a2ca17c770" + "type": "application/geo+json", + "file:checksum": "12202ceafad9f1111a67b80256e1213f45992c8ca9d60da64943ee55d276a18a8c52" }, { + "href": "./BL39_10000_0102.json", "rel": "item", - "href": "./BK38_10000_0303.json", - "type": "application/json", - "file:checksum": "122016d6f9f93bd1667ab54225036f93131dab9f36f743f4186331d913b9090235a0" + "type": "application/geo+json", + "file:checksum": "122092dbe8e5c6b1109a9c463b456ce33a9f72395ba51453839e9e596fd2dba54a14" }, { + "href": "./BL39_10000_0103.json", "rel": "item", - "href": "./BK38_10000_0304.json", - "type": "application/json", - "file:checksum": "1220484ac3fd262f74514c1af0fe4fcbf220408495f6437c70b1a61eb34152d8f2af" + "type": "application/geo+json", + "file:checksum": "122041cb7ccce7e3939655b305b33fcf5a09732011f5dcdaa295ed2f69f373d2e343" }, { + "href": "./BL39_10000_0104.json", "rel": "item", - "href": "./BK38_10000_0305.json", - "type": "application/json", - "file:checksum": "12205958638121d1b0f1325fedb340b3bda5f817a37f8de1358f337f7d0c9a18f8d6" + "type": "application/geo+json", + "file:checksum": "1220c8d488dec06e932b618377edbd5e97a972c97335c36efe89994a3505a2c6a601" }, { + "href": "./BL39_10000_0105.json", "rel": "item", - "href": "./BK38_10000_0401.json", - "type": "application/json", - "file:checksum": "12204b350ff94a78a7e8a40a8827c6fbfc24ec80e67d9ee6dfe1dfff60e31c732d29" + "type": "application/geo+json", + "file:checksum": "12207577b36aeb14447343fc81251c40947739a50e4493285a4d53158afc6526fc8f" }, { + "href": "./BL39_10000_0201.json", "rel": "item", - "href": "./BK38_10000_0402.json", - "type": "application/json", - "file:checksum": "122054fd6102348ace216d182a6974258ca8dd83de64a2fb7fae30d4be0a335ce2c6" + "type": "application/geo+json", + "file:checksum": "1220f9ff0aeb24257632a6196b00e012016ef996d16afb5504965f9189bbd3e8b762" }, { + "href": "./BL39_10000_0202.json", "rel": "item", - "href": "./BK38_10000_0403.json", - "type": "application/json", - "file:checksum": "12203b3c4424bc16274c0ff19a5599541142b5a0a87bc41b40c801ba0be2e247a8ea" + "type": "application/geo+json", + "file:checksum": "122034119cd3e8cc4d11b474be496a4d59f838242f379438f533b6f29cc45e3a197b" }, { + "href": "./BL39_10000_0203.json", "rel": "item", - "href": "./BK38_10000_0404.json", - "type": "application/json", - "file:checksum": "12202b7be29d8cf4fe1eb2aa8f37dff8e54365d7f8a311ecc2b836130eabbfd7a78b" + "type": "application/geo+json", + "file:checksum": "122022dc625e8cd429ad0a59b0e05b30d4e550eb00ebbef4164ce5cfeed20a5701b6" }, { + "href": "./BL39_10000_0204.json", "rel": "item", - "href": "./BK38_10000_0405.json", - "type": "application/json", - "file:checksum": "1220b66ef6aac10d0ec0d5ce4b377e766eee6654d6c869c6d79cdf13b225fff985b7" + "type": "application/geo+json", + "file:checksum": "1220a0ff1f831cdf3a6fd5f6cd8f2e28c96d9748f9c9a5dc78e18d72160ad28b1386" }, { + "href": "./BL39_10000_0301.json", "rel": "item", - "href": "./BK38_10000_0501.json", - "type": "application/json", - "file:checksum": "1220d673481f1d86a559bb834b5e2bf36f72022a579c4d297b21b575371366aa5937" + "type": "application/geo+json", + "file:checksum": "122090d898d5f4f0c7177d9f0af5aae343410153e4912f47a1dd0e292ede9b794f20" }, { + "href": "./BL39_10000_0302.json", "rel": "item", - "href": "./BK38_10000_0502.json", - "type": "application/json", - "file:checksum": "1220e73633e18b8ef42bc906a68536c5eb2ffe817777c9b38942a1e4f4445b1766dd" + "type": "application/geo+json", + "file:checksum": "122088bc6c9dfdcb59f7f7e52461263f9473a69478b75d31b9dd0aa5ee7009b7f909" }, { + "href": "./BL39_10000_0303.json", "rel": "item", - "href": "./BK38_10000_0503.json", - "type": "application/json", - "file:checksum": "1220df46259cb9bbfd82b6a5006e5cfadfb90f1972577961bb8f3f6c953fb25711e9" + "type": "application/geo+json", + "file:checksum": "1220e98d17b813b2052a039d09b9980a449e3cb030efeb5b38ffabab61990643d2ae" }, { + "href": "./BL39_10000_0401.json", "rel": "item", - "href": "./BK38_10000_0504.json", - "type": "application/json", - "file:checksum": "12205db43abe4fb54067acc4b0ef17cab9c308668164b791a436b7f3a2f4e9e91723" + "type": "application/geo+json", + "file:checksum": "12209d3172a1a5ce6ed58906d938a5006ab981c48a28351dd5e86d74d273bfa6d8c0" }, { + "href": "./BL39_10000_0402.json", "rel": "item", - "href": "./BK38_10000_0505.json", - "type": "application/json", - "file:checksum": "1220d6afa2de2651a72773b6be88e045a580a11e2704546235ad6d377de08cf409f9" + "type": "application/geo+json", + "file:checksum": "1220a8a0b985ce6927b185c7ac2ae02ca6352c426d7d058662d17e66cc551667b1d5" }, { + "href": "./BL39_10000_0501.json", "rel": "item", - "href": "./BK39_10000_0101.json", - "type": "application/json", - "file:checksum": "1220cd3f4252371948505008912f3862d5a0ead35b3f499864158b19ef9689e7e21a" + "type": "application/geo+json", + "file:checksum": "12204738870333fcf5b6af7a0d289f9d1eab728454a599dee78650de77d6599d50bb" }, { + "href": "./BL39_10000_0502.json", "rel": "item", - "href": "./BK39_10000_0102.json", - "type": "application/json", - "file:checksum": "12204cd75c519d93bec5eb3ec6872f8a71f30351706588d50896abb06a27819d9174" + "type": "application/geo+json", + "file:checksum": "1220a5070623918027f3a961a16640883b790f44aacc7215876292d31a75425c1554" }, { + "href": "./BM37_10000_0102.json", "rel": "item", - "href": "./BK39_10000_0103.json", - "type": "application/json", - "file:checksum": "1220f7e3962f849b7646cec2159dab60bdd527536c3a61827418d16f3c6e772935fc" + "type": "application/geo+json", + "file:checksum": "12202d6760b93d46852218ef6417ec66ceba463e4082ef0100eaa64b375e54af1650" }, { + "href": "./BM37_10000_0103.json", "rel": "item", - "href": "./BK39_10000_0201.json", - "type": "application/json", - "file:checksum": "1220bf7edccd74f924f336d1ba6461ee396f1a02f8783e7caadad56d5b94f39ca2f4" + "type": "application/geo+json", + "file:checksum": "1220668212bb90855d9a3d7add136fe50007376e5c2bf54e5bfb3b6e3e7dd44f515e" }, { + "href": "./BM37_10000_0104.json", "rel": "item", - "href": "./BK39_10000_0202.json", - "type": "application/json", - "file:checksum": "1220a13c0f2f54995d6b69145320ab1213fc6fccacd017ff5ccb4ea5638fec0b18ea" + "type": "application/geo+json", + "file:checksum": "12209550f92bd0cb55deb75de6cf305729caa355868a031d30d979842730e05d7594" }, { + "href": "./BM37_10000_0105.json", "rel": "item", - "href": "./BK39_10000_0203.json", - "type": "application/json", - "file:checksum": "1220f2a9cc10ae36c93626a3e9a326d172e00992178933be0025a9770843ebf184bb" + "type": "application/geo+json", + "file:checksum": "1220370dda1774f3c853d676b81d3beca48a31bfc8e73cbbcc6e2e1bdf88f1d5dcce" }, { + "href": "./BM37_10000_0203.json", "rel": "item", - "href": "./BK39_10000_0204.json", - "type": "application/json", - "file:checksum": "1220d5c95fefda8075e06c7da8b301e1a1a3e5e7317ee3476300b6e805d1f76464bf" + "type": "application/geo+json", + "file:checksum": "12207e11694b5ef83ff2b19bc78fedae348db00ecfdb31982f295b1a100af96d905e" }, { + "href": "./BM37_10000_0204.json", "rel": "item", - "href": "./BK39_10000_0301.json", - "type": "application/json", - "file:checksum": "122008e152843bb5ec39a81a6dd7bf7bae2e2a4074e40bf914c0f33d4180f9b99e1c" + "type": "application/geo+json", + "file:checksum": "122093e2187c374ab9ebd08356443d1956316e153d3cc7f17c7ff6ec26c41d186f7b" }, { + "href": "./BM37_10000_0205.json", "rel": "item", - "href": "./BK39_10000_0302.json", - "type": "application/json", - "file:checksum": "1220c40162439a352c57c6914e999fb648601406adb4527d13cc09d06b7312cf89b5" + "type": "application/geo+json", + "file:checksum": "1220f9d989f4816566a896c11d71f6b84dcb34b848c9827fea7a928fb7f52905fb77" }, { + "href": "./BM37_10000_0303.json", "rel": "item", - "href": "./BK39_10000_0303.json", - "type": "application/json", - "file:checksum": "12201f1772ae6d7772f1594400cf1b7b80df9e3791f29c2e7ca1ef2a1aa25a97a87a" + "type": "application/geo+json", + "file:checksum": "12206ec821dcd11ca6e8762725f941b3689dc7ac770f8c8d2b77031c5068a7f0a166" }, { + "href": "./BM37_10000_0304.json", "rel": "item", - "href": "./BK39_10000_0304.json", - "type": "application/json", - "file:checksum": "1220e47ab60b073b03c3cbac39aca4c9db01a59950ac3fc4315f9d191ac5ff02ef61" + "type": "application/geo+json", + "file:checksum": "122041b168c79e456377024a6a07d633e9ba622ad7b87a9715fa5a7ff20b6137cbae" }, { + "href": "./BM37_10000_0305.json", "rel": "item", - "href": "./BK39_10000_0401.json", - "type": "application/json", - "file:checksum": "1220db65cf01f43046a3c38028d1980c5439f6ee3fc718d9fc07e11989172710b24f" + "type": "application/geo+json", + "file:checksum": "1220475b1a555f365e88830b23d591e41e3dd91efec3a4520ceb96f8bca0fdbc0de0" }, { + "href": "./BM37_10000_0403.json", "rel": "item", - "href": "./BK39_10000_0402.json", - "type": "application/json", - "file:checksum": "1220ed4e60a457816a0229a338a62205485fa008f49b68cf27ed7c7fe92ae8a39148" + "type": "application/geo+json", + "file:checksum": "122053a7e60c5e48d9e66f0ae45206793f3fad8f83d2ae56a5911fd7472ffdf489a9" }, { + "href": "./BM37_10000_0404.json", "rel": "item", - "href": "./BK39_10000_0403.json", - "type": "application/json", - "file:checksum": "122092351af45e7e8d341ee6bfbd89346a9ef61922c7ec433e2b468bd14e47109939" + "type": "application/geo+json", + "file:checksum": "1220ddc9993da6b0509cbbe6a1c1dc58b5ce1aa6537ad4cf4dafc1e9964b02a1762f" }, { + "href": "./BM37_10000_0405.json", "rel": "item", - "href": "./BK39_10000_0404.json", - "type": "application/json", - "file:checksum": "122028d5a406076e6de96b925041b96ec41709c2d6b0377cbe4b19784c4f33781a08" + "type": "application/geo+json", + "file:checksum": "1220779a1391ed4033fce587ea663a46146d2ee74ffa27e4a6e932b30d351461cffe" }, { + "href": "./BM37_10000_0504.json", "rel": "item", - "href": "./BK39_10000_0501.json", - "type": "application/json", - "file:checksum": "122086959db3ee69c98c855035c85646560dbb3eb33e1e1e3723388493578c3b26ae" + "type": "application/geo+json", + "file:checksum": "122038623dce3032221fd106ebd3dc737a116cef415b74a98c29e145b7c2f71958f2" }, { + "href": "./BM37_10000_0505.json", "rel": "item", - "href": "./BK39_10000_0502.json", - "type": "application/json", - "file:checksum": "1220b0a328cfb622f0b0858a1fc68b131a059b778a072b72f7c8dda0ceaccd8d40be" + "type": "application/geo+json", + "file:checksum": "1220a24b1193f361f0e1b3f2a9ef5e8529eb5fb45f91ef440dae5b6144c66a5ba028" }, { + "href": "./BM38_10000_0101.json", "rel": "item", - "href": "./BK39_10000_0503.json", - "type": "application/json", - "file:checksum": "122082c0db12709bbc834bb8e4511b40560068a0de3c7ccbfdaf1c9f75d85c353ea2" + "type": "application/geo+json", + "file:checksum": "122034c6ab346b97cb4520adc133c97502a85543833286cb36ff663b3f8b5fc787da" }, { + "href": "./BM38_10000_0102.json", "rel": "item", - "href": "./BL38_10000_0103.json", - "type": "application/json", - "file:checksum": "12205d182c65098663ee5d40bce2e3886cba904934bbd8ccb754227ebd236d01fdc7" + "type": "application/geo+json", + "file:checksum": "12203a708c7e3b424ee0c5b8425ea1d172a8c170177cd4ee2c22c9e23e6a91c4aed5" }, { + "href": "./BM38_10000_0103.json", "rel": "item", - "href": "./BL38_10000_0104.json", - "type": "application/json", - "file:checksum": "12200fa5bdcde2badb81d39ba637a0bd65dddd2ecee09750e680ec3df5f43a703846" + "type": "application/geo+json", + "file:checksum": "12200105606c6bb5da9017fcccd90c9a4f9f78e30b3572c2c3dc740a5cca176df7fb" }, { + "href": "./BM38_10000_0104.json", "rel": "item", - "href": "./BL38_10000_0105.json", - "type": "application/json", - "file:checksum": "1220af9114cc292666618982ee3e0c1f56d7a67a2de296505d15befed86a87a1cafa" + "type": "application/geo+json", + "file:checksum": "122075d43e64bfd9afd47140ce520752ba28bd9246e3501d4b51fc45cfa532bd5890" }, { + "href": "./BM38_10000_0105.json", "rel": "item", - "href": "./BL38_10000_0203.json", - "type": "application/json", - "file:checksum": "122078ed6e81c8b4e30cd88eb1a6835a14e4117c9f37ce3be1cc31a87a50b936b12d" + "type": "application/geo+json", + "file:checksum": "122013603c5c5d33949518c948f9cc76e594d0ad3b33f9c4255885e0e5ae6f24da88" }, { + "href": "./BM38_10000_0201.json", "rel": "item", - "href": "./BL38_10000_0204.json", - "type": "application/json", - "file:checksum": "1220a22bc4d66dc018b44a6f1c33c3c642b6492aee5dc7ba37c3e10703a08a9088b4" + "type": "application/geo+json", + "file:checksum": "122094561796853677ea889fc7ddcb12bca0c70f5aa6f44b59380c5f2ab378977d88" }, { + "href": "./BM38_10000_0202.json", "rel": "item", - "href": "./BL38_10000_0205.json", - "type": "application/json", - "file:checksum": "1220eaa399758c40d2bdae4d47d7ebb87e894d5fae8f24b42e97eeca30d6b426142a" + "type": "application/geo+json", + "file:checksum": "1220035cc0ce5cc40683dcf0e596277cdd22f307483b4572e8906c2d9c533ccb2936" }, { + "href": "./BM38_10000_0203.json", "rel": "item", - "href": "./BL38_10000_0302.json", - "type": "application/json", - "file:checksum": "1220c192456f645fbe961a16ae1cd36339b32fadc15d6ebf2fc377c64a89f5077aea" + "type": "application/geo+json", + "file:checksum": "12202c5267ed24ae813ed4e9dc22ecc163f80a1d265abbfc09b5522ac943a53a95cc" }, { + "href": "./BM38_10000_0204.json", "rel": "item", - "href": "./BL38_10000_0303.json", - "type": "application/json", - "file:checksum": "122087f33340f591703cb54f410a5fdb4148b88b08c43390aa279be3d77fa12fb2e4" + "type": "application/geo+json", + "file:checksum": "1220bfae802cd88d9a3ca9f74690cd2907802e962a49e485d31ebf0605167390ce86" }, { + "href": "./BM38_10000_0205.json", "rel": "item", - "href": "./BL38_10000_0304.json", - "type": "application/json", - "file:checksum": "1220a17e5bd4666fb0e81a7125b172adc717063ef3c20f8600d2812cce5c7d8bceec" + "type": "application/geo+json", + "file:checksum": "122064d29660fa0951642a958db0d3ab15939d8aa637c03f7cb2ae1ee689529783b2" }, { + "href": "./BM38_10000_0301.json", "rel": "item", - "href": "./BL38_10000_0305.json", - "type": "application/json", - "file:checksum": "12203d16d79e98b553d82ff5d4f6e369ad54c1d29f55b0561d4fae48583afe67660f" + "type": "application/geo+json", + "file:checksum": "1220315663d3d4f8e9eff7d938af638690dbd501d94d520db20ee1b4a19fd824d8df" }, { + "href": "./BM38_10000_0302.json", "rel": "item", - "href": "./BL38_10000_0405.json", - "type": "application/json", - "file:checksum": "1220962e9ec24b5610bf1f8858ad83c9f78b724a46e4df38f2aab64ea2363094655e" + "type": "application/geo+json", + "file:checksum": "1220cc6e89b39811b8e6cf7d8a0ae760427a285245baf10187f8da8746692ccf6174" }, { + "href": "./BM38_10000_0303.json", "rel": "item", - "href": "./BL39_10000_0101.json", - "type": "application/json", - "file:checksum": "122028cc17bbe7af138b4854ccf4ebf19d152714c5e5741c2ffe47d8195e93c742d4" + "type": "application/geo+json", + "file:checksum": "122017508c4ba015379e196e7e0e71d04a52cd0f7c410b83861f3d42d9617f167b92" }, { + "href": "./BM38_10000_0401.json", "rel": "item", - "href": "./BL39_10000_0102.json", - "type": "application/json", - "file:checksum": "1220995bcd12758c3bc7f3c1ae973301e5ea0f30c7412d2549a8cb5b0b5abedfa30b" + "type": "application/geo+json", + "file:checksum": "1220e662cb36b90b3926ca4d3dc1c12166e78e9f081202689799d3e38d86286e2e27" }, { + "href": "./BM38_10000_0402.json", "rel": "item", - "href": "./BL39_10000_0201.json", - "type": "application/json", - "file:checksum": "1220099a66b40b7fcff9ca717e6ca08d947cdaca93eb204d19f1c8a1594682f7fddd" + "type": "application/geo+json", + "file:checksum": "1220b965077dcfbad2100c3564de0e2cfb0f72aa1ae5ceb8ccf3c0b8e1e3ac8034a4" }, { + "href": "./BM38_10000_0403.json", "rel": "item", - "href": "./BL39_10000_0202.json", - "type": "application/json", - "file:checksum": "122049345c3218619077d4575924e3a886f7432ad409016f8394b996180757c8948d" + "type": "application/geo+json", + "file:checksum": "1220d35afdf222fafff9bc908735600826d985b0bd56430ca4038248be9502b6649a" }, { + "href": "./BM38_10000_0501.json", "rel": "item", - "href": "./BL39_10000_0203.json", - "type": "application/json", - "file:checksum": "12201249d1e9b332334257a48ba98a254f911f6d51b0e5e01d5110fd915c4f63cedc" + "type": "application/geo+json", + "file:checksum": "1220627504fe1b70a17240da78454ebb391295a5734d8f63068ec00ff199bd8ef0d9" }, { + "href": "./BM38_10000_0502.json", "rel": "item", - "href": "./BL39_10000_0301.json", - "type": "application/json", - "file:checksum": "122095162eddfaeff995111c5205a699b96901a305b698d46d23c236c27ae66e7a43" + "type": "application/geo+json", + "file:checksum": "12204fef2aff39c953f0638ea02b2ee898c348ddc250166e9d603286c385cc4a9ac6" }, { + "href": "./BM39_10000_0101.json", "rel": "item", - "href": "./BL39_10000_0302.json", - "type": "application/json", - "file:checksum": "1220709b7e56f5d478173965054e171e6a67d984e4312a08b4ce6666ce6349ec4572" + "type": "application/geo+json", + "file:checksum": "122019dd996a8a3c672b3f9a6c2a20ac493c692983f760af0d61a476c21d5c1058de" }, { + "href": "./BM39_10000_0102.json", "rel": "item", - "href": "./BL39_10000_0401.json", - "type": "application/json", - "file:checksum": "1220d97f516db69cbf5f61c372e61c04a748dafcbe33d788d9711096c8f5ab0c9df5" + "type": "application/geo+json", + "file:checksum": "122050848469c09b960ec07964ca10b6c0fcbae80e73c008cf13d26735940de76397" } ], "providers": [ @@ -1276,18 +2374,21 @@ "linz:geospatial_category": "dsm", "linz:region": "hawkes-bay", "linz:security_classification": "unclassified", + "created": "2024-10-21T00:03:14Z", + "updated": "2024-10-21T00:03:14Z", "extent": { - "spatial": { "bbox": [[176.0260349, -40.0750063, 177.193365, -38.9634771]] }, - "temporal": { "interval": [["2023-09-19T12:00:00Z", "2023-12-20T11:00:00Z"]] } + "spatial": { "bbox": [[176.0260349, -40.4739342, 178.0283496, -38.7469279]] }, + "temporal": { "interval": [["2023-11-19T11:00:00Z", "2024-04-26T12:00:00Z"]] } }, "assets": { "capture_area": { "href": "./capture-area.geojson", "title": "Capture area", + "description": "Boundary of the total capture area for this collection. Excludes nodata areas in the source data. Geometries are simplified.", "type": "application/geo+json", "roles": ["metadata"], - "file:checksum": "1220eea49e393d015b6cb61e941beb14372f72fb13f9823a7f34f1dcb96ca62e807d", - "file:size": 79370 + "file:checksum": "12200b085bcda2a54ec2446dc354c5a8725ebd6f19bff41fc19f3776dcc59d9ec600", + "file:size": 665215 } }, "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"]