From ce55d89e412c06cff1e4c48c9d3c6c4a29b3425e Mon Sep 17 00:00:00 2001 From: Occumed79 Date: Tue, 28 Jul 2026 23:24:00 -0700 Subject: [PATCH 1/8] Add forced split region audit reporter --- scripts/report-forced-split-regions.mjs | 67 +++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 scripts/report-forced-split-regions.mjs diff --git a/scripts/report-forced-split-regions.mjs b/scripts/report-forced-split-regions.mjs new file mode 100644 index 00000000..11be40c2 --- /dev/null +++ b/scripts/report-forced-split-regions.mjs @@ -0,0 +1,67 @@ +#!/usr/bin/env node + +import fs from 'node:fs/promises'; + +const [planPath = 'audit/world-plan.json', jsonPath = 'audit/forced-split-regions.json', markdownPath = 'audit/forced-split-regions.md'] = process.argv.slice(2); +const plan = JSON.parse(await fs.readFile(planPath, 'utf8')); +const grouped = new Map(); + +for (const region of plan.include || []) { + if (!region.extract_bbox || !region.source_region_id || region.source_region_id === region.id) continue; + const key = region.source_region_id; + const group = grouped.get(key) || { + source_region_id: key, + continent: region.continent, + source_size_bytes: region.source_size_bytes, + child_count: 0, + children: [] + }; + group.child_count += 1; + group.children.push({ + id: region.id, + asset_name: region.asset_name, + extract_bbox: region.extract_bbox, + bounds: [region.west, region.south, region.east, region.north] + }); + grouped.set(key, group); +} + +const families = [...grouped.values()] + .map((group) => ({ ...group, children: group.children.sort((a, b) => a.id.localeCompare(b.id)) })) + .sort((a, b) => (b.source_size_bytes || 0) - (a.source_size_bytes || 0) || a.source_region_id.localeCompare(b.source_region_id)); + +const report = { + generated_at: new Date().toISOString(), + direct_split_limit_bytes: 850_000_000, + forced_split_family_count: families.length, + forced_split_child_count: families.reduce((sum, family) => sum + family.child_count, 0), + families +}; + +const formatGiB = (bytes) => Number.isFinite(bytes) ? `${(bytes / 1024 ** 3).toFixed(2)} GiB` : 'unknown'; +const lines = [ + '# Forced Grid-Split Region Audit', + '', + `Generated: ${report.generated_at}`, + '', + `- Forced-split parent families: **${report.forced_split_family_count}**`, + `- Generated child archives: **${report.forced_split_child_count}**`, + `- Split threshold: **${formatGiB(report.direct_split_limit_bytes)}**`, + '', + '| Parent source region | Continent | Source size | Child archives |', + '|---|---:|---:|---:|', + ...families.map((family) => `| \`${family.source_region_id}\` | ${family.continent || ''} | ${formatGiB(family.source_size_bytes)} | ${family.child_count} |`), + '', + '## Child assets by parent', + '' +]; +for (const family of families) { + lines.push(`### ${family.source_region_id}`, '', `Source size: ${formatGiB(family.source_size_bytes)} `, `Children: ${family.child_count}`, ''); + for (const child of family.children) lines.push(`- \`${child.asset_name}\` — bbox \`${child.extract_bbox}\``); + lines.push(''); +} + +await fs.mkdir('audit', { recursive: true }); +await fs.writeFile(jsonPath, `${JSON.stringify(report, null, 2)}\n`); +await fs.writeFile(markdownPath, `${lines.join('\n')}\n`); +console.log(`Identified ${report.forced_split_family_count} forced-split parent families and ${report.forced_split_child_count} child archives.`); From d45555d1ebd494806d5b3455ba00fb564d30406c Mon Sep 17 00:00:00 2001 From: Occumed79 Date: Tue, 28 Jul 2026 23:24:22 -0700 Subject: [PATCH 2/8] Run forced split region audit --- .../workflows/audit-forced-split-regions.yml | 61 +++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 .github/workflows/audit-forced-split-regions.yml diff --git a/.github/workflows/audit-forced-split-regions.yml b/.github/workflows/audit-forced-split-regions.yml new file mode 100644 index 00000000..563788b6 --- /dev/null +++ b/.github/workflows/audit-forced-split-regions.yml @@ -0,0 +1,61 @@ +name: Audit Forced Grid-Split Regions + +on: + push: + branches: + - audit/identify-forced-split-regions + paths-ignore: + - audit/forced-split-regions.json + - audit/forced-split-regions.md + - audit/world-plan.json + workflow_dispatch: + +permissions: + contents: write + +jobs: + audit: + runs-on: ubuntu-latest + timeout-minutes: 30 + steps: + - uses: actions/checkout@v4 + with: + ref: audit/identify-forced-split-regions + + - uses: actions/setup-node@v4 + with: + node-version: 24 + + - name: Generate current size-aware world plan + run: | + mkdir -p audit + node scripts/plan-world-shards.mjs --scope all > audit/world-plan.json + + - name: Identify forced grid-split families + run: | + node scripts/report-forced-split-regions.mjs \ + audit/world-plan.json \ + audit/forced-split-regions.json \ + audit/forced-split-regions.md + cat audit/forced-split-regions.md + + - name: Commit audit results + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add audit/world-plan.json audit/forced-split-regions.json audit/forced-split-regions.md + if git diff --cached --quiet; then + echo "Audit results unchanged." + else + git commit -m "Record forced split region audit" + git push origin HEAD:audit/identify-forced-split-regions + fi + + - uses: actions/upload-artifact@v4 + with: + name: forced-split-region-audit + path: | + audit/forced-split-regions.json + audit/forced-split-regions.md + audit/world-plan.json + retention-days: 30 From 71123324f0469948f0bf743584da76be1bf38ad3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 06:25:16 +0000 Subject: [PATCH 3/8] Record forced split region audit --- audit/forced-split-regions.json | 2072 ++++++ audit/forced-split-regions.md | 301 + audit/world-plan.json | 10932 ++++++++++++++++++++++++++++++ 3 files changed, 13305 insertions(+) create mode 100644 audit/forced-split-regions.json create mode 100644 audit/forced-split-regions.md create mode 100644 audit/world-plan.json diff --git a/audit/forced-split-regions.json b/audit/forced-split-regions.json new file mode 100644 index 00000000..7bf8d970 --- /dev/null +++ b/audit/forced-split-regions.json @@ -0,0 +1,2072 @@ +{ + "generated_at": "2026-07-29T06:25:16.112Z", + "direct_split_limit_bytes": 850000000, + "forced_split_family_count": 16, + "forced_split_child_count": 176, + "families": [ + { + "source_region_id": "us", + "continent": "north-america", + "source_size_bytes": 12048136856, + "child_count": 32, + "children": [ + { + "id": "us--r1-c1-s1", + "asset_name": "occumed-us--r1-c1-s1.pmtiles", + "extract_bbox": "170.9033,15.92097,180,30.18784", + "bounds": [ + 170.9033, + 15.92097, + 180, + 30.18784 + ] + }, + { + "id": "us--r1-c1-s2", + "asset_name": "occumed-us--r1-c1-s2.pmtiles", + "extract_bbox": "-180,15.92097,-171.636566,30.18784", + "bounds": [ + -180, + 15.92097, + -171.636566, + 30.18784 + ] + }, + { + "id": "us--r1-c2", + "asset_name": "occumed-us--r1-c2.pmtiles", + "extract_bbox": "-171.636566,15.92097,-154.176431,30.18784", + "bounds": [ + -171.636566, + 15.92097, + -154.176431, + 30.18784 + ] + }, + { + "id": "us--r1-c3", + "asset_name": "occumed-us--r1-c3.pmtiles", + "extract_bbox": "-154.176431,15.92097,-136.716297,30.18784", + "bounds": [ + -154.176431, + 15.92097, + -136.716297, + 30.18784 + ] + }, + { + "id": "us--r1-c4", + "asset_name": "occumed-us--r1-c4.pmtiles", + "extract_bbox": "-136.716297,15.92097,-119.256163,30.18784", + "bounds": [ + -136.716297, + 15.92097, + -119.256163, + 30.18784 + ] + }, + { + "id": "us--r1-c5", + "asset_name": "occumed-us--r1-c5.pmtiles", + "extract_bbox": "-119.256163,15.92097,-101.796029,30.18784", + "bounds": [ + -119.256163, + 15.92097, + -101.796029, + 30.18784 + ] + }, + { + "id": "us--r1-c6", + "asset_name": "occumed-us--r1-c6.pmtiles", + "extract_bbox": "-101.796029,15.92097,-84.335894,30.18784", + "bounds": [ + -101.796029, + 15.92097, + -84.335894, + 30.18784 + ] + }, + { + "id": "us--r1-c7", + "asset_name": "occumed-us--r1-c7.pmtiles", + "extract_bbox": "-84.335894,15.92097,-66.87576,30.18784", + "bounds": [ + -84.335894, + 15.92097, + -66.87576, + 30.18784 + ] + }, + { + "id": "us--r2-c1-s1", + "asset_name": "occumed-us--r2-c1-s1.pmtiles", + "extract_bbox": "170.9033,30.18784,180,44.45471", + "bounds": [ + 170.9033, + 30.18784, + 180, + 44.45471 + ] + }, + { + "id": "us--r2-c1-s2", + "asset_name": "occumed-us--r2-c1-s2.pmtiles", + "extract_bbox": "-180,30.18784,-171.636566,44.45471", + "bounds": [ + -180, + 30.18784, + -171.636566, + 44.45471 + ] + }, + { + "id": "us--r2-c2", + "asset_name": "occumed-us--r2-c2.pmtiles", + "extract_bbox": "-171.636566,30.18784,-154.176431,44.45471", + "bounds": [ + -171.636566, + 30.18784, + -154.176431, + 44.45471 + ] + }, + { + "id": "us--r2-c3", + "asset_name": "occumed-us--r2-c3.pmtiles", + "extract_bbox": "-154.176431,30.18784,-136.716297,44.45471", + "bounds": [ + -154.176431, + 30.18784, + -136.716297, + 44.45471 + ] + }, + { + "id": "us--r2-c4", + "asset_name": "occumed-us--r2-c4.pmtiles", + "extract_bbox": "-136.716297,30.18784,-119.256163,44.45471", + "bounds": [ + -136.716297, + 30.18784, + -119.256163, + 44.45471 + ] + }, + { + "id": "us--r2-c5", + "asset_name": "occumed-us--r2-c5.pmtiles", + "extract_bbox": "-119.256163,30.18784,-101.796029,44.45471", + "bounds": [ + -119.256163, + 30.18784, + -101.796029, + 44.45471 + ] + }, + { + "id": "us--r2-c6", + "asset_name": "occumed-us--r2-c6.pmtiles", + "extract_bbox": "-101.796029,30.18784,-84.335894,44.45471", + "bounds": [ + -101.796029, + 30.18784, + -84.335894, + 44.45471 + ] + }, + { + "id": "us--r2-c7", + "asset_name": "occumed-us--r2-c7.pmtiles", + "extract_bbox": "-84.335894,30.18784,-66.87576,44.45471", + "bounds": [ + -84.335894, + 30.18784, + -66.87576, + 44.45471 + ] + }, + { + "id": "us--r3-c1-s1", + "asset_name": "occumed-us--r3-c1-s1.pmtiles", + "extract_bbox": "170.9033,44.45471,180,58.72158", + "bounds": [ + 170.9033, + 44.45471, + 180, + 58.72158 + ] + }, + { + "id": "us--r3-c1-s2", + "asset_name": "occumed-us--r3-c1-s2.pmtiles", + "extract_bbox": "-180,44.45471,-171.636566,58.72158", + "bounds": [ + -180, + 44.45471, + -171.636566, + 58.72158 + ] + }, + { + "id": "us--r3-c2", + "asset_name": "occumed-us--r3-c2.pmtiles", + "extract_bbox": "-171.636566,44.45471,-154.176431,58.72158", + "bounds": [ + -171.636566, + 44.45471, + -154.176431, + 58.72158 + ] + }, + { + "id": "us--r3-c3", + "asset_name": "occumed-us--r3-c3.pmtiles", + "extract_bbox": "-154.176431,44.45471,-136.716297,58.72158", + "bounds": [ + -154.176431, + 44.45471, + -136.716297, + 58.72158 + ] + }, + { + "id": "us--r3-c4", + "asset_name": "occumed-us--r3-c4.pmtiles", + "extract_bbox": "-136.716297,44.45471,-119.256163,58.72158", + "bounds": [ + -136.716297, + 44.45471, + -119.256163, + 58.72158 + ] + }, + { + "id": "us--r3-c5", + "asset_name": "occumed-us--r3-c5.pmtiles", + "extract_bbox": "-119.256163,44.45471,-101.796029,58.72158", + "bounds": [ + -119.256163, + 44.45471, + -101.796029, + 58.72158 + ] + }, + { + "id": "us--r3-c6", + "asset_name": "occumed-us--r3-c6.pmtiles", + "extract_bbox": "-101.796029,44.45471,-84.335894,58.72158", + "bounds": [ + -101.796029, + 44.45471, + -84.335894, + 58.72158 + ] + }, + { + "id": "us--r3-c7", + "asset_name": "occumed-us--r3-c7.pmtiles", + "extract_bbox": "-84.335894,44.45471,-66.87576,58.72158", + "bounds": [ + -84.335894, + 44.45471, + -66.87576, + 58.72158 + ] + }, + { + "id": "us--r4-c1-s1", + "asset_name": "occumed-us--r4-c1-s1.pmtiles", + "extract_bbox": "170.9033,58.72158,180,72.98845", + "bounds": [ + 170.9033, + 58.72158, + 180, + 72.98845 + ] + }, + { + "id": "us--r4-c1-s2", + "asset_name": "occumed-us--r4-c1-s2.pmtiles", + "extract_bbox": "-180,58.72158,-171.636566,72.98845", + "bounds": [ + -180, + 58.72158, + -171.636566, + 72.98845 + ] + }, + { + "id": "us--r4-c2", + "asset_name": "occumed-us--r4-c2.pmtiles", + "extract_bbox": "-171.636566,58.72158,-154.176431,72.98845", + "bounds": [ + -171.636566, + 58.72158, + -154.176431, + 72.98845 + ] + }, + { + "id": "us--r4-c3", + "asset_name": "occumed-us--r4-c3.pmtiles", + "extract_bbox": "-154.176431,58.72158,-136.716297,72.98845", + "bounds": [ + -154.176431, + 58.72158, + -136.716297, + 72.98845 + ] + }, + { + "id": "us--r4-c4", + "asset_name": "occumed-us--r4-c4.pmtiles", + "extract_bbox": "-136.716297,58.72158,-119.256163,72.98845", + "bounds": [ + -136.716297, + 58.72158, + -119.256163, + 72.98845 + ] + }, + { + "id": "us--r4-c5", + "asset_name": "occumed-us--r4-c5.pmtiles", + "extract_bbox": "-119.256163,58.72158,-101.796029,72.98845", + "bounds": [ + -119.256163, + 58.72158, + -101.796029, + 72.98845 + ] + }, + { + "id": "us--r4-c6", + "asset_name": "occumed-us--r4-c6.pmtiles", + "extract_bbox": "-101.796029,58.72158,-84.335894,72.98845", + "bounds": [ + -101.796029, + 58.72158, + -84.335894, + 72.98845 + ] + }, + { + "id": "us--r4-c7", + "asset_name": "occumed-us--r4-c7.pmtiles", + "extract_bbox": "-84.335894,58.72158,-66.87576,72.98845", + "bounds": [ + -84.335894, + 58.72158, + -66.87576, + 72.98845 + ] + } + ] + }, + { + "source_region_id": "dach", + "continent": "europe", + "source_size_bytes": 6183091366, + "child_count": 25, + "children": [ + { + "id": "dach--r1-c1", + "asset_name": "occumed-dach--r1-c1.pmtiles", + "extract_bbox": "5.864417,45.81617,8.12408,47.68249", + "bounds": [ + 5.864417, + 45.81617, + 8.12408, + 47.68249 + ] + }, + { + "id": "dach--r1-c2", + "asset_name": "occumed-dach--r1-c2.pmtiles", + "extract_bbox": "8.12408,45.81617,10.383742,47.68249", + "bounds": [ + 8.12408, + 45.81617, + 10.383742, + 47.68249 + ] + }, + { + "id": "dach--r1-c3", + "asset_name": "occumed-dach--r1-c3.pmtiles", + "extract_bbox": "10.383742,45.81617,12.643405,47.68249", + "bounds": [ + 10.383742, + 45.81617, + 12.643405, + 47.68249 + ] + }, + { + "id": "dach--r1-c4", + "asset_name": "occumed-dach--r1-c4.pmtiles", + "extract_bbox": "12.643405,45.81617,14.903067,47.68249", + "bounds": [ + 12.643405, + 45.81617, + 14.903067, + 47.68249 + ] + }, + { + "id": "dach--r1-c5", + "asset_name": "occumed-dach--r1-c5.pmtiles", + "extract_bbox": "14.903067,45.81617,17.16273,47.68249", + "bounds": [ + 14.903067, + 45.81617, + 17.16273, + 47.68249 + ] + }, + { + "id": "dach--r2-c1", + "asset_name": "occumed-dach--r2-c1.pmtiles", + "extract_bbox": "5.864417,47.68249,8.12408,49.54881", + "bounds": [ + 5.864417, + 47.68249, + 8.12408, + 49.54881 + ] + }, + { + "id": "dach--r2-c2", + "asset_name": "occumed-dach--r2-c2.pmtiles", + "extract_bbox": "8.12408,47.68249,10.383742,49.54881", + "bounds": [ + 8.12408, + 47.68249, + 10.383742, + 49.54881 + ] + }, + { + "id": "dach--r2-c3", + "asset_name": "occumed-dach--r2-c3.pmtiles", + "extract_bbox": "10.383742,47.68249,12.643405,49.54881", + "bounds": [ + 10.383742, + 47.68249, + 12.643405, + 49.54881 + ] + }, + { + "id": "dach--r2-c4", + "asset_name": "occumed-dach--r2-c4.pmtiles", + "extract_bbox": "12.643405,47.68249,14.903067,49.54881", + "bounds": [ + 12.643405, + 47.68249, + 14.903067, + 49.54881 + ] + }, + { + "id": "dach--r2-c5", + "asset_name": "occumed-dach--r2-c5.pmtiles", + "extract_bbox": "14.903067,47.68249,17.16273,49.54881", + "bounds": [ + 14.903067, + 47.68249, + 17.16273, + 49.54881 + ] + }, + { + "id": "dach--r3-c1", + "asset_name": "occumed-dach--r3-c1.pmtiles", + "extract_bbox": "5.864417,49.54881,8.12408,51.41513", + "bounds": [ + 5.864417, + 49.54881, + 8.12408, + 51.41513 + ] + }, + { + "id": "dach--r3-c2", + "asset_name": "occumed-dach--r3-c2.pmtiles", + "extract_bbox": "8.12408,49.54881,10.383742,51.41513", + "bounds": [ + 8.12408, + 49.54881, + 10.383742, + 51.41513 + ] + }, + { + "id": "dach--r3-c3", + "asset_name": "occumed-dach--r3-c3.pmtiles", + "extract_bbox": "10.383742,49.54881,12.643405,51.41513", + "bounds": [ + 10.383742, + 49.54881, + 12.643405, + 51.41513 + ] + }, + { + "id": "dach--r3-c4", + "asset_name": "occumed-dach--r3-c4.pmtiles", + "extract_bbox": "12.643405,49.54881,14.903067,51.41513", + "bounds": [ + 12.643405, + 49.54881, + 14.903067, + 51.41513 + ] + }, + { + "id": "dach--r3-c5", + "asset_name": "occumed-dach--r3-c5.pmtiles", + "extract_bbox": "14.903067,49.54881,17.16273,51.41513", + "bounds": [ + 14.903067, + 49.54881, + 17.16273, + 51.41513 + ] + }, + { + "id": "dach--r4-c1", + "asset_name": "occumed-dach--r4-c1.pmtiles", + "extract_bbox": "5.864417,51.41513,8.12408,53.28145", + "bounds": [ + 5.864417, + 51.41513, + 8.12408, + 53.28145 + ] + }, + { + "id": "dach--r4-c2", + "asset_name": "occumed-dach--r4-c2.pmtiles", + "extract_bbox": "8.12408,51.41513,10.383742,53.28145", + "bounds": [ + 8.12408, + 51.41513, + 10.383742, + 53.28145 + ] + }, + { + "id": "dach--r4-c3", + "asset_name": "occumed-dach--r4-c3.pmtiles", + "extract_bbox": "10.383742,51.41513,12.643405,53.28145", + "bounds": [ + 10.383742, + 51.41513, + 12.643405, + 53.28145 + ] + }, + { + "id": "dach--r4-c4", + "asset_name": "occumed-dach--r4-c4.pmtiles", + "extract_bbox": "12.643405,51.41513,14.903067,53.28145", + "bounds": [ + 12.643405, + 51.41513, + 14.903067, + 53.28145 + ] + }, + { + "id": "dach--r4-c5", + "asset_name": "occumed-dach--r4-c5.pmtiles", + "extract_bbox": "14.903067,51.41513,17.16273,53.28145", + "bounds": [ + 14.903067, + 51.41513, + 17.16273, + 53.28145 + ] + }, + { + "id": "dach--r5-c1", + "asset_name": "occumed-dach--r5-c1.pmtiles", + "extract_bbox": "5.864417,53.28145,8.12408,55.14777", + "bounds": [ + 5.864417, + 53.28145, + 8.12408, + 55.14777 + ] + }, + { + "id": "dach--r5-c2", + "asset_name": "occumed-dach--r5-c2.pmtiles", + "extract_bbox": "8.12408,53.28145,10.383742,55.14777", + "bounds": [ + 8.12408, + 53.28145, + 10.383742, + 55.14777 + ] + }, + { + "id": "dach--r5-c3", + "asset_name": "occumed-dach--r5-c3.pmtiles", + "extract_bbox": "10.383742,53.28145,12.643405,55.14777", + "bounds": [ + 10.383742, + 53.28145, + 12.643405, + 55.14777 + ] + }, + { + "id": "dach--r5-c4", + "asset_name": "occumed-dach--r5-c4.pmtiles", + "extract_bbox": "12.643405,53.28145,14.903067,55.14777", + "bounds": [ + 12.643405, + 53.28145, + 14.903067, + 55.14777 + ] + }, + { + "id": "dach--r5-c5", + "asset_name": "occumed-dach--r5-c5.pmtiles", + "extract_bbox": "14.903067,53.28145,17.16273,55.14777", + "bounds": [ + 14.903067, + 53.28145, + 17.16273, + 55.14777 + ] + } + ] + }, + { + "source_region_id": "us-south", + "continent": "north-america", + "source_size_bytes": 4093737233, + "child_count": 18, + "children": [ + { + "id": "us-south--r1-c1", + "asset_name": "occumed-us-south--r1-c1.pmtiles", + "extract_bbox": "-106.6494,24.20031,-100.792802,29.682327", + "bounds": [ + -106.6494, + 24.20031, + -100.792802, + 29.682327 + ] + }, + { + "id": "us-south--r1-c2", + "asset_name": "occumed-us-south--r1-c2.pmtiles", + "extract_bbox": "-100.792802,24.20031,-94.936203,29.682327", + "bounds": [ + -100.792802, + 24.20031, + -94.936203, + 29.682327 + ] + }, + { + "id": "us-south--r1-c3", + "asset_name": "occumed-us-south--r1-c3.pmtiles", + "extract_bbox": "-94.936203,24.20031,-89.079605,29.682327", + "bounds": [ + -94.936203, + 24.20031, + -89.079605, + 29.682327 + ] + }, + { + "id": "us-south--r1-c4", + "asset_name": "occumed-us-south--r1-c4.pmtiles", + "extract_bbox": "-89.079605,24.20031,-83.223007,29.682327", + "bounds": [ + -89.079605, + 24.20031, + -83.223007, + 29.682327 + ] + }, + { + "id": "us-south--r1-c5", + "asset_name": "occumed-us-south--r1-c5.pmtiles", + "extract_bbox": "-83.223007,24.20031,-77.366408,29.682327", + "bounds": [ + -83.223007, + 24.20031, + -77.366408, + 29.682327 + ] + }, + { + "id": "us-south--r1-c6", + "asset_name": "occumed-us-south--r1-c6.pmtiles", + "extract_bbox": "-77.366408,24.20031,-71.50981,29.682327", + "bounds": [ + -77.366408, + 24.20031, + -71.50981, + 29.682327 + ] + }, + { + "id": "us-south--r2-c1", + "asset_name": "occumed-us-south--r2-c1.pmtiles", + "extract_bbox": "-106.6494,29.682327,-100.792802,35.164343", + "bounds": [ + -106.6494, + 29.682327, + -100.792802, + 35.164343 + ] + }, + { + "id": "us-south--r2-c2", + "asset_name": "occumed-us-south--r2-c2.pmtiles", + "extract_bbox": "-100.792802,29.682327,-94.936203,35.164343", + "bounds": [ + -100.792802, + 29.682327, + -94.936203, + 35.164343 + ] + }, + { + "id": "us-south--r2-c3", + "asset_name": "occumed-us-south--r2-c3.pmtiles", + "extract_bbox": "-94.936203,29.682327,-89.079605,35.164343", + "bounds": [ + -94.936203, + 29.682327, + -89.079605, + 35.164343 + ] + }, + { + "id": "us-south--r2-c4", + "asset_name": "occumed-us-south--r2-c4.pmtiles", + "extract_bbox": "-89.079605,29.682327,-83.223007,35.164343", + "bounds": [ + -89.079605, + 29.682327, + -83.223007, + 35.164343 + ] + }, + { + "id": "us-south--r2-c5", + "asset_name": "occumed-us-south--r2-c5.pmtiles", + "extract_bbox": "-83.223007,29.682327,-77.366408,35.164343", + "bounds": [ + -83.223007, + 29.682327, + -77.366408, + 35.164343 + ] + }, + { + "id": "us-south--r2-c6", + "asset_name": "occumed-us-south--r2-c6.pmtiles", + "extract_bbox": "-77.366408,29.682327,-71.50981,35.164343", + "bounds": [ + -77.366408, + 29.682327, + -71.50981, + 35.164343 + ] + }, + { + "id": "us-south--r3-c1", + "asset_name": "occumed-us-south--r3-c1.pmtiles", + "extract_bbox": "-106.6494,35.164343,-100.792802,40.64636", + "bounds": [ + -106.6494, + 35.164343, + -100.792802, + 40.64636 + ] + }, + { + "id": "us-south--r3-c2", + "asset_name": "occumed-us-south--r3-c2.pmtiles", + "extract_bbox": "-100.792802,35.164343,-94.936203,40.64636", + "bounds": [ + -100.792802, + 35.164343, + -94.936203, + 40.64636 + ] + }, + { + "id": "us-south--r3-c3", + "asset_name": "occumed-us-south--r3-c3.pmtiles", + "extract_bbox": "-94.936203,35.164343,-89.079605,40.64636", + "bounds": [ + -94.936203, + 35.164343, + -89.079605, + 40.64636 + ] + }, + { + "id": "us-south--r3-c4", + "asset_name": "occumed-us-south--r3-c4.pmtiles", + "extract_bbox": "-89.079605,35.164343,-83.223007,40.64636", + "bounds": [ + -89.079605, + 35.164343, + -83.223007, + 40.64636 + ] + }, + { + "id": "us-south--r3-c5", + "asset_name": "occumed-us-south--r3-c5.pmtiles", + "extract_bbox": "-83.223007,35.164343,-77.366408,40.64636", + "bounds": [ + -83.223007, + 35.164343, + -77.366408, + 40.64636 + ] + }, + { + "id": "us-south--r3-c6", + "asset_name": "occumed-us-south--r3-c6.pmtiles", + "extract_bbox": "-77.366408,35.164343,-71.50981,40.64636", + "bounds": [ + -77.366408, + 35.164343, + -71.50981, + 40.64636 + ] + } + ] + }, + { + "source_region_id": "sea", + "continent": "asia", + "source_size_bytes": 3634443322, + "child_count": 15, + "children": [ + { + "id": "sea--r1-c1", + "asset_name": "occumed-sea--r1-c1.pmtiles", + "extract_bbox": "90.65133,-11.60655,100.725404,1.78722", + "bounds": [ + 90.65133, + -11.60655, + 100.725404, + 1.78722 + ] + }, + { + "id": "sea--r1-c2", + "asset_name": "occumed-sea--r1-c2.pmtiles", + "extract_bbox": "100.725404,-11.60655,110.799478,1.78722", + "bounds": [ + 100.725404, + -11.60655, + 110.799478, + 1.78722 + ] + }, + { + "id": "sea--r1-c3", + "asset_name": "occumed-sea--r1-c3.pmtiles", + "extract_bbox": "110.799478,-11.60655,120.873552,1.78722", + "bounds": [ + 110.799478, + -11.60655, + 120.873552, + 1.78722 + ] + }, + { + "id": "sea--r1-c4", + "asset_name": "occumed-sea--r1-c4.pmtiles", + "extract_bbox": "120.873552,-11.60655,130.947626,1.78722", + "bounds": [ + 120.873552, + -11.60655, + 130.947626, + 1.78722 + ] + }, + { + "id": "sea--r1-c5", + "asset_name": "occumed-sea--r1-c5.pmtiles", + "extract_bbox": "130.947626,-11.60655,141.0217,1.78722", + "bounds": [ + 130.947626, + -11.60655, + 141.0217, + 1.78722 + ] + }, + { + "id": "sea--r2-c1", + "asset_name": "occumed-sea--r2-c1.pmtiles", + "extract_bbox": "90.65133,1.78722,100.725404,15.18099", + "bounds": [ + 90.65133, + 1.78722, + 100.725404, + 15.18099 + ] + }, + { + "id": "sea--r2-c2", + "asset_name": "occumed-sea--r2-c2.pmtiles", + "extract_bbox": "100.725404,1.78722,110.799478,15.18099", + "bounds": [ + 100.725404, + 1.78722, + 110.799478, + 15.18099 + ] + }, + { + "id": "sea--r2-c3", + "asset_name": "occumed-sea--r2-c3.pmtiles", + "extract_bbox": "110.799478,1.78722,120.873552,15.18099", + "bounds": [ + 110.799478, + 1.78722, + 120.873552, + 15.18099 + ] + }, + { + "id": "sea--r2-c4", + "asset_name": "occumed-sea--r2-c4.pmtiles", + "extract_bbox": "120.873552,1.78722,130.947626,15.18099", + "bounds": [ + 120.873552, + 1.78722, + 130.947626, + 15.18099 + ] + }, + { + "id": "sea--r2-c5", + "asset_name": "occumed-sea--r2-c5.pmtiles", + "extract_bbox": "130.947626,1.78722,141.0217,15.18099", + "bounds": [ + 130.947626, + 1.78722, + 141.0217, + 15.18099 + ] + }, + { + "id": "sea--r3-c1", + "asset_name": "occumed-sea--r3-c1.pmtiles", + "extract_bbox": "90.65133,15.18099,100.725404,28.57476", + "bounds": [ + 90.65133, + 15.18099, + 100.725404, + 28.57476 + ] + }, + { + "id": "sea--r3-c2", + "asset_name": "occumed-sea--r3-c2.pmtiles", + "extract_bbox": "100.725404,15.18099,110.799478,28.57476", + "bounds": [ + 100.725404, + 15.18099, + 110.799478, + 28.57476 + ] + }, + { + "id": "sea--r3-c3", + "asset_name": "occumed-sea--r3-c3.pmtiles", + "extract_bbox": "110.799478,15.18099,120.873552,28.57476", + "bounds": [ + 110.799478, + 15.18099, + 120.873552, + 28.57476 + ] + }, + { + "id": "sea--r3-c4", + "asset_name": "occumed-sea--r3-c4.pmtiles", + "extract_bbox": "120.873552,15.18099,130.947626,28.57476", + "bounds": [ + 120.873552, + 15.18099, + 130.947626, + 28.57476 + ] + }, + { + "id": "sea--r3-c5", + "asset_name": "occumed-sea--r3-c5.pmtiles", + "extract_bbox": "130.947626,15.18099,141.0217,28.57476", + "bounds": [ + 130.947626, + 15.18099, + 141.0217, + 28.57476 + ] + } + ] + }, + { + "source_region_id": "us-west", + "continent": "north-america", + "source_size_bytes": 3374891428, + "child_count": 12, + "children": [ + { + "id": "us-west--r1-c1", + "asset_name": "occumed-us-west--r1-c1.pmtiles", + "extract_bbox": "-133.0637,31.32659,-125.30665,37.369743", + "bounds": [ + -133.0637, + 31.32659, + -125.30665, + 37.369743 + ] + }, + { + "id": "us-west--r1-c2", + "asset_name": "occumed-us-west--r1-c2.pmtiles", + "extract_bbox": "-125.30665,31.32659,-117.5496,37.369743", + "bounds": [ + -125.30665, + 31.32659, + -117.5496, + 37.369743 + ] + }, + { + "id": "us-west--r1-c3", + "asset_name": "occumed-us-west--r1-c3.pmtiles", + "extract_bbox": "-117.5496,31.32659,-109.79255,37.369743", + "bounds": [ + -117.5496, + 31.32659, + -109.79255, + 37.369743 + ] + }, + { + "id": "us-west--r1-c4", + "asset_name": "occumed-us-west--r1-c4.pmtiles", + "extract_bbox": "-109.79255,31.32659,-102.0355,37.369743", + "bounds": [ + -109.79255, + 31.32659, + -102.0355, + 37.369743 + ] + }, + { + "id": "us-west--r2-c1", + "asset_name": "occumed-us-west--r2-c1.pmtiles", + "extract_bbox": "-133.0637,37.369743,-125.30665,43.412897", + "bounds": [ + -133.0637, + 37.369743, + -125.30665, + 43.412897 + ] + }, + { + "id": "us-west--r2-c2", + "asset_name": "occumed-us-west--r2-c2.pmtiles", + "extract_bbox": "-125.30665,37.369743,-117.5496,43.412897", + "bounds": [ + -125.30665, + 37.369743, + -117.5496, + 43.412897 + ] + }, + { + "id": "us-west--r2-c3", + "asset_name": "occumed-us-west--r2-c3.pmtiles", + "extract_bbox": "-117.5496,37.369743,-109.79255,43.412897", + "bounds": [ + -117.5496, + 37.369743, + -109.79255, + 43.412897 + ] + }, + { + "id": "us-west--r2-c4", + "asset_name": "occumed-us-west--r2-c4.pmtiles", + "extract_bbox": "-109.79255,37.369743,-102.0355,43.412897", + "bounds": [ + -109.79255, + 37.369743, + -102.0355, + 43.412897 + ] + }, + { + "id": "us-west--r3-c1", + "asset_name": "occumed-us-west--r3-c1.pmtiles", + "extract_bbox": "-133.0637,43.412897,-125.30665,49.45605", + "bounds": [ + -133.0637, + 43.412897, + -125.30665, + 49.45605 + ] + }, + { + "id": "us-west--r3-c2", + "asset_name": "occumed-us-west--r3-c2.pmtiles", + "extract_bbox": "-125.30665,43.412897,-117.5496,49.45605", + "bounds": [ + -125.30665, + 43.412897, + -117.5496, + 49.45605 + ] + }, + { + "id": "us-west--r3-c3", + "asset_name": "occumed-us-west--r3-c3.pmtiles", + "extract_bbox": "-117.5496,43.412897,-109.79255,49.45605", + "bounds": [ + -117.5496, + 43.412897, + -109.79255, + 49.45605 + ] + }, + { + "id": "us-west--r3-c4", + "asset_name": "occumed-us-west--r3-c4.pmtiles", + "extract_bbox": "-109.79255,43.412897,-102.0355,49.45605", + "bounds": [ + -109.79255, + 43.412897, + -102.0355, + 49.45605 + ] + } + ] + }, + { + "source_region_id": "britain-and-ireland", + "continent": "europe", + "source_size_bytes": 2582404522, + "child_count": 9, + "children": [ + { + "id": "britain-and-ireland--r1-c1", + "asset_name": "occumed-britain-and-ireland--r1-c1.pmtiles", + "extract_bbox": "-15.05625,49,-8.885909,53.045213", + "bounds": [ + -15.05625, + 49, + -8.885909, + 53.045213 + ] + }, + { + "id": "britain-and-ireland--r1-c2", + "asset_name": "occumed-britain-and-ireland--r1-c2.pmtiles", + "extract_bbox": "-8.885909,49,-2.715567,53.045213", + "bounds": [ + -8.885909, + 49, + -2.715567, + 53.045213 + ] + }, + { + "id": "britain-and-ireland--r1-c3", + "asset_name": "occumed-britain-and-ireland--r1-c3.pmtiles", + "extract_bbox": "-2.715567,49,3.454774,53.045213", + "bounds": [ + -2.715567, + 49, + 3.454774, + 53.045213 + ] + }, + { + "id": "britain-and-ireland--r2-c1", + "asset_name": "occumed-britain-and-ireland--r2-c1.pmtiles", + "extract_bbox": "-15.05625,53.045213,-8.885909,57.090427", + "bounds": [ + -15.05625, + 53.045213, + -8.885909, + 57.090427 + ] + }, + { + "id": "britain-and-ireland--r2-c2", + "asset_name": "occumed-britain-and-ireland--r2-c2.pmtiles", + "extract_bbox": "-8.885909,53.045213,-2.715567,57.090427", + "bounds": [ + -8.885909, + 53.045213, + -2.715567, + 57.090427 + ] + }, + { + "id": "britain-and-ireland--r2-c3", + "asset_name": "occumed-britain-and-ireland--r2-c3.pmtiles", + "extract_bbox": "-2.715567,53.045213,3.454774,57.090427", + "bounds": [ + -2.715567, + 53.045213, + 3.454774, + 57.090427 + ] + }, + { + "id": "britain-and-ireland--r3-c1", + "asset_name": "occumed-britain-and-ireland--r3-c1.pmtiles", + "extract_bbox": "-15.05625,57.090427,-8.885909,61.13564", + "bounds": [ + -15.05625, + 57.090427, + -8.885909, + 61.13564 + ] + }, + { + "id": "britain-and-ireland--r3-c2", + "asset_name": "occumed-britain-and-ireland--r3-c2.pmtiles", + "extract_bbox": "-8.885909,57.090427,-2.715567,61.13564", + "bounds": [ + -8.885909, + 57.090427, + -2.715567, + 61.13564 + ] + }, + { + "id": "britain-and-ireland--r3-c3", + "asset_name": "occumed-britain-and-ireland--r3-c3.pmtiles", + "extract_bbox": "-2.715567,57.090427,3.454774,61.13564", + "bounds": [ + -2.715567, + 57.090427, + 3.454774, + 61.13564 + ] + } + ] + }, + { + "source_region_id": "us-midwest", + "continent": "north-america", + "source_size_bytes": 2474364429, + "child_count": 12, + "children": [ + { + "id": "us-midwest--r1-c1", + "asset_name": "occumed-us-midwest--r1-c1.pmtiles", + "extract_bbox": "-104.0588,35.98507,-98.170403,40.459093", + "bounds": [ + -104.0588, + 35.98507, + -98.170403, + 40.459093 + ] + }, + { + "id": "us-midwest--r1-c2", + "asset_name": "occumed-us-midwest--r1-c2.pmtiles", + "extract_bbox": "-98.170403,35.98507,-92.282005,40.459093", + "bounds": [ + -98.170403, + 35.98507, + -92.282005, + 40.459093 + ] + }, + { + "id": "us-midwest--r1-c3", + "asset_name": "occumed-us-midwest--r1-c3.pmtiles", + "extract_bbox": "-92.282005,35.98507,-86.393608,40.459093", + "bounds": [ + -92.282005, + 35.98507, + -86.393608, + 40.459093 + ] + }, + { + "id": "us-midwest--r1-c4", + "asset_name": "occumed-us-midwest--r1-c4.pmtiles", + "extract_bbox": "-86.393608,35.98507,-80.50521,40.459093", + "bounds": [ + -86.393608, + 35.98507, + -80.50521, + 40.459093 + ] + }, + { + "id": "us-midwest--r2-c1", + "asset_name": "occumed-us-midwest--r2-c1.pmtiles", + "extract_bbox": "-104.0588,40.459093,-98.170403,44.933117", + "bounds": [ + -104.0588, + 40.459093, + -98.170403, + 44.933117 + ] + }, + { + "id": "us-midwest--r2-c2", + "asset_name": "occumed-us-midwest--r2-c2.pmtiles", + "extract_bbox": "-98.170403,40.459093,-92.282005,44.933117", + "bounds": [ + -98.170403, + 40.459093, + -92.282005, + 44.933117 + ] + }, + { + "id": "us-midwest--r2-c3", + "asset_name": "occumed-us-midwest--r2-c3.pmtiles", + "extract_bbox": "-92.282005,40.459093,-86.393608,44.933117", + "bounds": [ + -92.282005, + 40.459093, + -86.393608, + 44.933117 + ] + }, + { + "id": "us-midwest--r2-c4", + "asset_name": "occumed-us-midwest--r2-c4.pmtiles", + "extract_bbox": "-86.393608,40.459093,-80.50521,44.933117", + "bounds": [ + -86.393608, + 40.459093, + -80.50521, + 44.933117 + ] + }, + { + "id": "us-midwest--r3-c1", + "asset_name": "occumed-us-midwest--r3-c1.pmtiles", + "extract_bbox": "-104.0588,44.933117,-98.170403,49.40714", + "bounds": [ + -104.0588, + 44.933117, + -98.170403, + 49.40714 + ] + }, + { + "id": "us-midwest--r3-c2", + "asset_name": "occumed-us-midwest--r3-c2.pmtiles", + "extract_bbox": "-98.170403,44.933117,-92.282005,49.40714", + "bounds": [ + -98.170403, + 44.933117, + -92.282005, + 49.40714 + ] + }, + { + "id": "us-midwest--r3-c3", + "asset_name": "occumed-us-midwest--r3-c3.pmtiles", + "extract_bbox": "-92.282005,44.933117,-86.393608,49.40714", + "bounds": [ + -92.282005, + 44.933117, + -86.393608, + 49.40714 + ] + }, + { + "id": "us-midwest--r3-c4", + "asset_name": "occumed-us-midwest--r3-c4.pmtiles", + "extract_bbox": "-86.393608,44.933117,-80.50521,49.40714", + "bounds": [ + -86.393608, + 44.933117, + -80.50521, + 49.40714 + ] + } + ] + }, + { + "source_region_id": "alps", + "continent": "europe", + "source_size_bytes": 2301582947, + "child_count": 8, + "children": [ + { + "id": "alps--r1-c1", + "asset_name": "occumed-alps--r1-c1.pmtiles", + "extract_bbox": "4.842221,42.69859,7.822263,45.549765", + "bounds": [ + 4.842221, + 42.69859, + 7.822263, + 45.549765 + ] + }, + { + "id": "alps--r1-c2", + "asset_name": "occumed-alps--r1-c2.pmtiles", + "extract_bbox": "7.822263,42.69859,10.802305,45.549765", + "bounds": [ + 7.822263, + 42.69859, + 10.802305, + 45.549765 + ] + }, + { + "id": "alps--r1-c3", + "asset_name": "occumed-alps--r1-c3.pmtiles", + "extract_bbox": "10.802305,42.69859,13.782348,45.549765", + "bounds": [ + 10.802305, + 42.69859, + 13.782348, + 45.549765 + ] + }, + { + "id": "alps--r1-c4", + "asset_name": "occumed-alps--r1-c4.pmtiles", + "extract_bbox": "13.782348,42.69859,16.76239,45.549765", + "bounds": [ + 13.782348, + 42.69859, + 16.76239, + 45.549765 + ] + }, + { + "id": "alps--r2-c1", + "asset_name": "occumed-alps--r2-c1.pmtiles", + "extract_bbox": "4.842221,45.549765,7.822263,48.40094", + "bounds": [ + 4.842221, + 45.549765, + 7.822263, + 48.40094 + ] + }, + { + "id": "alps--r2-c2", + "asset_name": "occumed-alps--r2-c2.pmtiles", + "extract_bbox": "7.822263,45.549765,10.802305,48.40094", + "bounds": [ + 7.822263, + 45.549765, + 10.802305, + 48.40094 + ] + }, + { + "id": "alps--r2-c3", + "asset_name": "occumed-alps--r2-c3.pmtiles", + "extract_bbox": "10.802305,45.549765,13.782348,48.40094", + "bounds": [ + 10.802305, + 45.549765, + 13.782348, + 48.40094 + ] + }, + { + "id": "alps--r2-c4", + "asset_name": "occumed-alps--r2-c4.pmtiles", + "extract_bbox": "13.782348,45.549765,16.76239,48.40094", + "bounds": [ + 13.782348, + 45.549765, + 16.76239, + 48.40094 + ] + } + ] + }, + { + "source_region_id": "great-britain", + "continent": "europe", + "source_size_bytes": 2152354131, + "child_count": 9, + "children": [ + { + "id": "great-britain--r1-c1", + "asset_name": "occumed-great-britain--r1-c1.pmtiles", + "extract_bbox": "-14.9907,49.523,-9.155909,53.39388", + "bounds": [ + -14.9907, + 49.523, + -9.155909, + 53.39388 + ] + }, + { + "id": "great-britain--r1-c2", + "asset_name": "occumed-great-britain--r1-c2.pmtiles", + "extract_bbox": "-9.155909,49.523,-3.321119,53.39388", + "bounds": [ + -9.155909, + 49.523, + -3.321119, + 53.39388 + ] + }, + { + "id": "great-britain--r1-c3", + "asset_name": "occumed-great-britain--r1-c3.pmtiles", + "extract_bbox": "-3.321119,49.523,2.513672,53.39388", + "bounds": [ + -3.321119, + 49.523, + 2.513672, + 53.39388 + ] + }, + { + "id": "great-britain--r2-c1", + "asset_name": "occumed-great-britain--r2-c1.pmtiles", + "extract_bbox": "-14.9907,53.39388,-9.155909,57.26476", + "bounds": [ + -14.9907, + 53.39388, + -9.155909, + 57.26476 + ] + }, + { + "id": "great-britain--r2-c2", + "asset_name": "occumed-great-britain--r2-c2.pmtiles", + "extract_bbox": "-9.155909,53.39388,-3.321119,57.26476", + "bounds": [ + -9.155909, + 53.39388, + -3.321119, + 57.26476 + ] + }, + { + "id": "great-britain--r2-c3", + "asset_name": "occumed-great-britain--r2-c3.pmtiles", + "extract_bbox": "-3.321119,53.39388,2.513672,57.26476", + "bounds": [ + -3.321119, + 53.39388, + 2.513672, + 57.26476 + ] + }, + { + "id": "great-britain--r3-c1", + "asset_name": "occumed-great-britain--r3-c1.pmtiles", + "extract_bbox": "-14.9907,57.26476,-9.155909,61.13564", + "bounds": [ + -14.9907, + 57.26476, + -9.155909, + 61.13564 + ] + }, + { + "id": "great-britain--r3-c2", + "asset_name": "occumed-great-britain--r3-c2.pmtiles", + "extract_bbox": "-9.155909,57.26476,-3.321119,61.13564", + "bounds": [ + -9.155909, + 57.26476, + -3.321119, + 61.13564 + ] + }, + { + "id": "great-britain--r3-c3", + "asset_name": "occumed-great-britain--r3-c3.pmtiles", + "extract_bbox": "-3.321119,57.26476,2.513672,61.13564", + "bounds": [ + -3.321119, + 57.26476, + 2.513672, + 61.13564 + ] + } + ] + }, + { + "source_region_id": "us-northeast", + "continent": "north-america", + "source_size_bytes": 1787334438, + "child_count": 6, + "children": [ + { + "id": "us-northeast--r1-c1", + "asset_name": "occumed-us-northeast--r1-c1.pmtiles", + "extract_bbox": "-80.52275,38.74287,-75.97238,43.102545", + "bounds": [ + -80.52275, + 38.74287, + -75.97238, + 43.102545 + ] + }, + { + "id": "us-northeast--r1-c2", + "asset_name": "occumed-us-northeast--r1-c2.pmtiles", + "extract_bbox": "-75.97238,38.74287,-71.42201,43.102545", + "bounds": [ + -75.97238, + 38.74287, + -71.42201, + 43.102545 + ] + }, + { + "id": "us-northeast--r1-c3", + "asset_name": "occumed-us-northeast--r1-c3.pmtiles", + "extract_bbox": "-71.42201,38.74287,-66.87164,43.102545", + "bounds": [ + -71.42201, + 38.74287, + -66.87164, + 43.102545 + ] + }, + { + "id": "us-northeast--r2-c1", + "asset_name": "occumed-us-northeast--r2-c1.pmtiles", + "extract_bbox": "-80.52275,43.102545,-75.97238,47.46222", + "bounds": [ + -80.52275, + 43.102545, + -75.97238, + 47.46222 + ] + }, + { + "id": "us-northeast--r2-c2", + "asset_name": "occumed-us-northeast--r2-c2.pmtiles", + "extract_bbox": "-75.97238,43.102545,-71.42201,47.46222", + "bounds": [ + -75.97238, + 43.102545, + -71.42201, + 47.46222 + ] + }, + { + "id": "us-northeast--r2-c3", + "asset_name": "occumed-us-northeast--r2-c3.pmtiles", + "extract_bbox": "-71.42201,43.102545,-66.87164,47.46222", + "bounds": [ + -71.42201, + 43.102545, + -66.87164, + 47.46222 + ] + } + ] + }, + { + "source_region_id": "quebec", + "continent": "north-america", + "source_size_bytes": 1157949394, + "child_count": 4, + "children": [ + { + "id": "quebec--r1-c1", + "asset_name": "occumed-quebec--r1-c1.pmtiles", + "extract_bbox": "-79.8404,44.98552,-68.46474,53.80586", + "bounds": [ + -79.8404, + 44.98552, + -68.46474, + 53.80586 + ] + }, + { + "id": "quebec--r1-c2", + "asset_name": "occumed-quebec--r1-c2.pmtiles", + "extract_bbox": "-68.46474,44.98552,-57.08908,53.80586", + "bounds": [ + -68.46474, + 44.98552, + -57.08908, + 53.80586 + ] + }, + { + "id": "quebec--r2-c1", + "asset_name": "occumed-quebec--r2-c1.pmtiles", + "extract_bbox": "-79.8404,53.80586,-68.46474,62.6262", + "bounds": [ + -79.8404, + 53.80586, + -68.46474, + 62.6262 + ] + }, + { + "id": "quebec--r2-c2", + "asset_name": "occumed-quebec--r2-c2.pmtiles", + "extract_bbox": "-68.46474,53.80586,-57.08908,62.6262", + "bounds": [ + -68.46474, + 53.80586, + -57.08908, + 62.6262 + ] + } + ] + }, + { + "source_region_id": "ontario", + "continent": "north-america", + "source_size_bytes": 966741555, + "child_count": 4, + "children": [ + { + "id": "ontario--r1-c1", + "asset_name": "occumed-ontario--r1-c1.pmtiles", + "extract_bbox": "-95.15965,41.66009,-84.734815,49.584175", + "bounds": [ + -95.15965, + 41.66009, + -84.734815, + 49.584175 + ] + }, + { + "id": "ontario--r1-c2", + "asset_name": "occumed-ontario--r1-c2.pmtiles", + "extract_bbox": "-84.734815,41.66009,-74.30998,49.584175", + "bounds": [ + -84.734815, + 41.66009, + -74.30998, + 49.584175 + ] + }, + { + "id": "ontario--r2-c1", + "asset_name": "occumed-ontario--r2-c1.pmtiles", + "extract_bbox": "-95.15965,49.584175,-84.734815,57.50826", + "bounds": [ + -95.15965, + 49.584175, + -84.734815, + 57.50826 + ] + }, + { + "id": "ontario--r2-c2", + "asset_name": "occumed-ontario--r2-c2.pmtiles", + "extract_bbox": "-84.734815,49.584175,-74.30998,57.50826", + "bounds": [ + -84.734815, + 49.584175, + -74.30998, + 57.50826 + ] + } + ] + }, + { + "source_region_id": "java", + "continent": "asia", + "source_size_bytes": 894918961, + "child_count": 6, + "children": [ + { + "id": "java--r1-c1", + "asset_name": "occumed-java--r1-c1.pmtiles", + "extract_bbox": "104.1394,-9.541155,108.286733,-6.746545", + "bounds": [ + 104.1394, + -9.541155, + 108.286733, + -6.746545 + ] + }, + { + "id": "java--r1-c2", + "asset_name": "occumed-java--r1-c2.pmtiles", + "extract_bbox": "108.286733,-9.541155,112.434067,-6.746545", + "bounds": [ + 108.286733, + -9.541155, + 112.434067, + -6.746545 + ] + }, + { + "id": "java--r1-c3", + "asset_name": "occumed-java--r1-c3.pmtiles", + "extract_bbox": "112.434067,-9.541155,116.5814,-6.746545", + "bounds": [ + 112.434067, + -9.541155, + 116.5814, + -6.746545 + ] + }, + { + "id": "java--r2-c1", + "asset_name": "occumed-java--r2-c1.pmtiles", + "extract_bbox": "104.1394,-6.746545,108.286733,-3.951935", + "bounds": [ + 104.1394, + -6.746545, + 108.286733, + -3.951935 + ] + }, + { + "id": "java--r2-c2", + "asset_name": "occumed-java--r2-c2.pmtiles", + "extract_bbox": "108.286733,-6.746545,112.434067,-3.951935", + "bounds": [ + 108.286733, + -6.746545, + 112.434067, + -3.951935 + ] + }, + { + "id": "java--r2-c3", + "asset_name": "occumed-java--r2-c3.pmtiles", + "extract_bbox": "112.434067,-6.746545,116.5814,-3.951935", + "bounds": [ + 112.434067, + -6.746545, + 116.5814, + -3.951935 + ] + } + ] + }, + { + "source_region_id": "ukraine", + "continent": "europe", + "source_size_bytes": 870676344, + "child_count": 6, + "children": [ + { + "id": "ukraine--r1-c1", + "asset_name": "occumed-ukraine--r1-c1.pmtiles", + "extract_bbox": "22.13264,44.00862,28.167797,48.19756", + "bounds": [ + 22.13264, + 44.00862, + 28.167797, + 48.19756 + ] + }, + { + "id": "ukraine--r1-c2", + "asset_name": "occumed-ukraine--r1-c2.pmtiles", + "extract_bbox": "28.167797,44.00862,34.202953,48.19756", + "bounds": [ + 28.167797, + 44.00862, + 34.202953, + 48.19756 + ] + }, + { + "id": "ukraine--r1-c3", + "asset_name": "occumed-ukraine--r1-c3.pmtiles", + "extract_bbox": "34.202953,44.00862,40.23811,48.19756", + "bounds": [ + 34.202953, + 44.00862, + 40.23811, + 48.19756 + ] + }, + { + "id": "ukraine--r2-c1", + "asset_name": "occumed-ukraine--r2-c1.pmtiles", + "extract_bbox": "22.13264,48.19756,28.167797,52.3865", + "bounds": [ + 22.13264, + 48.19756, + 28.167797, + 52.3865 + ] + }, + { + "id": "ukraine--r2-c2", + "asset_name": "occumed-ukraine--r2-c2.pmtiles", + "extract_bbox": "28.167797,48.19756,34.202953,52.3865", + "bounds": [ + 28.167797, + 48.19756, + 34.202953, + 52.3865 + ] + }, + { + "id": "ukraine--r2-c3", + "asset_name": "occumed-ukraine--r2-c3.pmtiles", + "extract_bbox": "34.202953,48.19756,40.23811,52.3865", + "bounds": [ + 34.202953, + 48.19756, + 40.23811, + 52.3865 + ] + } + ] + }, + { + "source_region_id": "central-fed-district", + "continent": "central-fed-district", + "source_size_bytes": 870533571, + "child_count": 4, + "children": [ + { + "id": "central-fed-district--r1-c1", + "asset_name": "occumed-central-fed-district--r1-c1.pmtiles", + "extract_bbox": "30.69976,49.50446,39.184995,54.57888", + "bounds": [ + 30.69976, + 49.50446, + 39.184995, + 54.57888 + ] + }, + { + "id": "central-fed-district--r1-c2", + "asset_name": "occumed-central-fed-district--r1-c2.pmtiles", + "extract_bbox": "39.184995,49.50446,47.67023,54.57888", + "bounds": [ + 39.184995, + 49.50446, + 47.67023, + 54.57888 + ] + }, + { + "id": "central-fed-district--r2-c1", + "asset_name": "occumed-central-fed-district--r2-c1.pmtiles", + "extract_bbox": "30.69976,54.57888,39.184995,59.6533", + "bounds": [ + 30.69976, + 54.57888, + 39.184995, + 59.6533 + ] + }, + { + "id": "central-fed-district--r2-c2", + "asset_name": "occumed-central-fed-district--r2-c2.pmtiles", + "extract_bbox": "39.184995,54.57888,47.67023,59.6533", + "bounds": [ + 39.184995, + 54.57888, + 47.67023, + 59.6533 + ] + } + ] + }, + { + "source_region_id": "sudeste", + "continent": "south-america", + "source_size_bytes": 853018598, + "child_count": 6, + "children": [ + { + "id": "sudeste--r1-c1", + "asset_name": "occumed-sudeste--r1-c1.pmtiles", + "extract_bbox": "-53.1189,-25.4993,-44.809917,-19.861875", + "bounds": [ + -53.1189, + -25.4993, + -44.809917, + -19.861875 + ] + }, + { + "id": "sudeste--r1-c2", + "asset_name": "occumed-sudeste--r1-c2.pmtiles", + "extract_bbox": "-44.809917,-25.4993,-36.500933,-19.861875", + "bounds": [ + -44.809917, + -25.4993, + -36.500933, + -19.861875 + ] + }, + { + "id": "sudeste--r1-c3", + "asset_name": "occumed-sudeste--r1-c3.pmtiles", + "extract_bbox": "-36.500933,-25.4993,-28.19195,-19.861875", + "bounds": [ + -36.500933, + -25.4993, + -28.19195, + -19.861875 + ] + }, + { + "id": "sudeste--r2-c1", + "asset_name": "occumed-sudeste--r2-c1.pmtiles", + "extract_bbox": "-53.1189,-19.861875,-44.809917,-14.22445", + "bounds": [ + -53.1189, + -19.861875, + -44.809917, + -14.22445 + ] + }, + { + "id": "sudeste--r2-c2", + "asset_name": "occumed-sudeste--r2-c2.pmtiles", + "extract_bbox": "-44.809917,-19.861875,-36.500933,-14.22445", + "bounds": [ + -44.809917, + -19.861875, + -36.500933, + -14.22445 + ] + }, + { + "id": "sudeste--r2-c3", + "asset_name": "occumed-sudeste--r2-c3.pmtiles", + "extract_bbox": "-36.500933,-19.861875,-28.19195,-14.22445", + "bounds": [ + -36.500933, + -19.861875, + -28.19195, + -14.22445 + ] + } + ] + } + ] +} diff --git a/audit/forced-split-regions.md b/audit/forced-split-regions.md new file mode 100644 index 00000000..07157714 --- /dev/null +++ b/audit/forced-split-regions.md @@ -0,0 +1,301 @@ +# Forced Grid-Split Region Audit + +Generated: 2026-07-29T06:25:16.112Z + +- Forced-split parent families: **16** +- Generated child archives: **176** +- Split threshold: **0.79 GiB** + +| Parent source region | Continent | Source size | Child archives | +|---|---:|---:|---:| +| `us` | north-america | 11.22 GiB | 32 | +| `dach` | europe | 5.76 GiB | 25 | +| `us-south` | north-america | 3.81 GiB | 18 | +| `sea` | asia | 3.38 GiB | 15 | +| `us-west` | north-america | 3.14 GiB | 12 | +| `britain-and-ireland` | europe | 2.41 GiB | 9 | +| `us-midwest` | north-america | 2.30 GiB | 12 | +| `alps` | europe | 2.14 GiB | 8 | +| `great-britain` | europe | 2.00 GiB | 9 | +| `us-northeast` | north-america | 1.66 GiB | 6 | +| `quebec` | north-america | 1.08 GiB | 4 | +| `ontario` | north-america | 0.90 GiB | 4 | +| `java` | asia | 0.83 GiB | 6 | +| `ukraine` | europe | 0.81 GiB | 6 | +| `central-fed-district` | central-fed-district | 0.81 GiB | 4 | +| `sudeste` | south-america | 0.79 GiB | 6 | + +## Child assets by parent + +### us + +Source size: 11.22 GiB +Children: 32 + +- `occumed-us--r1-c1-s1.pmtiles` — bbox `170.9033,15.92097,180,30.18784` +- `occumed-us--r1-c1-s2.pmtiles` — bbox `-180,15.92097,-171.636566,30.18784` +- `occumed-us--r1-c2.pmtiles` — bbox `-171.636566,15.92097,-154.176431,30.18784` +- `occumed-us--r1-c3.pmtiles` — bbox `-154.176431,15.92097,-136.716297,30.18784` +- `occumed-us--r1-c4.pmtiles` — bbox `-136.716297,15.92097,-119.256163,30.18784` +- `occumed-us--r1-c5.pmtiles` — bbox `-119.256163,15.92097,-101.796029,30.18784` +- `occumed-us--r1-c6.pmtiles` — bbox `-101.796029,15.92097,-84.335894,30.18784` +- `occumed-us--r1-c7.pmtiles` — bbox `-84.335894,15.92097,-66.87576,30.18784` +- `occumed-us--r2-c1-s1.pmtiles` — bbox `170.9033,30.18784,180,44.45471` +- `occumed-us--r2-c1-s2.pmtiles` — bbox `-180,30.18784,-171.636566,44.45471` +- `occumed-us--r2-c2.pmtiles` — bbox `-171.636566,30.18784,-154.176431,44.45471` +- `occumed-us--r2-c3.pmtiles` — bbox `-154.176431,30.18784,-136.716297,44.45471` +- `occumed-us--r2-c4.pmtiles` — bbox `-136.716297,30.18784,-119.256163,44.45471` +- `occumed-us--r2-c5.pmtiles` — bbox `-119.256163,30.18784,-101.796029,44.45471` +- `occumed-us--r2-c6.pmtiles` — bbox `-101.796029,30.18784,-84.335894,44.45471` +- `occumed-us--r2-c7.pmtiles` — bbox `-84.335894,30.18784,-66.87576,44.45471` +- `occumed-us--r3-c1-s1.pmtiles` — bbox `170.9033,44.45471,180,58.72158` +- `occumed-us--r3-c1-s2.pmtiles` — bbox `-180,44.45471,-171.636566,58.72158` +- `occumed-us--r3-c2.pmtiles` — bbox `-171.636566,44.45471,-154.176431,58.72158` +- `occumed-us--r3-c3.pmtiles` — bbox `-154.176431,44.45471,-136.716297,58.72158` +- `occumed-us--r3-c4.pmtiles` — bbox `-136.716297,44.45471,-119.256163,58.72158` +- `occumed-us--r3-c5.pmtiles` — bbox `-119.256163,44.45471,-101.796029,58.72158` +- `occumed-us--r3-c6.pmtiles` — bbox `-101.796029,44.45471,-84.335894,58.72158` +- `occumed-us--r3-c7.pmtiles` — bbox `-84.335894,44.45471,-66.87576,58.72158` +- `occumed-us--r4-c1-s1.pmtiles` — bbox `170.9033,58.72158,180,72.98845` +- `occumed-us--r4-c1-s2.pmtiles` — bbox `-180,58.72158,-171.636566,72.98845` +- `occumed-us--r4-c2.pmtiles` — bbox `-171.636566,58.72158,-154.176431,72.98845` +- `occumed-us--r4-c3.pmtiles` — bbox `-154.176431,58.72158,-136.716297,72.98845` +- `occumed-us--r4-c4.pmtiles` — bbox `-136.716297,58.72158,-119.256163,72.98845` +- `occumed-us--r4-c5.pmtiles` — bbox `-119.256163,58.72158,-101.796029,72.98845` +- `occumed-us--r4-c6.pmtiles` — bbox `-101.796029,58.72158,-84.335894,72.98845` +- `occumed-us--r4-c7.pmtiles` — bbox `-84.335894,58.72158,-66.87576,72.98845` + +### dach + +Source size: 5.76 GiB +Children: 25 + +- `occumed-dach--r1-c1.pmtiles` — bbox `5.864417,45.81617,8.12408,47.68249` +- `occumed-dach--r1-c2.pmtiles` — bbox `8.12408,45.81617,10.383742,47.68249` +- `occumed-dach--r1-c3.pmtiles` — bbox `10.383742,45.81617,12.643405,47.68249` +- `occumed-dach--r1-c4.pmtiles` — bbox `12.643405,45.81617,14.903067,47.68249` +- `occumed-dach--r1-c5.pmtiles` — bbox `14.903067,45.81617,17.16273,47.68249` +- `occumed-dach--r2-c1.pmtiles` — bbox `5.864417,47.68249,8.12408,49.54881` +- `occumed-dach--r2-c2.pmtiles` — bbox `8.12408,47.68249,10.383742,49.54881` +- `occumed-dach--r2-c3.pmtiles` — bbox `10.383742,47.68249,12.643405,49.54881` +- `occumed-dach--r2-c4.pmtiles` — bbox `12.643405,47.68249,14.903067,49.54881` +- `occumed-dach--r2-c5.pmtiles` — bbox `14.903067,47.68249,17.16273,49.54881` +- `occumed-dach--r3-c1.pmtiles` — bbox `5.864417,49.54881,8.12408,51.41513` +- `occumed-dach--r3-c2.pmtiles` — bbox `8.12408,49.54881,10.383742,51.41513` +- `occumed-dach--r3-c3.pmtiles` — bbox `10.383742,49.54881,12.643405,51.41513` +- `occumed-dach--r3-c4.pmtiles` — bbox `12.643405,49.54881,14.903067,51.41513` +- `occumed-dach--r3-c5.pmtiles` — bbox `14.903067,49.54881,17.16273,51.41513` +- `occumed-dach--r4-c1.pmtiles` — bbox `5.864417,51.41513,8.12408,53.28145` +- `occumed-dach--r4-c2.pmtiles` — bbox `8.12408,51.41513,10.383742,53.28145` +- `occumed-dach--r4-c3.pmtiles` — bbox `10.383742,51.41513,12.643405,53.28145` +- `occumed-dach--r4-c4.pmtiles` — bbox `12.643405,51.41513,14.903067,53.28145` +- `occumed-dach--r4-c5.pmtiles` — bbox `14.903067,51.41513,17.16273,53.28145` +- `occumed-dach--r5-c1.pmtiles` — bbox `5.864417,53.28145,8.12408,55.14777` +- `occumed-dach--r5-c2.pmtiles` — bbox `8.12408,53.28145,10.383742,55.14777` +- `occumed-dach--r5-c3.pmtiles` — bbox `10.383742,53.28145,12.643405,55.14777` +- `occumed-dach--r5-c4.pmtiles` — bbox `12.643405,53.28145,14.903067,55.14777` +- `occumed-dach--r5-c5.pmtiles` — bbox `14.903067,53.28145,17.16273,55.14777` + +### us-south + +Source size: 3.81 GiB +Children: 18 + +- `occumed-us-south--r1-c1.pmtiles` — bbox `-106.6494,24.20031,-100.792802,29.682327` +- `occumed-us-south--r1-c2.pmtiles` — bbox `-100.792802,24.20031,-94.936203,29.682327` +- `occumed-us-south--r1-c3.pmtiles` — bbox `-94.936203,24.20031,-89.079605,29.682327` +- `occumed-us-south--r1-c4.pmtiles` — bbox `-89.079605,24.20031,-83.223007,29.682327` +- `occumed-us-south--r1-c5.pmtiles` — bbox `-83.223007,24.20031,-77.366408,29.682327` +- `occumed-us-south--r1-c6.pmtiles` — bbox `-77.366408,24.20031,-71.50981,29.682327` +- `occumed-us-south--r2-c1.pmtiles` — bbox `-106.6494,29.682327,-100.792802,35.164343` +- `occumed-us-south--r2-c2.pmtiles` — bbox `-100.792802,29.682327,-94.936203,35.164343` +- `occumed-us-south--r2-c3.pmtiles` — bbox `-94.936203,29.682327,-89.079605,35.164343` +- `occumed-us-south--r2-c4.pmtiles` — bbox `-89.079605,29.682327,-83.223007,35.164343` +- `occumed-us-south--r2-c5.pmtiles` — bbox `-83.223007,29.682327,-77.366408,35.164343` +- `occumed-us-south--r2-c6.pmtiles` — bbox `-77.366408,29.682327,-71.50981,35.164343` +- `occumed-us-south--r3-c1.pmtiles` — bbox `-106.6494,35.164343,-100.792802,40.64636` +- `occumed-us-south--r3-c2.pmtiles` — bbox `-100.792802,35.164343,-94.936203,40.64636` +- `occumed-us-south--r3-c3.pmtiles` — bbox `-94.936203,35.164343,-89.079605,40.64636` +- `occumed-us-south--r3-c4.pmtiles` — bbox `-89.079605,35.164343,-83.223007,40.64636` +- `occumed-us-south--r3-c5.pmtiles` — bbox `-83.223007,35.164343,-77.366408,40.64636` +- `occumed-us-south--r3-c6.pmtiles` — bbox `-77.366408,35.164343,-71.50981,40.64636` + +### sea + +Source size: 3.38 GiB +Children: 15 + +- `occumed-sea--r1-c1.pmtiles` — bbox `90.65133,-11.60655,100.725404,1.78722` +- `occumed-sea--r1-c2.pmtiles` — bbox `100.725404,-11.60655,110.799478,1.78722` +- `occumed-sea--r1-c3.pmtiles` — bbox `110.799478,-11.60655,120.873552,1.78722` +- `occumed-sea--r1-c4.pmtiles` — bbox `120.873552,-11.60655,130.947626,1.78722` +- `occumed-sea--r1-c5.pmtiles` — bbox `130.947626,-11.60655,141.0217,1.78722` +- `occumed-sea--r2-c1.pmtiles` — bbox `90.65133,1.78722,100.725404,15.18099` +- `occumed-sea--r2-c2.pmtiles` — bbox `100.725404,1.78722,110.799478,15.18099` +- `occumed-sea--r2-c3.pmtiles` — bbox `110.799478,1.78722,120.873552,15.18099` +- `occumed-sea--r2-c4.pmtiles` — bbox `120.873552,1.78722,130.947626,15.18099` +- `occumed-sea--r2-c5.pmtiles` — bbox `130.947626,1.78722,141.0217,15.18099` +- `occumed-sea--r3-c1.pmtiles` — bbox `90.65133,15.18099,100.725404,28.57476` +- `occumed-sea--r3-c2.pmtiles` — bbox `100.725404,15.18099,110.799478,28.57476` +- `occumed-sea--r3-c3.pmtiles` — bbox `110.799478,15.18099,120.873552,28.57476` +- `occumed-sea--r3-c4.pmtiles` — bbox `120.873552,15.18099,130.947626,28.57476` +- `occumed-sea--r3-c5.pmtiles` — bbox `130.947626,15.18099,141.0217,28.57476` + +### us-west + +Source size: 3.14 GiB +Children: 12 + +- `occumed-us-west--r1-c1.pmtiles` — bbox `-133.0637,31.32659,-125.30665,37.369743` +- `occumed-us-west--r1-c2.pmtiles` — bbox `-125.30665,31.32659,-117.5496,37.369743` +- `occumed-us-west--r1-c3.pmtiles` — bbox `-117.5496,31.32659,-109.79255,37.369743` +- `occumed-us-west--r1-c4.pmtiles` — bbox `-109.79255,31.32659,-102.0355,37.369743` +- `occumed-us-west--r2-c1.pmtiles` — bbox `-133.0637,37.369743,-125.30665,43.412897` +- `occumed-us-west--r2-c2.pmtiles` — bbox `-125.30665,37.369743,-117.5496,43.412897` +- `occumed-us-west--r2-c3.pmtiles` — bbox `-117.5496,37.369743,-109.79255,43.412897` +- `occumed-us-west--r2-c4.pmtiles` — bbox `-109.79255,37.369743,-102.0355,43.412897` +- `occumed-us-west--r3-c1.pmtiles` — bbox `-133.0637,43.412897,-125.30665,49.45605` +- `occumed-us-west--r3-c2.pmtiles` — bbox `-125.30665,43.412897,-117.5496,49.45605` +- `occumed-us-west--r3-c3.pmtiles` — bbox `-117.5496,43.412897,-109.79255,49.45605` +- `occumed-us-west--r3-c4.pmtiles` — bbox `-109.79255,43.412897,-102.0355,49.45605` + +### britain-and-ireland + +Source size: 2.41 GiB +Children: 9 + +- `occumed-britain-and-ireland--r1-c1.pmtiles` — bbox `-15.05625,49,-8.885909,53.045213` +- `occumed-britain-and-ireland--r1-c2.pmtiles` — bbox `-8.885909,49,-2.715567,53.045213` +- `occumed-britain-and-ireland--r1-c3.pmtiles` — bbox `-2.715567,49,3.454774,53.045213` +- `occumed-britain-and-ireland--r2-c1.pmtiles` — bbox `-15.05625,53.045213,-8.885909,57.090427` +- `occumed-britain-and-ireland--r2-c2.pmtiles` — bbox `-8.885909,53.045213,-2.715567,57.090427` +- `occumed-britain-and-ireland--r2-c3.pmtiles` — bbox `-2.715567,53.045213,3.454774,57.090427` +- `occumed-britain-and-ireland--r3-c1.pmtiles` — bbox `-15.05625,57.090427,-8.885909,61.13564` +- `occumed-britain-and-ireland--r3-c2.pmtiles` — bbox `-8.885909,57.090427,-2.715567,61.13564` +- `occumed-britain-and-ireland--r3-c3.pmtiles` — bbox `-2.715567,57.090427,3.454774,61.13564` + +### us-midwest + +Source size: 2.30 GiB +Children: 12 + +- `occumed-us-midwest--r1-c1.pmtiles` — bbox `-104.0588,35.98507,-98.170403,40.459093` +- `occumed-us-midwest--r1-c2.pmtiles` — bbox `-98.170403,35.98507,-92.282005,40.459093` +- `occumed-us-midwest--r1-c3.pmtiles` — bbox `-92.282005,35.98507,-86.393608,40.459093` +- `occumed-us-midwest--r1-c4.pmtiles` — bbox `-86.393608,35.98507,-80.50521,40.459093` +- `occumed-us-midwest--r2-c1.pmtiles` — bbox `-104.0588,40.459093,-98.170403,44.933117` +- `occumed-us-midwest--r2-c2.pmtiles` — bbox `-98.170403,40.459093,-92.282005,44.933117` +- `occumed-us-midwest--r2-c3.pmtiles` — bbox `-92.282005,40.459093,-86.393608,44.933117` +- `occumed-us-midwest--r2-c4.pmtiles` — bbox `-86.393608,40.459093,-80.50521,44.933117` +- `occumed-us-midwest--r3-c1.pmtiles` — bbox `-104.0588,44.933117,-98.170403,49.40714` +- `occumed-us-midwest--r3-c2.pmtiles` — bbox `-98.170403,44.933117,-92.282005,49.40714` +- `occumed-us-midwest--r3-c3.pmtiles` — bbox `-92.282005,44.933117,-86.393608,49.40714` +- `occumed-us-midwest--r3-c4.pmtiles` — bbox `-86.393608,44.933117,-80.50521,49.40714` + +### alps + +Source size: 2.14 GiB +Children: 8 + +- `occumed-alps--r1-c1.pmtiles` — bbox `4.842221,42.69859,7.822263,45.549765` +- `occumed-alps--r1-c2.pmtiles` — bbox `7.822263,42.69859,10.802305,45.549765` +- `occumed-alps--r1-c3.pmtiles` — bbox `10.802305,42.69859,13.782348,45.549765` +- `occumed-alps--r1-c4.pmtiles` — bbox `13.782348,42.69859,16.76239,45.549765` +- `occumed-alps--r2-c1.pmtiles` — bbox `4.842221,45.549765,7.822263,48.40094` +- `occumed-alps--r2-c2.pmtiles` — bbox `7.822263,45.549765,10.802305,48.40094` +- `occumed-alps--r2-c3.pmtiles` — bbox `10.802305,45.549765,13.782348,48.40094` +- `occumed-alps--r2-c4.pmtiles` — bbox `13.782348,45.549765,16.76239,48.40094` + +### great-britain + +Source size: 2.00 GiB +Children: 9 + +- `occumed-great-britain--r1-c1.pmtiles` — bbox `-14.9907,49.523,-9.155909,53.39388` +- `occumed-great-britain--r1-c2.pmtiles` — bbox `-9.155909,49.523,-3.321119,53.39388` +- `occumed-great-britain--r1-c3.pmtiles` — bbox `-3.321119,49.523,2.513672,53.39388` +- `occumed-great-britain--r2-c1.pmtiles` — bbox `-14.9907,53.39388,-9.155909,57.26476` +- `occumed-great-britain--r2-c2.pmtiles` — bbox `-9.155909,53.39388,-3.321119,57.26476` +- `occumed-great-britain--r2-c3.pmtiles` — bbox `-3.321119,53.39388,2.513672,57.26476` +- `occumed-great-britain--r3-c1.pmtiles` — bbox `-14.9907,57.26476,-9.155909,61.13564` +- `occumed-great-britain--r3-c2.pmtiles` — bbox `-9.155909,57.26476,-3.321119,61.13564` +- `occumed-great-britain--r3-c3.pmtiles` — bbox `-3.321119,57.26476,2.513672,61.13564` + +### us-northeast + +Source size: 1.66 GiB +Children: 6 + +- `occumed-us-northeast--r1-c1.pmtiles` — bbox `-80.52275,38.74287,-75.97238,43.102545` +- `occumed-us-northeast--r1-c2.pmtiles` — bbox `-75.97238,38.74287,-71.42201,43.102545` +- `occumed-us-northeast--r1-c3.pmtiles` — bbox `-71.42201,38.74287,-66.87164,43.102545` +- `occumed-us-northeast--r2-c1.pmtiles` — bbox `-80.52275,43.102545,-75.97238,47.46222` +- `occumed-us-northeast--r2-c2.pmtiles` — bbox `-75.97238,43.102545,-71.42201,47.46222` +- `occumed-us-northeast--r2-c3.pmtiles` — bbox `-71.42201,43.102545,-66.87164,47.46222` + +### quebec + +Source size: 1.08 GiB +Children: 4 + +- `occumed-quebec--r1-c1.pmtiles` — bbox `-79.8404,44.98552,-68.46474,53.80586` +- `occumed-quebec--r1-c2.pmtiles` — bbox `-68.46474,44.98552,-57.08908,53.80586` +- `occumed-quebec--r2-c1.pmtiles` — bbox `-79.8404,53.80586,-68.46474,62.6262` +- `occumed-quebec--r2-c2.pmtiles` — bbox `-68.46474,53.80586,-57.08908,62.6262` + +### ontario + +Source size: 0.90 GiB +Children: 4 + +- `occumed-ontario--r1-c1.pmtiles` — bbox `-95.15965,41.66009,-84.734815,49.584175` +- `occumed-ontario--r1-c2.pmtiles` — bbox `-84.734815,41.66009,-74.30998,49.584175` +- `occumed-ontario--r2-c1.pmtiles` — bbox `-95.15965,49.584175,-84.734815,57.50826` +- `occumed-ontario--r2-c2.pmtiles` — bbox `-84.734815,49.584175,-74.30998,57.50826` + +### java + +Source size: 0.83 GiB +Children: 6 + +- `occumed-java--r1-c1.pmtiles` — bbox `104.1394,-9.541155,108.286733,-6.746545` +- `occumed-java--r1-c2.pmtiles` — bbox `108.286733,-9.541155,112.434067,-6.746545` +- `occumed-java--r1-c3.pmtiles` — bbox `112.434067,-9.541155,116.5814,-6.746545` +- `occumed-java--r2-c1.pmtiles` — bbox `104.1394,-6.746545,108.286733,-3.951935` +- `occumed-java--r2-c2.pmtiles` — bbox `108.286733,-6.746545,112.434067,-3.951935` +- `occumed-java--r2-c3.pmtiles` — bbox `112.434067,-6.746545,116.5814,-3.951935` + +### ukraine + +Source size: 0.81 GiB +Children: 6 + +- `occumed-ukraine--r1-c1.pmtiles` — bbox `22.13264,44.00862,28.167797,48.19756` +- `occumed-ukraine--r1-c2.pmtiles` — bbox `28.167797,44.00862,34.202953,48.19756` +- `occumed-ukraine--r1-c3.pmtiles` — bbox `34.202953,44.00862,40.23811,48.19756` +- `occumed-ukraine--r2-c1.pmtiles` — bbox `22.13264,48.19756,28.167797,52.3865` +- `occumed-ukraine--r2-c2.pmtiles` — bbox `28.167797,48.19756,34.202953,52.3865` +- `occumed-ukraine--r2-c3.pmtiles` — bbox `34.202953,48.19756,40.23811,52.3865` + +### central-fed-district + +Source size: 0.81 GiB +Children: 4 + +- `occumed-central-fed-district--r1-c1.pmtiles` — bbox `30.69976,49.50446,39.184995,54.57888` +- `occumed-central-fed-district--r1-c2.pmtiles` — bbox `39.184995,49.50446,47.67023,54.57888` +- `occumed-central-fed-district--r2-c1.pmtiles` — bbox `30.69976,54.57888,39.184995,59.6533` +- `occumed-central-fed-district--r2-c2.pmtiles` — bbox `39.184995,54.57888,47.67023,59.6533` + +### sudeste + +Source size: 0.79 GiB +Children: 6 + +- `occumed-sudeste--r1-c1.pmtiles` — bbox `-53.1189,-25.4993,-44.809917,-19.861875` +- `occumed-sudeste--r1-c2.pmtiles` — bbox `-44.809917,-25.4993,-36.500933,-19.861875` +- `occumed-sudeste--r1-c3.pmtiles` — bbox `-36.500933,-25.4993,-28.19195,-19.861875` +- `occumed-sudeste--r2-c1.pmtiles` — bbox `-53.1189,-19.861875,-44.809917,-14.22445` +- `occumed-sudeste--r2-c2.pmtiles` — bbox `-44.809917,-19.861875,-36.500933,-14.22445` +- `occumed-sudeste--r2-c3.pmtiles` — bbox `-36.500933,-19.861875,-28.19195,-14.22445` + diff --git a/audit/world-plan.json b/audit/world-plan.json new file mode 100644 index 00000000..e3d5401c --- /dev/null +++ b/audit/world-plan.json @@ -0,0 +1,10932 @@ +{ + "include": [ + { + "id": "act", + "slug": "act", + "name": "Australian Capital Territory", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/act-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "act", + "source_size_bytes": 18673503, + "west": 148.7583, + "south": -35.92548, + "east": 149.4018, + "north": -35.12093, + "asset_name": "occumed-act.pmtiles", + "metadata_name": "occumed-act.json" + }, + { + "id": "afghanistan", + "slug": "afghanistan", + "name": "Afghanistan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/afghanistan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "afghanistan", + "source_size_bytes": 112261028, + "west": 60.48761, + "south": 29.36856, + "east": 74.90017, + "north": 38.50674, + "asset_name": "occumed-afghanistan.pmtiles", + "metadata_name": "occumed-afghanistan.json" + }, + { + "id": "albania", + "slug": "albania", + "name": "Albania", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/albania-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "albania", + "source_size_bytes": 53771747, + "west": 18.89648, + "south": 39.62738, + "east": 21.06285, + "north": 42.66313, + "asset_name": "occumed-albania.pmtiles", + "metadata_name": "occumed-albania.json" + }, + { + "id": "alberta", + "slug": "alberta", + "name": "Alberta", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/alberta-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "alberta", + "source_size_bytes": 346434888, + "west": -120.0043, + "south": 48.99251, + "east": -110.0018, + "north": 60.00254, + "asset_name": "occumed-alberta.pmtiles", + "metadata_name": "occumed-alberta.json" + }, + { + "id": "algeria", + "slug": "algeria", + "name": "Algeria", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/algeria-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "algeria", + "source_size_bytes": 299073853, + "west": -8.704895, + "south": 18.92874, + "east": 12.03598, + "north": 37.77284, + "asset_name": "occumed-algeria.pmtiles", + "metadata_name": "occumed-algeria.json" + }, + { + "id": "alps--r1-c1", + "slug": "alps--r1-c1", + "name": "Alps 1.1", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", + "extract_bbox": "4.842221,42.69859,7.822263,45.549765", + "source_region_id": "alps", + "source_size_bytes": 2301582947, + "west": 4.842221, + "south": 42.69859, + "east": 7.822263, + "north": 45.549765, + "asset_name": "occumed-alps--r1-c1.pmtiles", + "metadata_name": "occumed-alps--r1-c1.json" + }, + { + "id": "alps--r1-c2", + "slug": "alps--r1-c2", + "name": "Alps 1.2", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", + "extract_bbox": "7.822263,42.69859,10.802305,45.549765", + "source_region_id": "alps", + "source_size_bytes": 2301582947, + "west": 7.822263, + "south": 42.69859, + "east": 10.802305, + "north": 45.549765, + "asset_name": "occumed-alps--r1-c2.pmtiles", + "metadata_name": "occumed-alps--r1-c2.json" + }, + { + "id": "alps--r1-c3", + "slug": "alps--r1-c3", + "name": "Alps 1.3", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", + "extract_bbox": "10.802305,42.69859,13.782348,45.549765", + "source_region_id": "alps", + "source_size_bytes": 2301582947, + "west": 10.802305, + "south": 42.69859, + "east": 13.782348, + "north": 45.549765, + "asset_name": "occumed-alps--r1-c3.pmtiles", + "metadata_name": "occumed-alps--r1-c3.json" + }, + { + "id": "alps--r1-c4", + "slug": "alps--r1-c4", + "name": "Alps 1.4", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", + "extract_bbox": "13.782348,42.69859,16.76239,45.549765", + "source_region_id": "alps", + "source_size_bytes": 2301582947, + "west": 13.782348, + "south": 42.69859, + "east": 16.76239, + "north": 45.549765, + "asset_name": "occumed-alps--r1-c4.pmtiles", + "metadata_name": "occumed-alps--r1-c4.json" + }, + { + "id": "alps--r2-c1", + "slug": "alps--r2-c1", + "name": "Alps 2.1", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", + "extract_bbox": "4.842221,45.549765,7.822263,48.40094", + "source_region_id": "alps", + "source_size_bytes": 2301582947, + "west": 4.842221, + "south": 45.549765, + "east": 7.822263, + "north": 48.40094, + "asset_name": "occumed-alps--r2-c1.pmtiles", + "metadata_name": "occumed-alps--r2-c1.json" + }, + { + "id": "alps--r2-c2", + "slug": "alps--r2-c2", + "name": "Alps 2.2", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", + "extract_bbox": "7.822263,45.549765,10.802305,48.40094", + "source_region_id": "alps", + "source_size_bytes": 2301582947, + "west": 7.822263, + "south": 45.549765, + "east": 10.802305, + "north": 48.40094, + "asset_name": "occumed-alps--r2-c2.pmtiles", + "metadata_name": "occumed-alps--r2-c2.json" + }, + { + "id": "alps--r2-c3", + "slug": "alps--r2-c3", + "name": "Alps 2.3", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", + "extract_bbox": "10.802305,45.549765,13.782348,48.40094", + "source_region_id": "alps", + "source_size_bytes": 2301582947, + "west": 10.802305, + "south": 45.549765, + "east": 13.782348, + "north": 48.40094, + "asset_name": "occumed-alps--r2-c3.pmtiles", + "metadata_name": "occumed-alps--r2-c3.json" + }, + { + "id": "alps--r2-c4", + "slug": "alps--r2-c4", + "name": "Alps 2.4", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", + "extract_bbox": "13.782348,45.549765,16.76239,48.40094", + "source_region_id": "alps", + "source_size_bytes": 2301582947, + "west": 13.782348, + "south": 45.549765, + "east": 16.76239, + "north": 48.40094, + "asset_name": "occumed-alps--r2-c4.pmtiles", + "metadata_name": "occumed-alps--r2-c4.json" + }, + { + "id": "alsace", + "slug": "alsace", + "name": "Alsace", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/alsace-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "alsace", + "source_size_bytes": 130028516, + "west": 6.838921, + "south": 47.41798, + "east": 8.235465, + "north": 49.07898, + "asset_name": "occumed-alsace.pmtiles", + "metadata_name": "occumed-alsace.json" + }, + { + "id": "american-oceania", + "slug": "american-oceania", + "name": "American Oceania", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/american-oceania-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "american-oceania", + "source_size_bytes": 5345823, + "west": 141.6357, + "south": -17.644, + "east": -160.2799, + "north": 22.02463, + "asset_name": "occumed-american-oceania.pmtiles", + "metadata_name": "occumed-american-oceania.json" + }, + { + "id": "andalucia", + "slug": "andalucia", + "name": "Andalucía", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/andalucia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "andalucia", + "source_size_bytes": 191470812, + "west": -7.52466, + "south": 35.70638, + "east": -1.332095, + "north": 38.73347, + "asset_name": "occumed-andalucia.pmtiles", + "metadata_name": "occumed-andalucia.json" + }, + { + "id": "andorra", + "slug": "andorra", + "name": "Andorra", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/andorra-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "andorra", + "source_size_bytes": 3425426, + "west": 1.412368, + "south": 42.4276, + "east": 1.787481, + "north": 42.65717, + "asset_name": "occumed-andorra.pmtiles", + "metadata_name": "occumed-andorra.json" + }, + { + "id": "angola", + "slug": "angola", + "name": "Angola", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/angola-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "angola", + "source_size_bytes": 84901428, + "west": 10.53848, + "south": -18.06508, + "east": 24.10297, + "north": -4.327925, + "asset_name": "occumed-angola.pmtiles", + "metadata_name": "occumed-angola.json" + }, + { + "id": "anhui", + "slug": "anhui", + "name": "Anhui", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/anhui-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "anhui", + "source_size_bytes": 43122938, + "west": 114.8693, + "south": 29.38816, + "east": 119.6566, + "north": 34.65496, + "asset_name": "occumed-anhui.pmtiles", + "metadata_name": "occumed-anhui.json" + }, + { + "id": "antarctica", + "slug": "antarctica", + "name": "Antarctica", + "continent": "antarctica", + "pbf_url": "https://download.geofabrik.de/antarctica-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "antarctica", + "source_size_bytes": 33091712, + "west": 180, + "south": -90, + "east": 180, + "north": -60, + "asset_name": "occumed-antarctica.pmtiles", + "metadata_name": "occumed-antarctica.json" + }, + { + "id": "aquitaine", + "slug": "aquitaine", + "name": "Aquitaine", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/aquitaine-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "aquitaine", + "source_size_bytes": 294080736, + "west": -1.842771, + "south": 42.77334, + "east": 1.450577, + "north": 45.71724, + "asset_name": "occumed-aquitaine.pmtiles", + "metadata_name": "occumed-aquitaine.json" + }, + { + "id": "aragon", + "slug": "aragon", + "name": "Aragón", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/aragon-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "aragon", + "source_size_bytes": 93144424, + "west": -2.17907, + "south": 39.83833, + "east": 0.772562, + "north": 42.92677, + "asset_name": "occumed-aragon.pmtiles", + "metadata_name": "occumed-aragon.json" + }, + { + "id": "argentina", + "slug": "argentina", + "name": "Argentina", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/argentina-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "argentina", + "source_size_bytes": 425708514, + "west": -73.61453, + "south": -55.68296, + "east": -53.63534, + "north": -21.72575, + "asset_name": "occumed-argentina.pmtiles", + "metadata_name": "occumed-argentina.json" + }, + { + "id": "armenia", + "slug": "armenia", + "name": "Armenia", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/armenia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "armenia", + "source_size_bytes": 52788402, + "west": 43.43821, + "south": 38.83743, + "east": 46.64262, + "north": 41.31029, + "asset_name": "occumed-armenia.pmtiles", + "metadata_name": "occumed-armenia.json" + }, + { + "id": "arnsberg-regbez", + "slug": "arnsberg-regbez", + "name": "Regierungsbezirk Arnsberg", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/nordrhein-westfalen/arnsberg-regbez-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "arnsberg-regbez", + "source_size_bytes": 193895671, + "west": 7.099633, + "south": 50.67897, + "east": 8.972531, + "north": 51.74709, + "asset_name": "occumed-arnsberg-regbez.pmtiles", + "metadata_name": "occumed-arnsberg-regbez.json" + }, + { + "id": "ashmore-cartier", + "slug": "ashmore-cartier", + "name": "Ashmore and Cartier Islands", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/ashmore-cartier-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "ashmore-cartier", + "source_size_bytes": 22591, + "west": 122.5681, + "south": -12.8482, + "east": 124.0416, + "north": -11.89266, + "asset_name": "occumed-ashmore-cartier.pmtiles", + "metadata_name": "occumed-ashmore-cartier.json" + }, + { + "id": "asturias", + "slug": "asturias", + "name": "Asturias", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/asturias-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "asturias", + "source_size_bytes": 36057899, + "west": -7.188576, + "south": 42.87886, + "east": -4.39956, + "north": 44.01101, + "asset_name": "occumed-asturias.pmtiles", + "metadata_name": "occumed-asturias.json" + }, + { + "id": "austria", + "slug": "austria", + "name": "Austria", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/austria-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "austria", + "source_size_bytes": 805295241, + "west": 9.52678, + "south": 46.36979, + "east": 17.16408, + "north": 49.02403, + "asset_name": "occumed-austria.pmtiles", + "metadata_name": "occumed-austria.json" + }, + { + "id": "auvergne", + "slug": "auvergne", + "name": "Auvergne", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/auvergne-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "auvergne", + "source_size_bytes": 153829928, + "west": 2.060519, + "south": 44.6146, + "east": 4.492907, + "north": 46.80668, + "asset_name": "occumed-auvergne.pmtiles", + "metadata_name": "occumed-auvergne.json" + }, + { + "id": "azerbaijan", + "slug": "azerbaijan", + "name": "Azerbaijan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/azerbaijan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "azerbaijan", + "source_size_bytes": 45603330, + "west": 44.75006, + "south": 38.24727, + "east": 51.7231, + "north": 42.67437, + "asset_name": "occumed-azerbaijan.pmtiles", + "metadata_name": "occumed-azerbaijan.json" + }, + { + "id": "azores", + "slug": "azores", + "name": "Azores", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/azores-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "azores", + "source_size_bytes": 17613112, + "west": -31.57293, + "south": 35.67791, + "east": -23.71814, + "north": 40.0757, + "asset_name": "occumed-azores.pmtiles", + "metadata_name": "occumed-azores.json" + }, + { + "id": "bahamas", + "slug": "bahamas", + "name": "Bahamas", + "continent": "central-america", + "pbf_url": "https://download.geofabrik.de/central-america/bahamas-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "bahamas", + "source_size_bytes": 14176240, + "west": -81.51857, + "south": 20.27251, + "east": -71.86673, + "north": 27.97497, + "asset_name": "occumed-bahamas.pmtiles", + "metadata_name": "occumed-bahamas.json" + }, + { + "id": "bangladesh", + "slug": "bangladesh", + "name": "Bangladesh", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/bangladesh-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "bangladesh", + "source_size_bytes": 351083349, + "west": 87.99765, + "south": 18.58403, + "east": 92.69714, + "north": 26.64677, + "asset_name": "occumed-bangladesh.pmtiles", + "metadata_name": "occumed-bangladesh.json" + }, + { + "id": "basse-normandie", + "slug": "basse-normandie", + "name": "Basse-Normandie", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/basse-normandie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "basse-normandie", + "source_size_bytes": 142870654, + "west": -2.087526, + "south": 48.17802, + "east": 0.979067, + "north": 49.88523, + "asset_name": "occumed-basse-normandie.pmtiles", + "metadata_name": "occumed-basse-normandie.json" + }, + { + "id": "bedfordshire", + "slug": "bedfordshire", + "name": "Bedfordshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/bedfordshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "bedfordshire", + "source_size_bytes": 14773941, + "west": -0.704092, + "south": 51.8036, + "east": -0.142022, + "north": 52.32483, + "asset_name": "occumed-bedfordshire.pmtiles", + "metadata_name": "occumed-bedfordshire.json" + }, + { + "id": "beijing", + "slug": "beijing", + "name": "Beijing", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/beijing-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "beijing", + "source_size_bytes": 36476465, + "west": 115.4155, + "south": 39.44083, + "east": 117.5095, + "north": 41.06382, + "asset_name": "occumed-beijing.pmtiles", + "metadata_name": "occumed-beijing.json" + }, + { + "id": "belarus", + "slug": "belarus", + "name": "Belarus", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/belarus-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "belarus", + "source_size_bytes": 347138379, + "west": 23.1748, + "south": 51.23441, + "east": 32.76947, + "north": 56.17385, + "asset_name": "occumed-belarus.pmtiles", + "metadata_name": "occumed-belarus.json" + }, + { + "id": "belgium", + "slug": "belgium", + "name": "Belgium", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/belgium-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "belgium", + "source_size_bytes": 690435372, + "west": 2.340725, + "south": 49.49489, + "east": 6.410265, + "north": 51.59839, + "asset_name": "occumed-belgium.pmtiles", + "metadata_name": "occumed-belgium.json" + }, + { + "id": "belize", + "slug": "belize", + "name": "Belize", + "continent": "central-america", + "pbf_url": "https://download.geofabrik.de/central-america/belize-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "belize", + "source_size_bytes": 18201939, + "west": -89.22892, + "south": 15.88308, + "east": -86.85983, + "north": 18.4984, + "asset_name": "occumed-belize.pmtiles", + "metadata_name": "occumed-belize.json" + }, + { + "id": "benin", + "slug": "benin", + "name": "Benin", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/benin-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "benin", + "source_size_bytes": 47896339, + "west": 0.761489, + "south": 5.984817, + "east": 3.861694, + "north": 12.43658, + "asset_name": "occumed-benin.pmtiles", + "metadata_name": "occumed-benin.json" + }, + { + "id": "berkshire", + "slug": "berkshire", + "name": "Berkshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/berkshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "berkshire", + "source_size_bytes": 22362897, + "west": -1.589073, + "south": 51.32802, + "east": -0.489118, + "north": 51.57873, + "asset_name": "occumed-berkshire.pmtiles", + "metadata_name": "occumed-berkshire.json" + }, + { + "id": "berlin", + "slug": "berlin", + "name": "Berlin", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/berlin-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "berlin", + "source_size_bytes": 98734204, + "west": 13.08283, + "south": 52.33446, + "east": 13.76225, + "north": 52.6783, + "asset_name": "occumed-berlin.pmtiles", + "metadata_name": "occumed-berlin.json" + }, + { + "id": "bermuda", + "slug": "bermuda", + "name": "Bermuda", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/bermuda-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "bermuda", + "source_size_bytes": 2032339, + "west": -65.2005, + "south": 32.02158, + "east": -64.39406, + "north": 32.62324, + "asset_name": "occumed-bermuda.pmtiles", + "metadata_name": "occumed-bermuda.json" + }, + { + "id": "bhutan", + "slug": "bhutan", + "name": "Bhutan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/bhutan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "bhutan", + "source_size_bytes": 23577576, + "west": 88.73917, + "south": 26.6948, + "east": 92.13159, + "north": 28.25372, + "asset_name": "occumed-bhutan.pmtiles", + "metadata_name": "occumed-bhutan.json" + }, + { + "id": "bolivia", + "slug": "bolivia", + "name": "Bolivia", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/bolivia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "bolivia", + "source_size_bytes": 172298334, + "west": -69.65675, + "south": -22.92551, + "east": -57.43481, + "north": -9.63866, + "asset_name": "occumed-bolivia.pmtiles", + "metadata_name": "occumed-bolivia.json" + }, + { + "id": "bosnia-herzegovina", + "slug": "bosnia-herzegovina", + "name": "Bosnia-Herzegovina", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/bosnia-herzegovina-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "bosnia-herzegovina", + "source_size_bytes": 159506546, + "west": 15.7156, + "south": 42.55239, + "east": 19.62639, + "north": 45.27803, + "asset_name": "occumed-bosnia-herzegovina.pmtiles", + "metadata_name": "occumed-bosnia-herzegovina.json" + }, + { + "id": "botswana", + "slug": "botswana", + "name": "Botswana", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/botswana-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "botswana", + "source_size_bytes": 87939248, + "west": 19.98745, + "south": -26.91539, + "east": 29.38549, + "north": -17.77403, + "asset_name": "occumed-botswana.pmtiles", + "metadata_name": "occumed-botswana.json" + }, + { + "id": "bourgogne", + "slug": "bourgogne", + "name": "Bourgogne", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/bourgogne-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "bourgogne", + "source_size_bytes": 198891797, + "west": 2.843279, + "south": 46.15484, + "east": 5.519965, + "north": 48.40136, + "asset_name": "occumed-bourgogne.pmtiles", + "metadata_name": "occumed-bourgogne.json" + }, + { + "id": "brandenburg", + "slug": "brandenburg", + "name": "Brandenburg (mit Berlin)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/brandenburg-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "brandenburg", + "source_size_bytes": 298130844, + "west": 11.22404, + "south": 51.35252, + "east": 14.77481, + "north": 53.5784, + "asset_name": "occumed-brandenburg.pmtiles", + "metadata_name": "occumed-brandenburg.json" + }, + { + "id": "bremen", + "slug": "bremen", + "name": "Bremen", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/bremen-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "bremen", + "source_size_bytes": 21092996, + "west": 8.480959, + "south": 53.01034, + "east": 8.991268, + "north": 53.61063, + "asset_name": "occumed-bremen.pmtiles", + "metadata_name": "occumed-bremen.json" + }, + { + "id": "bretagne", + "slug": "bretagne", + "name": "Bretagne", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/bretagne-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "bretagne", + "source_size_bytes": 326731713, + "west": -5.848854, + "south": 47.07722, + "east": -1.014538, + "north": 49.40025, + "asset_name": "occumed-bretagne.pmtiles", + "metadata_name": "occumed-bretagne.json" + }, + { + "id": "bristol", + "slug": "bristol", + "name": "Bristol", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/bristol-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "bristol", + "source_size_bytes": 13190773, + "west": -2.734665, + "south": 51.39611, + "east": -2.509528, + "north": 51.54562, + "asset_name": "occumed-bristol.pmtiles", + "metadata_name": "occumed-bristol.json" + }, + { + "id": "britain-and-ireland--r1-c1", + "slug": "britain-and-ireland--r1-c1", + "name": "Britain and Ireland 1.1", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/britain-and-ireland-latest.osm.pbf", + "extract_bbox": "-15.05625,49,-8.885909,53.045213", + "source_region_id": "britain-and-ireland", + "source_size_bytes": 2582404522, + "west": -15.05625, + "south": 49, + "east": -8.885909, + "north": 53.045213, + "asset_name": "occumed-britain-and-ireland--r1-c1.pmtiles", + "metadata_name": "occumed-britain-and-ireland--r1-c1.json" + }, + { + "id": "britain-and-ireland--r1-c2", + "slug": "britain-and-ireland--r1-c2", + "name": "Britain and Ireland 1.2", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/britain-and-ireland-latest.osm.pbf", + "extract_bbox": "-8.885909,49,-2.715567,53.045213", + "source_region_id": "britain-and-ireland", + "source_size_bytes": 2582404522, + "west": -8.885909, + "south": 49, + "east": -2.715567, + "north": 53.045213, + "asset_name": "occumed-britain-and-ireland--r1-c2.pmtiles", + "metadata_name": "occumed-britain-and-ireland--r1-c2.json" + }, + { + "id": "britain-and-ireland--r1-c3", + "slug": "britain-and-ireland--r1-c3", + "name": "Britain and Ireland 1.3", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/britain-and-ireland-latest.osm.pbf", + "extract_bbox": "-2.715567,49,3.454774,53.045213", + "source_region_id": "britain-and-ireland", + "source_size_bytes": 2582404522, + "west": -2.715567, + "south": 49, + "east": 3.454774, + "north": 53.045213, + "asset_name": "occumed-britain-and-ireland--r1-c3.pmtiles", + "metadata_name": "occumed-britain-and-ireland--r1-c3.json" + }, + { + "id": "britain-and-ireland--r2-c1", + "slug": "britain-and-ireland--r2-c1", + "name": "Britain and Ireland 2.1", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/britain-and-ireland-latest.osm.pbf", + "extract_bbox": "-15.05625,53.045213,-8.885909,57.090427", + "source_region_id": "britain-and-ireland", + "source_size_bytes": 2582404522, + "west": -15.05625, + "south": 53.045213, + "east": -8.885909, + "north": 57.090427, + "asset_name": "occumed-britain-and-ireland--r2-c1.pmtiles", + "metadata_name": "occumed-britain-and-ireland--r2-c1.json" + }, + { + "id": "britain-and-ireland--r2-c2", + "slug": "britain-and-ireland--r2-c2", + "name": "Britain and Ireland 2.2", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/britain-and-ireland-latest.osm.pbf", + "extract_bbox": "-8.885909,53.045213,-2.715567,57.090427", + "source_region_id": "britain-and-ireland", + "source_size_bytes": 2582404522, + "west": -8.885909, + "south": 53.045213, + "east": -2.715567, + "north": 57.090427, + "asset_name": "occumed-britain-and-ireland--r2-c2.pmtiles", + "metadata_name": "occumed-britain-and-ireland--r2-c2.json" + }, + { + "id": "britain-and-ireland--r2-c3", + "slug": "britain-and-ireland--r2-c3", + "name": "Britain and Ireland 2.3", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/britain-and-ireland-latest.osm.pbf", + "extract_bbox": "-2.715567,53.045213,3.454774,57.090427", + "source_region_id": "britain-and-ireland", + "source_size_bytes": 2582404522, + "west": -2.715567, + "south": 53.045213, + "east": 3.454774, + "north": 57.090427, + "asset_name": "occumed-britain-and-ireland--r2-c3.pmtiles", + "metadata_name": "occumed-britain-and-ireland--r2-c3.json" + }, + { + "id": "britain-and-ireland--r3-c1", + "slug": "britain-and-ireland--r3-c1", + "name": "Britain and Ireland 3.1", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/britain-and-ireland-latest.osm.pbf", + "extract_bbox": "-15.05625,57.090427,-8.885909,61.13564", + "source_region_id": "britain-and-ireland", + "source_size_bytes": 2582404522, + "west": -15.05625, + "south": 57.090427, + "east": -8.885909, + "north": 61.13564, + "asset_name": "occumed-britain-and-ireland--r3-c1.pmtiles", + "metadata_name": "occumed-britain-and-ireland--r3-c1.json" + }, + { + "id": "britain-and-ireland--r3-c2", + "slug": "britain-and-ireland--r3-c2", + "name": "Britain and Ireland 3.2", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/britain-and-ireland-latest.osm.pbf", + "extract_bbox": "-8.885909,57.090427,-2.715567,61.13564", + "source_region_id": "britain-and-ireland", + "source_size_bytes": 2582404522, + "west": -8.885909, + "south": 57.090427, + "east": -2.715567, + "north": 61.13564, + "asset_name": "occumed-britain-and-ireland--r3-c2.pmtiles", + "metadata_name": "occumed-britain-and-ireland--r3-c2.json" + }, + { + "id": "britain-and-ireland--r3-c3", + "slug": "britain-and-ireland--r3-c3", + "name": "Britain and Ireland 3.3", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/britain-and-ireland-latest.osm.pbf", + "extract_bbox": "-2.715567,57.090427,3.454774,61.13564", + "source_region_id": "britain-and-ireland", + "source_size_bytes": 2582404522, + "west": -2.715567, + "south": 57.090427, + "east": 3.454774, + "north": 61.13564, + "asset_name": "occumed-britain-and-ireland--r3-c3.pmtiles", + "metadata_name": "occumed-britain-and-ireland--r3-c3.json" + }, + { + "id": "buckinghamshire", + "slug": "buckinghamshire", + "name": "Buckinghamshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/buckinghamshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "buckinghamshire", + "source_size_bytes": 22329014, + "west": -1.140791, + "south": 51.48571, + "east": -0.482713, + "north": 52.19561, + "asset_name": "occumed-buckinghamshire.pmtiles", + "metadata_name": "occumed-buckinghamshire.json" + }, + { + "id": "bulgaria", + "slug": "bulgaria", + "name": "Bulgaria", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/bulgaria-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "bulgaria", + "source_size_bytes": 170466095, + "west": 22.34875, + "south": 41.22681, + "east": 29.18819, + "north": 44.21777, + "asset_name": "occumed-bulgaria.pmtiles", + "metadata_name": "occumed-bulgaria.json" + }, + { + "id": "burkina-faso", + "slug": "burkina-faso", + "name": "Burkina Faso", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/burkina-faso-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "burkina-faso", + "source_size_bytes": 84445676, + "west": -5.527409, + "south": 9.384107, + "east": 2.412529, + "north": 15.09271, + "asset_name": "occumed-burkina-faso.pmtiles", + "metadata_name": "occumed-burkina-faso.json" + }, + { + "id": "burundi", + "slug": "burundi", + "name": "Burundi", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/burundi-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "burundi", + "source_size_bytes": 46190862, + "west": 29.00018, + "south": -4.481328, + "east": 30.85115, + "north": -2.307893, + "asset_name": "occumed-burundi.pmtiles", + "metadata_name": "occumed-burundi.json" + }, + { + "id": "cambodia", + "slug": "cambodia", + "name": "Cambodia", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/cambodia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "cambodia", + "source_size_bytes": 40269859, + "west": 101.8522, + "south": 8.858092, + "east": 107.6397, + "north": 14.71875, + "asset_name": "occumed-cambodia.pmtiles", + "metadata_name": "occumed-cambodia.json" + }, + { + "id": "cambridgeshire", + "slug": "cambridgeshire", + "name": "Cambridgeshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/cambridgeshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "cambridgeshire", + "source_size_bytes": 34369442, + "west": -0.502126, + "south": 52.00517, + "east": 0.516191, + "north": 52.74155, + "asset_name": "occumed-cambridgeshire.pmtiles", + "metadata_name": "occumed-cambridgeshire.json" + }, + { + "id": "cameroon", + "slug": "cameroon", + "name": "Cameroon", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/cameroon-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "cameroon", + "source_size_bytes": 222963841, + "west": 8.33, + "south": 1.645663, + "east": 16.20312, + "north": 13.09278, + "asset_name": "occumed-cameroon.pmtiles", + "metadata_name": "occumed-cameroon.json" + }, + { + "id": "canary-islands", + "slug": "canary-islands", + "name": "Canary Islands", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/canary-islands-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "canary-islands", + "source_size_bytes": 59584660, + "west": -18.92352, + "south": 26.36117, + "east": -12.47875, + "north": 30.25648, + "asset_name": "occumed-canary-islands.pmtiles", + "metadata_name": "occumed-canary-islands.json" + }, + { + "id": "cantabria", + "slug": "cantabria", + "name": "Cantabria", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/cantabria-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "cantabria", + "source_size_bytes": 35214059, + "west": -4.861622, + "south": 42.75458, + "east": -3.144983, + "north": 43.86548, + "asset_name": "occumed-cantabria.pmtiles", + "metadata_name": "occumed-cantabria.json" + }, + { + "id": "cape-verde", + "slug": "cape-verde", + "name": "Cape Verde", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/cape-verde-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "cape-verde", + "source_size_bytes": 11677233, + "west": -26.32379, + "south": 14.00485, + "east": -21.39096, + "north": 18.005, + "asset_name": "occumed-cape-verde.pmtiles", + "metadata_name": "occumed-cape-verde.json" + }, + { + "id": "castilla-la-mancha", + "slug": "castilla-la-mancha", + "name": "Castilla-La Mancha", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/castilla-la-mancha-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "castilla-la-mancha", + "source_size_bytes": 104824741, + "west": -5.41111, + "south": 38.0201, + "east": -0.912552, + "north": 41.33223, + "asset_name": "occumed-castilla-la-mancha.pmtiles", + "metadata_name": "occumed-castilla-la-mancha.json" + }, + { + "id": "castilla-y-leon", + "slug": "castilla-y-leon", + "name": "Castilla y León", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/castilla-y-leon-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "castilla-y-leon", + "source_size_bytes": 173702946, + "west": -7.080517, + "south": 40.08044, + "east": -1.766053, + "north": 43.24095, + "asset_name": "occumed-castilla-y-leon.pmtiles", + "metadata_name": "occumed-castilla-y-leon.json" + }, + { + "id": "cataluna", + "slug": "cataluna", + "name": "Cataluña", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/cataluna-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "cataluna", + "source_size_bytes": 266103148, + "west": 0.156383, + "south": 40.21245, + "east": 4.174794, + "north": 42.8632, + "asset_name": "occumed-cataluna.pmtiles", + "metadata_name": "occumed-cataluna.json" + }, + { + "id": "central-african-republic", + "slug": "central-african-republic", + "name": "Central African Republic", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/central-african-republic-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "central-african-republic", + "source_size_bytes": 99356110, + "west": 14.40908, + "south": 2.208735, + "east": 27.47578, + "north": 11.03264, + "asset_name": "occumed-central-african-republic.pmtiles", + "metadata_name": "occumed-central-african-republic.json" + }, + { + "id": "central-fed-district--r1-c1", + "slug": "central-fed-district--r1-c1", + "name": "Central Federal District 1.1", + "continent": "central-fed-district", + "pbf_url": "https://download.geofabrik.de/russia/central-fed-district-latest.osm.pbf", + "extract_bbox": "30.69976,49.50446,39.184995,54.57888", + "source_region_id": "central-fed-district", + "source_size_bytes": 870533571, + "west": 30.69976, + "south": 49.50446, + "east": 39.184995, + "north": 54.57888, + "asset_name": "occumed-central-fed-district--r1-c1.pmtiles", + "metadata_name": "occumed-central-fed-district--r1-c1.json" + }, + { + "id": "central-fed-district--r1-c2", + "slug": "central-fed-district--r1-c2", + "name": "Central Federal District 1.2", + "continent": "central-fed-district", + "pbf_url": "https://download.geofabrik.de/russia/central-fed-district-latest.osm.pbf", + "extract_bbox": "39.184995,49.50446,47.67023,54.57888", + "source_region_id": "central-fed-district", + "source_size_bytes": 870533571, + "west": 39.184995, + "south": 49.50446, + "east": 47.67023, + "north": 54.57888, + "asset_name": "occumed-central-fed-district--r1-c2.pmtiles", + "metadata_name": "occumed-central-fed-district--r1-c2.json" + }, + { + "id": "central-fed-district--r2-c1", + "slug": "central-fed-district--r2-c1", + "name": "Central Federal District 2.1", + "continent": "central-fed-district", + "pbf_url": "https://download.geofabrik.de/russia/central-fed-district-latest.osm.pbf", + "extract_bbox": "30.69976,54.57888,39.184995,59.6533", + "source_region_id": "central-fed-district", + "source_size_bytes": 870533571, + "west": 30.69976, + "south": 54.57888, + "east": 39.184995, + "north": 59.6533, + "asset_name": "occumed-central-fed-district--r2-c1.pmtiles", + "metadata_name": "occumed-central-fed-district--r2-c1.json" + }, + { + "id": "central-fed-district--r2-c2", + "slug": "central-fed-district--r2-c2", + "name": "Central Federal District 2.2", + "continent": "central-fed-district", + "pbf_url": "https://download.geofabrik.de/russia/central-fed-district-latest.osm.pbf", + "extract_bbox": "39.184995,54.57888,47.67023,59.6533", + "source_region_id": "central-fed-district", + "source_size_bytes": 870533571, + "west": 39.184995, + "south": 54.57888, + "east": 47.67023, + "north": 59.6533, + "asset_name": "occumed-central-fed-district--r2-c2.pmtiles", + "metadata_name": "occumed-central-fed-district--r2-c2.json" + }, + { + "id": "central-zone", + "slug": "central-zone", + "name": "Central Zone", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/india/central-zone-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "central-zone", + "source_size_bytes": 350265638, + "west": 74.01489, + "south": 17.77092, + "east": 84.64657, + "north": 31.49075, + "asset_name": "occumed-central-zone.pmtiles", + "metadata_name": "occumed-central-zone.json" + }, + { + "id": "centre", + "slug": "centre", + "name": "Centre", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/centre-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "centre", + "source_size_bytes": 241326764, + "west": 0.051538, + "south": 46.34591, + "east": 3.129925, + "north": 48.9423, + "asset_name": "occumed-centre.pmtiles", + "metadata_name": "occumed-centre.json" + }, + { + "id": "centro", + "slug": "centro", + "name": "Centro", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/italy/centro-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "centro", + "source_size_bytes": 380947888, + "west": 9.306459, + "south": 40.21443, + "east": 14.66855, + "north": 44.4797, + "asset_name": "occumed-centro.pmtiles", + "metadata_name": "occumed-centro.json" + }, + { + "id": "centro-oeste", + "slug": "centro-oeste", + "name": "Centro-Oeste", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/brazil/centro-oeste-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "centro-oeste", + "source_size_bytes": 200581415, + "west": -61.66496, + "south": -24.18381, + "east": -45.87758, + "north": -7.317334, + "asset_name": "occumed-centro-oeste.pmtiles", + "metadata_name": "occumed-centro-oeste.json" + }, + { + "id": "ceuta", + "slug": "ceuta", + "name": "Ceuta", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/ceuta-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "ceuta", + "source_size_bytes": 588629, + "west": -5.391024, + "south": 35.86702, + "east": -5.256615, + "north": 35.95869, + "asset_name": "occumed-ceuta.pmtiles", + "metadata_name": "occumed-ceuta.json" + }, + { + "id": "chad", + "slug": "chad", + "name": "Chad", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/chad-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "chad", + "source_size_bytes": 134619384, + "west": 13.40129, + "south": 7.428518, + "east": 24.02527, + "north": 23.53793, + "asset_name": "occumed-chad.pmtiles", + "metadata_name": "occumed-chad.json" + }, + { + "id": "champagne-ardenne", + "slug": "champagne-ardenne", + "name": "Champagne Ardenne", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/champagne-ardenne-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "champagne-ardenne", + "source_size_bytes": 104717330, + "west": 3.382419, + "south": 47.57553, + "east": 5.892182, + "north": 50.17007, + "asset_name": "occumed-champagne-ardenne.pmtiles", + "metadata_name": "occumed-champagne-ardenne.json" + }, + { + "id": "cheshire", + "slug": "cheshire", + "name": "Cheshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/cheshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "cheshire", + "source_size_bytes": 37822711, + "west": -3.129775, + "south": 52.94553, + "east": -1.973135, + "north": 53.48263, + "asset_name": "occumed-cheshire.pmtiles", + "metadata_name": "occumed-cheshire.json" + }, + { + "id": "chile", + "slug": "chile", + "name": "Chile", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/chile-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "chile", + "source_size_bytes": 345289641, + "west": -113.2233, + "south": -58.45195, + "east": -65.5141, + "north": -17.45743, + "asset_name": "occumed-chile.pmtiles", + "metadata_name": "occumed-chile.json" + }, + { + "id": "chongqing", + "slug": "chongqing", + "name": "Chongqing", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/chongqing-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "chongqing", + "source_size_bytes": 30550250, + "west": 105.283, + "south": 28.15132, + "east": 110.2004, + "north": 32.20641, + "asset_name": "occumed-chongqing.pmtiles", + "metadata_name": "occumed-chongqing.json" + }, + { + "id": "christmas-island", + "slug": "christmas-island", + "name": "Christmas Island", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/christmas-island-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "christmas-island", + "source_size_bytes": 220771, + "west": 105.2993, + "south": -10.82656, + "east": 105.9946, + "north": -10.171, + "asset_name": "occumed-christmas-island.pmtiles", + "metadata_name": "occumed-christmas-island.json" + }, + { + "id": "chubu", + "slug": "chubu", + "name": "Chūbu region", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/japan/chubu-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "chubu", + "source_size_bytes": 506670748, + "west": 135.4393, + "south": 34.26649, + "east": 139.909, + "north": 38.90717, + "asset_name": "occumed-chubu.pmtiles", + "metadata_name": "occumed-chubu.json" + }, + { + "id": "chugoku", + "slug": "chugoku", + "name": "Chūgoku region", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/japan/chugoku-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "chugoku", + "source_size_bytes": 229080990, + "west": 129.8975, + "south": 33.54225, + "east": 134.5244, + "north": 36.9681, + "asset_name": "occumed-chugoku.pmtiles", + "metadata_name": "occumed-chugoku.json" + }, + { + "id": "cocos-islands", + "slug": "cocos-islands", + "name": "Cocos (Keeling) Islands", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/cocos-islands-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "cocos-islands", + "source_size_bytes": 264306, + "west": 96.45345, + "south": -12.5527, + "east": 97.24842, + "north": -11.54681, + "asset_name": "occumed-cocos-islands.pmtiles", + "metadata_name": "occumed-cocos-islands.json" + }, + { + "id": "colombia", + "slug": "colombia", + "name": "Colombia", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/colombia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "colombia", + "source_size_bytes": 322793836, + "west": -83.23104, + "south": -4.25732, + "east": -66.81472, + "north": 16.41924, + "asset_name": "occumed-colombia.pmtiles", + "metadata_name": "occumed-colombia.json" + }, + { + "id": "comores", + "slug": "comores", + "name": "Comores", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/comores-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "comores", + "source_size_bytes": 3975140, + "west": 42.74981, + "south": -12.969, + "east": 45.59661, + "north": -10.74181, + "asset_name": "occumed-comores.pmtiles", + "metadata_name": "occumed-comores.json" + }, + { + "id": "congo-brazzaville", + "slug": "congo-brazzaville", + "name": "Congo (Republic/Brazzaville)", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/congo-brazzaville-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "congo-brazzaville", + "source_size_bytes": 32335080, + "west": 10.94417, + "south": -5.195885, + "east": 18.66783, + "north": 3.740932, + "asset_name": "occumed-congo-brazzaville.pmtiles", + "metadata_name": "occumed-congo-brazzaville.json" + }, + { + "id": "congo-democratic-republic", + "slug": "congo-democratic-republic", + "name": "Congo (Democratic Republic/Kinshasa)", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/congo-democratic-republic-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "congo-democratic-republic", + "source_size_bytes": 414319908, + "west": 11.88343, + "south": -13.5006, + "east": 31.33569, + "north": 5.401396, + "asset_name": "occumed-congo-democratic-republic.pmtiles", + "metadata_name": "occumed-congo-democratic-republic.json" + }, + { + "id": "cook-islands", + "slug": "cook-islands", + "name": "Cook Islands", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/cook-islands-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "cook-islands", + "source_size_bytes": 960314, + "west": -168.4661, + "south": -25.28867, + "east": -154.8056, + "north": -5.800506, + "asset_name": "occumed-cook-islands.pmtiles", + "metadata_name": "occumed-cook-islands.json" + }, + { + "id": "coral-sea-islands", + "slug": "coral-sea-islands", + "name": "Coral Sea Islands", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/coral-sea-islands-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "coral-sea-islands", + "source_size_bytes": 180597, + "west": 146.8651, + "south": -30.57831, + "east": 160.4218, + "north": -14.98146, + "asset_name": "occumed-coral-sea-islands.pmtiles", + "metadata_name": "occumed-coral-sea-islands.json" + }, + { + "id": "cornwall", + "slug": "cornwall", + "name": "Cornwall", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/cornwall-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "cornwall", + "source_size_bytes": 33716091, + "west": -6.820424, + "south": 49.57808, + "east": -4.146631, + "north": 50.93213, + "asset_name": "occumed-cornwall.pmtiles", + "metadata_name": "occumed-cornwall.json" + }, + { + "id": "corse", + "slug": "corse", + "name": "Corse", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/corse-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "corse", + "source_size_bytes": 33975878, + "west": 8.317882, + "south": 41.31103, + "east": 9.751243, + "north": 43.16589, + "asset_name": "occumed-corse.pmtiles", + "metadata_name": "occumed-corse.json" + }, + { + "id": "costa-rica", + "slug": "costa-rica", + "name": "Costa Rica", + "continent": "central-america", + "pbf_url": "https://download.geofabrik.de/central-america/costa-rica-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "costa-rica", + "source_size_bytes": 38786017, + "west": -87.82473, + "south": 4.937746, + "east": -82.34952, + "north": 11.2237, + "asset_name": "occumed-costa-rica.pmtiles", + "metadata_name": "occumed-costa-rica.json" + }, + { + "id": "crimean-fed-district", + "slug": "crimean-fed-district", + "name": "Crimean Federal District", + "continent": "crimean-fed-district", + "pbf_url": "https://download.geofabrik.de/russia/crimean-fed-district-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "crimean-fed-district", + "source_size_bytes": 40350534, + "west": 32.15053, + "south": 44.13411, + "east": 36.68355, + "north": 46.28118, + "asset_name": "occumed-crimean-fed-district.pmtiles", + "metadata_name": "occumed-crimean-fed-district.json" + }, + { + "id": "croatia", + "slug": "croatia", + "name": "Croatia", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/croatia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "croatia", + "source_size_bytes": 197876732, + "west": 13.08916, + "south": 42.16483, + "east": 19.45997, + "north": 46.55756, + "asset_name": "occumed-croatia.pmtiles", + "metadata_name": "occumed-croatia.json" + }, + { + "id": "cuba", + "slug": "cuba", + "name": "Cuba", + "continent": "central-america", + "pbf_url": "https://download.geofabrik.de/central-america/cuba-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "cuba", + "source_size_bytes": 61120190, + "west": -85.4242, + "south": 19.2533, + "east": -73.70831, + "north": 23.60427, + "asset_name": "occumed-cuba.pmtiles", + "metadata_name": "occumed-cuba.json" + }, + { + "id": "cumbria", + "slug": "cumbria", + "name": "Cumbria", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/cumbria-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "cumbria", + "source_size_bytes": 45213361, + "west": -3.907471, + "south": 53.90063, + "east": -2.159588, + "north": 55.18863, + "asset_name": "occumed-cumbria.pmtiles", + "metadata_name": "occumed-cumbria.json" + }, + { + "id": "cyprus", + "slug": "cyprus", + "name": "Cyprus", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/cyprus-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "cyprus", + "source_size_bytes": 36839113, + "west": 31.95244, + "south": 34.23374, + "east": 34.96147, + "north": 36.00323, + "asset_name": "occumed-cyprus.pmtiles", + "metadata_name": "occumed-cyprus.json" + }, + { + "id": "dach--r1-c1", + "slug": "dach--r1-c1", + "name": "Germany, Austria, Switzerland 1.1", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "5.864417,45.81617,8.12408,47.68249", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 5.864417, + "south": 45.81617, + "east": 8.12408, + "north": 47.68249, + "asset_name": "occumed-dach--r1-c1.pmtiles", + "metadata_name": "occumed-dach--r1-c1.json" + }, + { + "id": "dach--r1-c2", + "slug": "dach--r1-c2", + "name": "Germany, Austria, Switzerland 1.2", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "8.12408,45.81617,10.383742,47.68249", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 8.12408, + "south": 45.81617, + "east": 10.383742, + "north": 47.68249, + "asset_name": "occumed-dach--r1-c2.pmtiles", + "metadata_name": "occumed-dach--r1-c2.json" + }, + { + "id": "dach--r1-c3", + "slug": "dach--r1-c3", + "name": "Germany, Austria, Switzerland 1.3", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "10.383742,45.81617,12.643405,47.68249", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 10.383742, + "south": 45.81617, + "east": 12.643405, + "north": 47.68249, + "asset_name": "occumed-dach--r1-c3.pmtiles", + "metadata_name": "occumed-dach--r1-c3.json" + }, + { + "id": "dach--r1-c4", + "slug": "dach--r1-c4", + "name": "Germany, Austria, Switzerland 1.4", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "12.643405,45.81617,14.903067,47.68249", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 12.643405, + "south": 45.81617, + "east": 14.903067, + "north": 47.68249, + "asset_name": "occumed-dach--r1-c4.pmtiles", + "metadata_name": "occumed-dach--r1-c4.json" + }, + { + "id": "dach--r1-c5", + "slug": "dach--r1-c5", + "name": "Germany, Austria, Switzerland 1.5", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "14.903067,45.81617,17.16273,47.68249", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 14.903067, + "south": 45.81617, + "east": 17.16273, + "north": 47.68249, + "asset_name": "occumed-dach--r1-c5.pmtiles", + "metadata_name": "occumed-dach--r1-c5.json" + }, + { + "id": "dach--r2-c1", + "slug": "dach--r2-c1", + "name": "Germany, Austria, Switzerland 2.1", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "5.864417,47.68249,8.12408,49.54881", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 5.864417, + "south": 47.68249, + "east": 8.12408, + "north": 49.54881, + "asset_name": "occumed-dach--r2-c1.pmtiles", + "metadata_name": "occumed-dach--r2-c1.json" + }, + { + "id": "dach--r2-c2", + "slug": "dach--r2-c2", + "name": "Germany, Austria, Switzerland 2.2", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "8.12408,47.68249,10.383742,49.54881", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 8.12408, + "south": 47.68249, + "east": 10.383742, + "north": 49.54881, + "asset_name": "occumed-dach--r2-c2.pmtiles", + "metadata_name": "occumed-dach--r2-c2.json" + }, + { + "id": "dach--r2-c3", + "slug": "dach--r2-c3", + "name": "Germany, Austria, Switzerland 2.3", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "10.383742,47.68249,12.643405,49.54881", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 10.383742, + "south": 47.68249, + "east": 12.643405, + "north": 49.54881, + "asset_name": "occumed-dach--r2-c3.pmtiles", + "metadata_name": "occumed-dach--r2-c3.json" + }, + { + "id": "dach--r2-c4", + "slug": "dach--r2-c4", + "name": "Germany, Austria, Switzerland 2.4", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "12.643405,47.68249,14.903067,49.54881", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 12.643405, + "south": 47.68249, + "east": 14.903067, + "north": 49.54881, + "asset_name": "occumed-dach--r2-c4.pmtiles", + "metadata_name": "occumed-dach--r2-c4.json" + }, + { + "id": "dach--r2-c5", + "slug": "dach--r2-c5", + "name": "Germany, Austria, Switzerland 2.5", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "14.903067,47.68249,17.16273,49.54881", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 14.903067, + "south": 47.68249, + "east": 17.16273, + "north": 49.54881, + "asset_name": "occumed-dach--r2-c5.pmtiles", + "metadata_name": "occumed-dach--r2-c5.json" + }, + { + "id": "dach--r3-c1", + "slug": "dach--r3-c1", + "name": "Germany, Austria, Switzerland 3.1", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "5.864417,49.54881,8.12408,51.41513", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 5.864417, + "south": 49.54881, + "east": 8.12408, + "north": 51.41513, + "asset_name": "occumed-dach--r3-c1.pmtiles", + "metadata_name": "occumed-dach--r3-c1.json" + }, + { + "id": "dach--r3-c2", + "slug": "dach--r3-c2", + "name": "Germany, Austria, Switzerland 3.2", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "8.12408,49.54881,10.383742,51.41513", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 8.12408, + "south": 49.54881, + "east": 10.383742, + "north": 51.41513, + "asset_name": "occumed-dach--r3-c2.pmtiles", + "metadata_name": "occumed-dach--r3-c2.json" + }, + { + "id": "dach--r3-c3", + "slug": "dach--r3-c3", + "name": "Germany, Austria, Switzerland 3.3", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "10.383742,49.54881,12.643405,51.41513", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 10.383742, + "south": 49.54881, + "east": 12.643405, + "north": 51.41513, + "asset_name": "occumed-dach--r3-c3.pmtiles", + "metadata_name": "occumed-dach--r3-c3.json" + }, + { + "id": "dach--r3-c4", + "slug": "dach--r3-c4", + "name": "Germany, Austria, Switzerland 3.4", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "12.643405,49.54881,14.903067,51.41513", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 12.643405, + "south": 49.54881, + "east": 14.903067, + "north": 51.41513, + "asset_name": "occumed-dach--r3-c4.pmtiles", + "metadata_name": "occumed-dach--r3-c4.json" + }, + { + "id": "dach--r3-c5", + "slug": "dach--r3-c5", + "name": "Germany, Austria, Switzerland 3.5", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "14.903067,49.54881,17.16273,51.41513", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 14.903067, + "south": 49.54881, + "east": 17.16273, + "north": 51.41513, + "asset_name": "occumed-dach--r3-c5.pmtiles", + "metadata_name": "occumed-dach--r3-c5.json" + }, + { + "id": "dach--r4-c1", + "slug": "dach--r4-c1", + "name": "Germany, Austria, Switzerland 4.1", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "5.864417,51.41513,8.12408,53.28145", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 5.864417, + "south": 51.41513, + "east": 8.12408, + "north": 53.28145, + "asset_name": "occumed-dach--r4-c1.pmtiles", + "metadata_name": "occumed-dach--r4-c1.json" + }, + { + "id": "dach--r4-c2", + "slug": "dach--r4-c2", + "name": "Germany, Austria, Switzerland 4.2", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "8.12408,51.41513,10.383742,53.28145", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 8.12408, + "south": 51.41513, + "east": 10.383742, + "north": 53.28145, + "asset_name": "occumed-dach--r4-c2.pmtiles", + "metadata_name": "occumed-dach--r4-c2.json" + }, + { + "id": "dach--r4-c3", + "slug": "dach--r4-c3", + "name": "Germany, Austria, Switzerland 4.3", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "10.383742,51.41513,12.643405,53.28145", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 10.383742, + "south": 51.41513, + "east": 12.643405, + "north": 53.28145, + "asset_name": "occumed-dach--r4-c3.pmtiles", + "metadata_name": "occumed-dach--r4-c3.json" + }, + { + "id": "dach--r4-c4", + "slug": "dach--r4-c4", + "name": "Germany, Austria, Switzerland 4.4", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "12.643405,51.41513,14.903067,53.28145", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 12.643405, + "south": 51.41513, + "east": 14.903067, + "north": 53.28145, + "asset_name": "occumed-dach--r4-c4.pmtiles", + "metadata_name": "occumed-dach--r4-c4.json" + }, + { + "id": "dach--r4-c5", + "slug": "dach--r4-c5", + "name": "Germany, Austria, Switzerland 4.5", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "14.903067,51.41513,17.16273,53.28145", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 14.903067, + "south": 51.41513, + "east": 17.16273, + "north": 53.28145, + "asset_name": "occumed-dach--r4-c5.pmtiles", + "metadata_name": "occumed-dach--r4-c5.json" + }, + { + "id": "dach--r5-c1", + "slug": "dach--r5-c1", + "name": "Germany, Austria, Switzerland 5.1", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "5.864417,53.28145,8.12408,55.14777", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 5.864417, + "south": 53.28145, + "east": 8.12408, + "north": 55.14777, + "asset_name": "occumed-dach--r5-c1.pmtiles", + "metadata_name": "occumed-dach--r5-c1.json" + }, + { + "id": "dach--r5-c2", + "slug": "dach--r5-c2", + "name": "Germany, Austria, Switzerland 5.2", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "8.12408,53.28145,10.383742,55.14777", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 8.12408, + "south": 53.28145, + "east": 10.383742, + "north": 55.14777, + "asset_name": "occumed-dach--r5-c2.pmtiles", + "metadata_name": "occumed-dach--r5-c2.json" + }, + { + "id": "dach--r5-c3", + "slug": "dach--r5-c3", + "name": "Germany, Austria, Switzerland 5.3", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "10.383742,53.28145,12.643405,55.14777", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 10.383742, + "south": 53.28145, + "east": 12.643405, + "north": 55.14777, + "asset_name": "occumed-dach--r5-c3.pmtiles", + "metadata_name": "occumed-dach--r5-c3.json" + }, + { + "id": "dach--r5-c4", + "slug": "dach--r5-c4", + "name": "Germany, Austria, Switzerland 5.4", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "12.643405,53.28145,14.903067,55.14777", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 12.643405, + "south": 53.28145, + "east": 14.903067, + "north": 55.14777, + "asset_name": "occumed-dach--r5-c4.pmtiles", + "metadata_name": "occumed-dach--r5-c4.json" + }, + { + "id": "dach--r5-c5", + "slug": "dach--r5-c5", + "name": "Germany, Austria, Switzerland 5.5", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", + "extract_bbox": "14.903067,53.28145,17.16273,55.14777", + "source_region_id": "dach", + "source_size_bytes": 6183091366, + "west": 14.903067, + "south": 53.28145, + "east": 17.16273, + "north": 55.14777, + "asset_name": "occumed-dach--r5-c5.pmtiles", + "metadata_name": "occumed-dach--r5-c5.json" + }, + { + "id": "denmark", + "slug": "denmark", + "name": "Denmark", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/denmark-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "denmark", + "source_size_bytes": 491855657, + "west": 7.7011, + "south": 54.44065, + "east": 15.65449, + "north": 58.06239, + "asset_name": "occumed-denmark.pmtiles", + "metadata_name": "occumed-denmark.json" + }, + { + "id": "derbyshire", + "slug": "derbyshire", + "name": "Derbyshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/derbyshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "derbyshire", + "source_size_bytes": 43481367, + "west": -2.035756, + "south": 52.6955, + "east": -1.164792, + "north": 53.54172, + "asset_name": "occumed-derbyshire.pmtiles", + "metadata_name": "occumed-derbyshire.json" + }, + { + "id": "detmold-regbez", + "slug": "detmold-regbez", + "name": "Regierungsbezirk Detmold", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/nordrhein-westfalen/detmold-regbez-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "detmold-regbez", + "source_size_bytes": 135459383, + "west": 8.074053, + "south": 51.4369, + "east": 9.468311, + "north": 52.53345, + "asset_name": "occumed-detmold-regbez.pmtiles", + "metadata_name": "occumed-detmold-regbez.json" + }, + { + "id": "devon", + "slug": "devon", + "name": "Devon", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/devon-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "devon", + "source_size_bytes": 57383294, + "west": -4.752335, + "south": 50.11104, + "east": -2.881604, + "north": 51.30895, + "asset_name": "occumed-devon.pmtiles", + "metadata_name": "occumed-devon.json" + }, + { + "id": "djibouti", + "slug": "djibouti", + "name": "Djibouti", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/djibouti-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "djibouti", + "source_size_bytes": 7011051, + "west": 41.76177, + "south": 10.88824, + "east": 43.84569, + "north": 12.82615, + "asset_name": "occumed-djibouti.pmtiles", + "metadata_name": "occumed-djibouti.json" + }, + { + "id": "dolnoslaskie", + "slug": "dolnoslaskie", + "name": "Województwo dolnośląskie
(Lower Silesian Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/dolnoslaskie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "dolnoslaskie", + "source_size_bytes": 178590697, + "west": 14.80839, + "south": 50.08251, + "east": 17.80584, + "north": 51.81417, + "asset_name": "occumed-dolnoslaskie.pmtiles", + "metadata_name": "occumed-dolnoslaskie.json" + }, + { + "id": "dorset", + "slug": "dorset", + "name": "Dorset", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/dorset-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "dorset", + "source_size_bytes": 29961066, + "west": -2.962969, + "south": 50.49829, + "east": -1.680036, + "north": 51.0827, + "asset_name": "occumed-dorset.pmtiles", + "metadata_name": "occumed-dorset.json" + }, + { + "id": "drenthe", + "slug": "drenthe", + "name": "Drenthe", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/netherlands/drenthe-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "drenthe", + "source_size_bytes": 62876187, + "west": 6.118592, + "south": 52.61093, + "east": 7.095411, + "north": 53.20513, + "asset_name": "occumed-drenthe.pmtiles", + "metadata_name": "occumed-drenthe.json" + }, + { + "id": "duesseldorf-regbez", + "slug": "duesseldorf-regbez", + "name": "Regierungsbezirk Düsseldorf", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/nordrhein-westfalen/duesseldorf-regbez-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "duesseldorf-regbez", + "source_size_bytes": 214774184, + "west": 5.941466, + "south": 51.01422, + "east": 7.314306, + "north": 51.90781, + "asset_name": "occumed-duesseldorf-regbez.pmtiles", + "metadata_name": "occumed-duesseldorf-regbez.json" + }, + { + "id": "durham", + "slug": "durham", + "name": "Durham", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/durham-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "durham", + "source_size_bytes": 23281006, + "west": -2.356677, + "south": 54.4502, + "east": -1.101584, + "north": 54.91986, + "asset_name": "occumed-durham.pmtiles", + "metadata_name": "occumed-durham.json" + }, + { + "id": "east-sussex", + "slug": "east-sussex", + "name": "East Sussex", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/east-sussex-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "east-sussex", + "source_size_bytes": 21103547, + "west": -0.136786, + "south": 50.69996, + "east": 0.869466, + "north": 51.14781, + "asset_name": "occumed-east-sussex.pmtiles", + "metadata_name": "occumed-east-sussex.json" + }, + { + "id": "east-timor", + "slug": "east-timor", + "name": "East Timor", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/east-timor-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "east-timor", + "source_size_bytes": 17764094, + "west": 123.7912, + "south": -9.690103, + "east": 127.5911, + "north": -8.057869, + "asset_name": "occumed-east-timor.pmtiles", + "metadata_name": "occumed-east-timor.json" + }, + { + "id": "east-yorkshire-with-hull", + "slug": "east-yorkshire-with-hull", + "name": "East Yorkshire with Hull", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/east-yorkshire-with-hull-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "east-yorkshire-with-hull", + "source_size_bytes": 19209722, + "west": -1.105174, + "south": 53.55447, + "east": 0.48944, + "north": 54.21045, + "asset_name": "occumed-east-yorkshire-with-hull.pmtiles", + "metadata_name": "occumed-east-yorkshire-with-hull.json" + }, + { + "id": "eastern-zone", + "slug": "eastern-zone", + "name": "Eastern Zone", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/india/eastern-zone-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "eastern-zone", + "source_size_bytes": 247388882, + "west": 81.36749, + "south": 17.78056, + "east": 89.91829, + "north": 27.52837, + "asset_name": "occumed-eastern-zone.pmtiles", + "metadata_name": "occumed-eastern-zone.json" + }, + { + "id": "ecuador", + "slug": "ecuador", + "name": "Ecuador", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/ecuador-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "ecuador", + "source_size_bytes": 124286545, + "west": -93.56487, + "south": -5.024173, + "east": -75.16149, + "north": 2.843487, + "asset_name": "occumed-ecuador.pmtiles", + "metadata_name": "occumed-ecuador.json" + }, + { + "id": "egypt", + "slug": "egypt", + "name": "Egypt", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/egypt-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "egypt", + "source_size_bytes": 177541001, + "west": 24.62628, + "south": 21.9838, + "east": 37.16263, + "north": 32.52518, + "asset_name": "occumed-egypt.pmtiles", + "metadata_name": "occumed-egypt.json" + }, + { + "id": "el-salvador", + "slug": "el-salvador", + "name": "El Salvador", + "continent": "central-america", + "pbf_url": "https://download.geofabrik.de/central-america/el-salvador-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "el-salvador", + "source_size_bytes": 34814427, + "west": -90.50091, + "south": 12.03598, + "east": -87.58438, + "north": 14.45762, + "asset_name": "occumed-el-salvador.pmtiles", + "metadata_name": "occumed-el-salvador.json" + }, + { + "id": "enfield", + "slug": "enfield", + "name": "Enfield", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/london/enfield-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "enfield", + "source_size_bytes": 2940, + "west": -0.185433, + "south": 51.60542, + "east": -0.008839, + "north": 51.69193, + "asset_name": "occumed-enfield.pmtiles", + "metadata_name": "occumed-enfield.json" + }, + { + "id": "equatorial-guinea", + "slug": "equatorial-guinea", + "name": "Equatorial Guinea", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/equatorial-guinea-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "equatorial-guinea", + "source_size_bytes": 6522139, + "west": 5.165631, + "south": -1.792669, + "east": 11.42338, + "north": 4.147134, + "asset_name": "occumed-equatorial-guinea.pmtiles", + "metadata_name": "occumed-equatorial-guinea.json" + }, + { + "id": "eritrea", + "slug": "eritrea", + "name": "Eritrea", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/eritrea-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "eritrea", + "source_size_bytes": 31016514, + "west": 36.4207, + "south": 12.34385, + "east": 43.33233, + "north": 18.32962, + "asset_name": "occumed-eritrea.pmtiles", + "metadata_name": "occumed-eritrea.json" + }, + { + "id": "essex", + "slug": "essex", + "name": "Essex", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/essex-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "essex", + "source_size_bytes": 49300987, + "west": -0.019651, + "south": 51.45008, + "east": 1.307251, + "north": 52.09464, + "asset_name": "occumed-essex.pmtiles", + "metadata_name": "occumed-essex.json" + }, + { + "id": "estonia", + "slug": "estonia", + "name": "Estonia", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/estonia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "estonia", + "source_size_bytes": 121675703, + "west": 20.85166, + "south": 57.49764, + "east": 28.21426, + "north": 59.99705, + "asset_name": "occumed-estonia.pmtiles", + "metadata_name": "occumed-estonia.json" + }, + { + "id": "ethiopia", + "slug": "ethiopia", + "name": "Ethiopia", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/ethiopia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "ethiopia", + "source_size_bytes": 138957337, + "west": 32.96722, + "south": 3.389192, + "east": 48.00545, + "north": 14.91626, + "asset_name": "occumed-ethiopia.pmtiles", + "metadata_name": "occumed-ethiopia.json" + }, + { + "id": "extremadura", + "slug": "extremadura", + "name": "Extremadura", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/extremadura-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "extremadura", + "source_size_bytes": 39531871, + "west": -7.54369, + "south": 37.93851, + "east": -4.64241, + "north": 40.48913, + "asset_name": "occumed-extremadura.pmtiles", + "metadata_name": "occumed-extremadura.json" + }, + { + "id": "falklands", + "slug": "falklands", + "name": "Falkland Islands", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/falklands-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "falklands", + "source_size_bytes": 5518247, + "west": -62.20142, + "south": -53.40604, + "east": -56.44453, + "north": -50.67405, + "asset_name": "occumed-falklands.pmtiles", + "metadata_name": "occumed-falklands.json" + }, + { + "id": "far-eastern-fed-district", + "slug": "far-eastern-fed-district", + "name": "Far Eastern Federal District", + "continent": "far-eastern-fed-district", + "pbf_url": "https://download.geofabrik.de/russia/far-eastern-fed-district-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "far-eastern-fed-district", + "source_size_bytes": 382626201, + "west": 105.4219, + "south": 37.34659, + "east": -168.6841, + "north": 82.00023, + "asset_name": "occumed-far-eastern-fed-district.pmtiles", + "metadata_name": "occumed-far-eastern-fed-district.json" + }, + { + "id": "faroe-islands", + "slug": "faroe-islands", + "name": "Faroe Islands", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/faroe-islands-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "faroe-islands", + "source_size_bytes": 7720094, + "west": -8.690197, + "south": 60.86632, + "east": -5.515148, + "north": 62.90523, + "asset_name": "occumed-faroe-islands.pmtiles", + "metadata_name": "occumed-faroe-islands.json" + }, + { + "id": "fiji", + "slug": "fiji", + "name": "Fiji", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/fiji-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "fiji", + "source_size_bytes": 17220053, + "west": 172.7647, + "south": -25.08127, + "east": -176.2675, + "north": -9.783321, + "asset_name": "occumed-fiji.pmtiles", + "metadata_name": "occumed-fiji.json" + }, + { + "id": "finland", + "slug": "finland", + "name": "Finland", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/finland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "finland", + "source_size_bytes": 736649337, + "west": 19.02427, + "south": 59.28783, + "east": 31.6159, + "north": 70.09959, + "asset_name": "occumed-finland.pmtiles", + "metadata_name": "occumed-finland.json" + }, + { + "id": "flevoland", + "slug": "flevoland", + "name": "Flevoland", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/netherlands/flevoland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "flevoland", + "source_size_bytes": 34428527, + "west": 5.059593, + "south": 52.24826, + "east": 6.018276, + "north": 52.84516, + "asset_name": "occumed-flevoland.pmtiles", + "metadata_name": "occumed-flevoland.json" + }, + { + "id": "franche-comte", + "slug": "franche-comte", + "name": "Franche Comte", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/franche-comte-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "franche-comte", + "source_size_bytes": 123591632, + "west": 5.25076, + "south": 46.25975, + "east": 7.14439, + "north": 48.02537, + "asset_name": "occumed-franche-comte.pmtiles", + "metadata_name": "occumed-franche-comte.json" + }, + { + "id": "freiburg-regbez", + "slug": "freiburg-regbez", + "name": "Regierungsbezirk Freiburg", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/baden-wuerttemberg/freiburg-regbez-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "freiburg-regbez", + "source_size_bytes": 158218914, + "west": 7.506494, + "south": 47.53076, + "east": 9.246965, + "north": 48.72373, + "asset_name": "occumed-freiburg-regbez.pmtiles", + "metadata_name": "occumed-freiburg-regbez.json" + }, + { + "id": "friesland", + "slug": "friesland", + "name": "Friesland", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/netherlands/friesland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "friesland", + "source_size_bytes": 88191021, + "west": 4.597294, + "south": 52.76362, + "east": 6.428358, + "north": 53.68089, + "asset_name": "occumed-friesland.pmtiles", + "metadata_name": "occumed-friesland.json" + }, + { + "id": "fujian", + "slug": "fujian", + "name": "Fujian", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/fujian-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "fujian", + "source_size_bytes": 41434849, + "west": 115.8409, + "south": 23.18252, + "east": 121.6277, + "north": 28.32237, + "asset_name": "occumed-fujian.pmtiles", + "metadata_name": "occumed-fujian.json" + }, + { + "id": "gabon", + "slug": "gabon", + "name": "Gabon", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/gabon-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "gabon", + "source_size_bytes": 25359553, + "west": 7.389727, + "south": -5.995799, + "east": 14.55139, + "north": 2.325716, + "asset_name": "occumed-gabon.pmtiles", + "metadata_name": "occumed-gabon.json" + }, + { + "id": "galicia", + "slug": "galicia", + "name": "Galicia", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/galicia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "galicia", + "source_size_bytes": 110201073, + "west": -9.779014, + "south": 41.80443, + "east": -6.727066, + "north": 44.14855, + "asset_name": "occumed-galicia.pmtiles", + "metadata_name": "occumed-galicia.json" + }, + { + "id": "gansu", + "slug": "gansu", + "name": "Gansu", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/gansu-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "gansu", + "source_size_bytes": 56635973, + "west": 92.29907, + "south": 32.58438, + "east": 108.7193, + "north": 42.81354, + "asset_name": "occumed-gansu.pmtiles", + "metadata_name": "occumed-gansu.json" + }, + { + "id": "gcc-states", + "slug": "gcc-states", + "name": "GCC States", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/gcc-states-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "gcc-states", + "source_size_bytes": 251836057, + "west": 34.43489, + "south": 15.24752, + "east": 60.94748, + "north": 32.19653, + "asset_name": "occumed-gcc-states.pmtiles", + "metadata_name": "occumed-gcc-states.json" + }, + { + "id": "gelderland", + "slug": "gelderland", + "name": "Gelderland", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/netherlands/gelderland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "gelderland", + "source_size_bytes": 193951720, + "west": 4.992647, + "south": 51.73231, + "east": 6.835752, + "north": 52.52322, + "asset_name": "occumed-gelderland.pmtiles", + "metadata_name": "occumed-gelderland.json" + }, + { + "id": "georgia", + "slug": "georgia", + "name": "Georgia", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/georgia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "georgia", + "source_size_bytes": 100441173, + "west": 39.88093, + "south": 41.05117, + "east": 46.73959, + "north": 43.5899, + "asset_name": "occumed-georgia.pmtiles", + "metadata_name": "occumed-georgia.json" + }, + { + "id": "ghana", + "slug": "ghana", + "name": "Ghana", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/ghana-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "ghana", + "source_size_bytes": 114709460, + "west": -3.807399, + "south": 3.704056, + "east": 1.394038, + "north": 11.17772, + "asset_name": "occumed-ghana.pmtiles", + "metadata_name": "occumed-ghana.json" + }, + { + "id": "gloucestershire", + "slug": "gloucestershire", + "name": "Gloucestershire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/gloucestershire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "gloucestershire", + "source_size_bytes": 40552613, + "west": -2.711909, + "south": 51.41465, + "east": -1.612605, + "north": 52.11556, + "asset_name": "occumed-gloucestershire.pmtiles", + "metadata_name": "occumed-gloucestershire.json" + }, + { + "id": "great-britain--r1-c1", + "slug": "great-britain--r1-c1", + "name": "Great Britain 1.1", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/great-britain-latest.osm.pbf", + "extract_bbox": "-14.9907,49.523,-9.155909,53.39388", + "source_region_id": "great-britain", + "source_size_bytes": 2152354131, + "west": -14.9907, + "south": 49.523, + "east": -9.155909, + "north": 53.39388, + "asset_name": "occumed-great-britain--r1-c1.pmtiles", + "metadata_name": "occumed-great-britain--r1-c1.json" + }, + { + "id": "great-britain--r1-c2", + "slug": "great-britain--r1-c2", + "name": "Great Britain 1.2", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/great-britain-latest.osm.pbf", + "extract_bbox": "-9.155909,49.523,-3.321119,53.39388", + "source_region_id": "great-britain", + "source_size_bytes": 2152354131, + "west": -9.155909, + "south": 49.523, + "east": -3.321119, + "north": 53.39388, + "asset_name": "occumed-great-britain--r1-c2.pmtiles", + "metadata_name": "occumed-great-britain--r1-c2.json" + }, + { + "id": "great-britain--r1-c3", + "slug": "great-britain--r1-c3", + "name": "Great Britain 1.3", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/great-britain-latest.osm.pbf", + "extract_bbox": "-3.321119,49.523,2.513672,53.39388", + "source_region_id": "great-britain", + "source_size_bytes": 2152354131, + "west": -3.321119, + "south": 49.523, + "east": 2.513672, + "north": 53.39388, + "asset_name": "occumed-great-britain--r1-c3.pmtiles", + "metadata_name": "occumed-great-britain--r1-c3.json" + }, + { + "id": "great-britain--r2-c1", + "slug": "great-britain--r2-c1", + "name": "Great Britain 2.1", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/great-britain-latest.osm.pbf", + "extract_bbox": "-14.9907,53.39388,-9.155909,57.26476", + "source_region_id": "great-britain", + "source_size_bytes": 2152354131, + "west": -14.9907, + "south": 53.39388, + "east": -9.155909, + "north": 57.26476, + "asset_name": "occumed-great-britain--r2-c1.pmtiles", + "metadata_name": "occumed-great-britain--r2-c1.json" + }, + { + "id": "great-britain--r2-c2", + "slug": "great-britain--r2-c2", + "name": "Great Britain 2.2", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/great-britain-latest.osm.pbf", + "extract_bbox": "-9.155909,53.39388,-3.321119,57.26476", + "source_region_id": "great-britain", + "source_size_bytes": 2152354131, + "west": -9.155909, + "south": 53.39388, + "east": -3.321119, + "north": 57.26476, + "asset_name": "occumed-great-britain--r2-c2.pmtiles", + "metadata_name": "occumed-great-britain--r2-c2.json" + }, + { + "id": "great-britain--r2-c3", + "slug": "great-britain--r2-c3", + "name": "Great Britain 2.3", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/great-britain-latest.osm.pbf", + "extract_bbox": "-3.321119,53.39388,2.513672,57.26476", + "source_region_id": "great-britain", + "source_size_bytes": 2152354131, + "west": -3.321119, + "south": 53.39388, + "east": 2.513672, + "north": 57.26476, + "asset_name": "occumed-great-britain--r2-c3.pmtiles", + "metadata_name": "occumed-great-britain--r2-c3.json" + }, + { + "id": "great-britain--r3-c1", + "slug": "great-britain--r3-c1", + "name": "Great Britain 3.1", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/great-britain-latest.osm.pbf", + "extract_bbox": "-14.9907,57.26476,-9.155909,61.13564", + "source_region_id": "great-britain", + "source_size_bytes": 2152354131, + "west": -14.9907, + "south": 57.26476, + "east": -9.155909, + "north": 61.13564, + "asset_name": "occumed-great-britain--r3-c1.pmtiles", + "metadata_name": "occumed-great-britain--r3-c1.json" + }, + { + "id": "great-britain--r3-c2", + "slug": "great-britain--r3-c2", + "name": "Great Britain 3.2", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/great-britain-latest.osm.pbf", + "extract_bbox": "-9.155909,57.26476,-3.321119,61.13564", + "source_region_id": "great-britain", + "source_size_bytes": 2152354131, + "west": -9.155909, + "south": 57.26476, + "east": -3.321119, + "north": 61.13564, + "asset_name": "occumed-great-britain--r3-c2.pmtiles", + "metadata_name": "occumed-great-britain--r3-c2.json" + }, + { + "id": "great-britain--r3-c3", + "slug": "great-britain--r3-c3", + "name": "Great Britain 3.3", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/great-britain-latest.osm.pbf", + "extract_bbox": "-3.321119,57.26476,2.513672,61.13564", + "source_region_id": "great-britain", + "source_size_bytes": 2152354131, + "west": -3.321119, + "south": 57.26476, + "east": 2.513672, + "north": 61.13564, + "asset_name": "occumed-great-britain--r3-c3.pmtiles", + "metadata_name": "occumed-great-britain--r3-c3.json" + }, + { + "id": "greater-manchester", + "slug": "greater-manchester", + "name": "Greater Manchester", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/greater-manchester-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "greater-manchester", + "source_size_bytes": 50543745, + "west": -2.732097, + "south": 53.32613, + "east": -1.90804, + "north": 53.68742, + "asset_name": "occumed-greater-manchester.pmtiles", + "metadata_name": "occumed-greater-manchester.json" + }, + { + "id": "greece", + "slug": "greece", + "name": "Greece", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/greece-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "greece", + "source_size_bytes": 338630661, + "west": 18.97064, + "south": 34.59111, + "east": 29.65683, + "north": 41.74954, + "asset_name": "occumed-greece.pmtiles", + "metadata_name": "occumed-greece.json" + }, + { + "id": "greenland", + "slug": "greenland", + "name": "Greenland", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/greenland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "greenland", + "source_size_bytes": 25603606, + "west": -75.3894, + "south": 58.67169, + "east": -9.454384, + "north": 84.44358, + "asset_name": "occumed-greenland.pmtiles", + "metadata_name": "occumed-greenland.json" + }, + { + "id": "groningen", + "slug": "groningen", + "name": "Groningen", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/netherlands/groningen-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "groningen", + "source_size_bytes": 56284438, + "west": 6.166463, + "south": 52.83734, + "east": 7.230455, + "north": 53.65732, + "asset_name": "occumed-groningen.pmtiles", + "metadata_name": "occumed-groningen.json" + }, + { + "id": "guadeloupe", + "slug": "guadeloupe", + "name": "Guadeloupe", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/guadeloupe-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "guadeloupe", + "source_size_bytes": 24208607, + "west": -62.15241, + "south": 15.49074, + "east": -60.60471, + "north": 16.82426, + "asset_name": "occumed-guadeloupe.pmtiles", + "metadata_name": "occumed-guadeloupe.json" + }, + { + "id": "guangdong", + "slug": "guangdong", + "name": "Guangdong (with Hong Kong and Macau)", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/guangdong-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "guangdong", + "source_size_bytes": 169567243, + "west": 109.3565, + "south": 20.05851, + "east": 117.665, + "north": 25.52432, + "asset_name": "occumed-guangdong.pmtiles", + "metadata_name": "occumed-guangdong.json" + }, + { + "id": "guangxi", + "slug": "guangxi", + "name": "Guangxi", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/guangxi-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "guangxi", + "source_size_bytes": 51877956, + "west": 104.4419, + "south": 20.74224, + "east": 112.0654, + "north": 26.39648, + "asset_name": "occumed-guangxi.pmtiles", + "metadata_name": "occumed-guangxi.json" + }, + { + "id": "guatemala", + "slug": "guatemala", + "name": "Guatemala", + "continent": "central-america", + "pbf_url": "https://download.geofabrik.de/central-america/guatemala-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "guatemala", + "source_size_bytes": 131170357, + "west": -92.73303, + "south": 12.74168, + "east": -87.95177, + "north": 17.83533, + "asset_name": "occumed-guatemala.pmtiles", + "metadata_name": "occumed-guatemala.json" + }, + { + "id": "guernsey-jersey", + "slug": "guernsey-jersey", + "name": "Guernsey and Jersey", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/guernsey-jersey-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "guernsey-jersey", + "source_size_bytes": 3879550, + "west": -3.573306, + "south": 49.00381, + "east": -1.791572, + "north": 50.06948, + "asset_name": "occumed-guernsey-jersey.pmtiles", + "metadata_name": "occumed-guernsey-jersey.json" + }, + { + "id": "guinea", + "slug": "guinea", + "name": "Guinea", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/guinea-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "guinea", + "source_size_bytes": 117338034, + "west": -16.85708, + "south": 7.183332, + "east": -7.627259, + "north": 12.68322, + "asset_name": "occumed-guinea.pmtiles", + "metadata_name": "occumed-guinea.json" + }, + { + "id": "guinea-bissau", + "slug": "guinea-bissau", + "name": "Guinea-Bissau", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/guinea-bissau-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "guinea-bissau", + "source_size_bytes": 11147104, + "west": -16.96427, + "south": 10.14494, + "east": -13.62923, + "north": 12.6936, + "asset_name": "occumed-guinea-bissau.pmtiles", + "metadata_name": "occumed-guinea-bissau.json" + }, + { + "id": "guizhou", + "slug": "guizhou", + "name": "Guizhou", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/guizhou-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "guizhou", + "source_size_bytes": 28401494, + "west": 103.5982, + "south": 24.61706, + "east": 109.5594, + "north": 29.23204, + "asset_name": "occumed-guizhou.pmtiles", + "metadata_name": "occumed-guizhou.json" + }, + { + "id": "guyana", + "slug": "guyana", + "name": "Guyana", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/guyana-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "guyana", + "source_size_bytes": 15516626, + "west": -61.42101, + "south": 1.149369, + "east": -56.42321, + "north": 9.182536, + "asset_name": "occumed-guyana.pmtiles", + "metadata_name": "occumed-guyana.json" + }, + { + "id": "guyane", + "slug": "guyane", + "name": "Guyane", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/guyane-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "guyane", + "source_size_bytes": 14337520, + "west": -54.62299, + "south": 2.093117, + "east": -50.8667, + "north": 6.370288, + "asset_name": "occumed-guyane.pmtiles", + "metadata_name": "occumed-guyane.json" + }, + { + "id": "hainan", + "slug": "hainan", + "name": "Hainan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/hainan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "hainan", + "source_size_bytes": 9781565, + "west": 108.3153, + "south": 14.29739, + "east": 118.4373, + "north": 20.40385, + "asset_name": "occumed-hainan.pmtiles", + "metadata_name": "occumed-hainan.json" + }, + { + "id": "haiti-and-domrep", + "slug": "haiti-and-domrep", + "name": "Haiti and Dominican Republic", + "continent": "central-america", + "pbf_url": "https://download.geofabrik.de/central-america/haiti-and-domrep-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "haiti-and-domrep", + "source_size_bytes": 88417626, + "west": -74.82529, + "south": 16.99901, + "east": -68.05482, + "north": 21.45307, + "asset_name": "occumed-haiti-and-domrep.pmtiles", + "metadata_name": "occumed-haiti-and-domrep.json" + }, + { + "id": "hamburg", + "slug": "hamburg", + "name": "Hamburg", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/hamburg-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "hamburg", + "source_size_bytes": 53553680, + "west": 7.967833, + "south": 53.39183, + "east": 10.33196, + "north": 54.06261, + "asset_name": "occumed-hamburg.pmtiles", + "metadata_name": "occumed-hamburg.json" + }, + { + "id": "hampshire", + "slug": "hampshire", + "name": "Hampshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/hampshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "hampshire", + "source_size_bytes": 61621779, + "west": -1.959101, + "south": 50.69041, + "east": -0.726306, + "north": 51.38712, + "asset_name": "occumed-hampshire.pmtiles", + "metadata_name": "occumed-hampshire.json" + }, + { + "id": "haute-normandie", + "slug": "haute-normandie", + "name": "Haute-Normandie", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/haute-normandie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "haute-normandie", + "source_size_bytes": 106100911, + "west": 0.009482, + "south": 48.66574, + "east": 1.803956, + "north": 50.08769, + "asset_name": "occumed-haute-normandie.pmtiles", + "metadata_name": "occumed-haute-normandie.json" + }, + { + "id": "heard-mcdonald", + "slug": "heard-mcdonald", + "name": "Heard Island and McDonald Islands", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/heard-mcdonald-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "heard-mcdonald", + "source_size_bytes": 96420, + "west": 71.99912, + "south": -53.54549, + "east": 74.45294, + "north": -52.66308, + "asset_name": "occumed-heard-mcdonald.pmtiles", + "metadata_name": "occumed-heard-mcdonald.json" + }, + { + "id": "hebei", + "slug": "hebei", + "name": "Hebei (with Beijing and Tianjin)", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/hebei-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "hebei", + "source_size_bytes": 106700312, + "west": 113.451, + "south": 36.04299, + "east": 119.9982, + "north": 42.62487, + "asset_name": "occumed-hebei.pmtiles", + "metadata_name": "occumed-hebei.json" + }, + { + "id": "heilongjiang", + "slug": "heilongjiang", + "name": "Heilongjiang", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/heilongjiang-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "heilongjiang", + "source_size_bytes": 36215813, + "west": 121.15, + "south": 43.41078, + "east": 134.8036, + "north": 53.65559, + "asset_name": "occumed-heilongjiang.pmtiles", + "metadata_name": "occumed-heilongjiang.json" + }, + { + "id": "henan", + "slug": "henan", + "name": "Henan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/henan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "henan", + "source_size_bytes": 48291169, + "west": 110.3458, + "south": 31.37805, + "east": 116.647, + "north": 36.36801, + "asset_name": "occumed-henan.pmtiles", + "metadata_name": "occumed-henan.json" + }, + { + "id": "herefordshire", + "slug": "herefordshire", + "name": "Herefordshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/herefordshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "herefordshire", + "source_size_bytes": 11121011, + "west": -3.142889, + "south": 51.82618, + "east": -2.338434, + "north": 52.39531, + "asset_name": "occumed-herefordshire.pmtiles", + "metadata_name": "occumed-herefordshire.json" + }, + { + "id": "hertfordshire", + "slug": "hertfordshire", + "name": "Hertfordshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/hertfordshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "hertfordshire", + "source_size_bytes": 37952947, + "west": -0.746833, + "south": 51.59798, + "east": 0.197098, + "north": 52.08224, + "asset_name": "occumed-hertfordshire.pmtiles", + "metadata_name": "occumed-hertfordshire.json" + }, + { + "id": "hessen", + "slug": "hessen", + "name": "Hessen", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/hessen-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "hessen", + "source_size_bytes": 342389830, + "west": 7.768021, + "south": 49.39321, + "east": 10.24595, + "north": 51.65916, + "asset_name": "occumed-hessen.pmtiles", + "metadata_name": "occumed-hessen.json" + }, + { + "id": "hokkaido", + "slug": "hokkaido", + "name": "Hokkaidō", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/japan/hokkaido-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "hokkaido", + "source_size_bytes": 187730863, + "west": 137.9346, + "south": 41.15098, + "east": 146.2476, + "north": 45.8154, + "asset_name": "occumed-hokkaido.pmtiles", + "metadata_name": "occumed-hokkaido.json" + }, + { + "id": "honduras", + "slug": "honduras", + "name": "Honduras", + "continent": "central-america", + "pbf_url": "https://download.geofabrik.de/central-america/honduras-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "honduras", + "source_size_bytes": 73503943, + "west": -89.36005, + "south": 12.96943, + "east": -81.66138, + "north": 17.93171, + "asset_name": "occumed-honduras.pmtiles", + "metadata_name": "occumed-honduras.json" + }, + { + "id": "hong-kong", + "slug": "hong-kong", + "name": "Hong Kong", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/hong-kong-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "hong-kong", + "source_size_bytes": 37355659, + "west": 113.813, + "south": 22.13041, + "east": 114.506, + "north": 22.56904, + "asset_name": "occumed-hong-kong.pmtiles", + "metadata_name": "occumed-hong-kong.json" + }, + { + "id": "hubei", + "slug": "hubei", + "name": "Hubei", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/hubei-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "hubei", + "source_size_bytes": 55106450, + "west": 108.3597, + "south": 29.03006, + "east": 116.1361, + "north": 33.27343, + "asset_name": "occumed-hubei.pmtiles", + "metadata_name": "occumed-hubei.json" + }, + { + "id": "hunan", + "slug": "hunan", + "name": "Hunan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/hunan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "hunan", + "source_size_bytes": 49742404, + "west": 108.7792, + "south": 24.63266, + "east": 114.2585, + "north": 30.138, + "asset_name": "occumed-hunan.pmtiles", + "metadata_name": "occumed-hunan.json" + }, + { + "id": "hungary", + "slug": "hungary", + "name": "Hungary", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/hungary-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "hungary", + "source_size_bytes": 320945409, + "west": 16.10845, + "south": 45.73207, + "east": 22.90649, + "north": 48.58921, + "asset_name": "occumed-hungary.pmtiles", + "metadata_name": "occumed-hungary.json" + }, + { + "id": "iceland", + "slug": "iceland", + "name": "Iceland", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/iceland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "iceland", + "source_size_bytes": 64477133, + "west": -25.7, + "south": 62.84553, + "east": -12.41708, + "north": 67.50085, + "asset_name": "occumed-iceland.pmtiles", + "metadata_name": "occumed-iceland.json" + }, + { + "id": "ile-de-clipperton", + "slug": "ile-de-clipperton", + "name": "Île de Clipperton", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/ile-de-clipperton-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "ile-de-clipperton", + "source_size_bytes": 42483, + "west": -110.1215, + "south": 9.595339, + "east": -108.3746, + "north": 11.15685, + "asset_name": "occumed-ile-de-clipperton.pmtiles", + "metadata_name": "occumed-ile-de-clipperton.json" + }, + { + "id": "ile-de-france", + "slug": "ile-de-france", + "name": "Ile-de-France", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/ile-de-france-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "ile-de-france", + "source_size_bytes": 335797629, + "west": 1.445097, + "south": 48.11918, + "east": 3.560409, + "north": 49.24271, + "asset_name": "occumed-ile-de-france.pmtiles", + "metadata_name": "occumed-ile-de-france.json" + }, + { + "id": "inner-mongolia", + "slug": "inner-mongolia", + "name": "Inner Mongolia", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/inner-mongolia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "inner-mongolia", + "source_size_bytes": 41694307, + "west": 97.14328, + "south": 37.39962, + "east": 126.0767, + "north": 53.44515, + "asset_name": "occumed-inner-mongolia.pmtiles", + "metadata_name": "occumed-inner-mongolia.json" + }, + { + "id": "interior-admreg", + "slug": "interior-admreg", + "name": "Interior Administrative Region", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/british-columbia/interior-admreg-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "interior-admreg", + "source_size_bytes": 162474320, + "west": -128.8637, + "south": 49.60359, + "east": -118.7691, + "north": 53.55744, + "asset_name": "occumed-interior-admreg.pmtiles", + "metadata_name": "occumed-interior-admreg.json" + }, + { + "id": "iran", + "slug": "iran", + "name": "Iran", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/iran-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "iran", + "source_size_bytes": 228365967, + "west": 44.02303, + "south": 24.03947, + "east": 63.35413, + "north": 39.79045, + "asset_name": "occumed-iran.pmtiles", + "metadata_name": "occumed-iran.json" + }, + { + "id": "iraq", + "slug": "iraq", + "name": "Iraq", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/iraq-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "iraq", + "source_size_bytes": 89905454, + "west": 38.784, + "south": 29.01775, + "east": 49.55108, + "north": 37.39063, + "asset_name": "occumed-iraq.pmtiles", + "metadata_name": "occumed-iraq.json" + }, + { + "id": "ireland-and-northern-ireland", + "slug": "ireland-and-northern-ireland", + "name": "Ireland and Northern Ireland", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/ireland-and-northern-ireland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "ireland-and-northern-ireland", + "source_size_bytes": 408346543, + "west": -14.40224, + "south": 49.60002, + "east": -5.059265, + "north": 56.86553, + "asset_name": "occumed-ireland-and-northern-ireland.pmtiles", + "metadata_name": "occumed-ireland-and-northern-ireland.json" + }, + { + "id": "island-admreg", + "slug": "island-admreg", + "name": "Island Administrative Region", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/british-columbia/island-admreg-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "island-admreg", + "source_size_bytes": 109519480, + "west": -129.3393, + "south": 48.12648, + "east": -122.9789, + "north": 52.05756, + "asset_name": "occumed-island-admreg.pmtiles", + "metadata_name": "occumed-island-admreg.json" + }, + { + "id": "islas-baleares", + "slug": "islas-baleares", + "name": "Islas Baleares", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/islas-baleares-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "islas-baleares", + "source_size_bytes": 46020098, + "west": 0.615229, + "south": 38.05675, + "east": 4.938349, + "north": 40.7098, + "asset_name": "occumed-islas-baleares.pmtiles", + "metadata_name": "occumed-islas-baleares.json" + }, + { + "id": "isle-of-man", + "slug": "isle-of-man", + "name": "Isle of Man", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/isle-of-man-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "isle-of-man", + "source_size_bytes": 6018757, + "west": -5.434554, + "south": 53.73236, + "east": -3.688718, + "north": 54.6706, + "asset_name": "occumed-isle-of-man.pmtiles", + "metadata_name": "occumed-isle-of-man.json" + }, + { + "id": "isle-of-wight", + "slug": "isle-of-wight", + "name": "Isle of Wight", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/isle-of-wight-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "isle-of-wight", + "source_size_bytes": 8917343, + "west": -1.659074, + "south": 50.50555, + "east": -1.03137, + "north": 50.80102, + "asset_name": "occumed-isle-of-wight.pmtiles", + "metadata_name": "occumed-isle-of-wight.json" + }, + { + "id": "isole", + "slug": "isole", + "name": "Isole", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/italy/isole-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "isole", + "source_size_bytes": 213240103, + "west": 7.718453, + "south": 35.07638, + "east": 15.70887, + "north": 41.51893, + "asset_name": "occumed-isole.pmtiles", + "metadata_name": "occumed-isole.json" + }, + { + "id": "israel-and-palestine", + "slug": "israel-and-palestine", + "name": "Israel and Palestine", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/israel-and-palestine-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "israel-and-palestine", + "source_size_bytes": 119950395, + "west": 33.99994, + "south": 29.4396, + "east": 35.91531, + "north": 33.45436, + "asset_name": "occumed-israel-and-palestine.pmtiles", + "metadata_name": "occumed-israel-and-palestine.json" + }, + { + "id": "ivory-coast", + "slug": "ivory-coast", + "name": "Ivory Coast", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/ivory-coast-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "ivory-coast", + "source_size_bytes": 89301163, + "west": -8.633881, + "south": 4.141916, + "east": -2.476215, + "north": 10.75034, + "asset_name": "occumed-ivory-coast.pmtiles", + "metadata_name": "occumed-ivory-coast.json" + }, + { + "id": "jamaica", + "slug": "jamaica", + "name": "Jamaica", + "continent": "central-america", + "pbf_url": "https://download.geofabrik.de/central-america/jamaica-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "jamaica", + "source_size_bytes": 38592266, + "west": -78.85, + "south": 16.35, + "east": -75.51, + "north": 19.16, + "asset_name": "occumed-jamaica.pmtiles", + "metadata_name": "occumed-jamaica.json" + }, + { + "id": "java--r1-c1", + "slug": "java--r1-c1", + "name": "Java 1.1", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/indonesia/java-latest.osm.pbf", + "extract_bbox": "104.1394,-9.541155,108.286733,-6.746545", + "source_region_id": "java", + "source_size_bytes": 894918961, + "west": 104.1394, + "south": -9.541155, + "east": 108.286733, + "north": -6.746545, + "asset_name": "occumed-java--r1-c1.pmtiles", + "metadata_name": "occumed-java--r1-c1.json" + }, + { + "id": "java--r1-c2", + "slug": "java--r1-c2", + "name": "Java 1.2", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/indonesia/java-latest.osm.pbf", + "extract_bbox": "108.286733,-9.541155,112.434067,-6.746545", + "source_region_id": "java", + "source_size_bytes": 894918961, + "west": 108.286733, + "south": -9.541155, + "east": 112.434067, + "north": -6.746545, + "asset_name": "occumed-java--r1-c2.pmtiles", + "metadata_name": "occumed-java--r1-c2.json" + }, + { + "id": "java--r1-c3", + "slug": "java--r1-c3", + "name": "Java 1.3", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/indonesia/java-latest.osm.pbf", + "extract_bbox": "112.434067,-9.541155,116.5814,-6.746545", + "source_region_id": "java", + "source_size_bytes": 894918961, + "west": 112.434067, + "south": -9.541155, + "east": 116.5814, + "north": -6.746545, + "asset_name": "occumed-java--r1-c3.pmtiles", + "metadata_name": "occumed-java--r1-c3.json" + }, + { + "id": "java--r2-c1", + "slug": "java--r2-c1", + "name": "Java 2.1", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/indonesia/java-latest.osm.pbf", + "extract_bbox": "104.1394,-6.746545,108.286733,-3.951935", + "source_region_id": "java", + "source_size_bytes": 894918961, + "west": 104.1394, + "south": -6.746545, + "east": 108.286733, + "north": -3.951935, + "asset_name": "occumed-java--r2-c1.pmtiles", + "metadata_name": "occumed-java--r2-c1.json" + }, + { + "id": "java--r2-c2", + "slug": "java--r2-c2", + "name": "Java 2.2", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/indonesia/java-latest.osm.pbf", + "extract_bbox": "108.286733,-6.746545,112.434067,-3.951935", + "source_region_id": "java", + "source_size_bytes": 894918961, + "west": 108.286733, + "south": -6.746545, + "east": 112.434067, + "north": -3.951935, + "asset_name": "occumed-java--r2-c2.pmtiles", + "metadata_name": "occumed-java--r2-c2.json" + }, + { + "id": "java--r2-c3", + "slug": "java--r2-c3", + "name": "Java 2.3", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/indonesia/java-latest.osm.pbf", + "extract_bbox": "112.434067,-6.746545,116.5814,-3.951935", + "source_region_id": "java", + "source_size_bytes": 894918961, + "west": 112.434067, + "south": -6.746545, + "east": 116.5814, + "north": -3.951935, + "asset_name": "occumed-java--r2-c3.pmtiles", + "metadata_name": "occumed-java--r2-c3.json" + }, + { + "id": "jiangsu", + "slug": "jiangsu", + "name": "Jiangsu", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/jiangsu-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "jiangsu", + "source_size_bytes": 78600643, + "west": 116.3538, + "south": 30.75899, + "east": 122.9453, + "north": 35.55507, + "asset_name": "occumed-jiangsu.pmtiles", + "metadata_name": "occumed-jiangsu.json" + }, + { + "id": "jiangxi", + "slug": "jiangxi", + "name": "Jiangxi", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/jiangxi-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "jiangxi", + "source_size_bytes": 49246005, + "west": 113.5688, + "south": 24.47809, + "east": 118.4865, + "north": 30.08841, + "asset_name": "occumed-jiangxi.pmtiles", + "metadata_name": "occumed-jiangxi.json" + }, + { + "id": "jihocesky", + "slug": "jihocesky", + "name": "Jihočeský kraj", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/czech-republic/jihocesky-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "jihocesky", + "source_size_bytes": 96252752, + "west": 13.53386, + "south": 48.54292, + "east": 15.60644, + "north": 49.62122, + "asset_name": "occumed-jihocesky.pmtiles", + "metadata_name": "occumed-jihocesky.json" + }, + { + "id": "jihomoravsky", + "slug": "jihomoravsky", + "name": "Jihomoravský kraj", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/czech-republic/jihomoravsky-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "jihomoravsky", + "source_size_bytes": 90964685, + "west": 15.54023, + "south": 48.61008, + "east": 17.64952, + "north": 49.63471, + "asset_name": "occumed-jihomoravsky.pmtiles", + "metadata_name": "occumed-jihomoravsky.json" + }, + { + "id": "jilin", + "slug": "jilin", + "name": "Jilin", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/jilin-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "jilin", + "source_size_bytes": 26784241, + "west": 121.6276, + "south": 40.78952, + "east": 131.3514, + "north": 46.31469, + "asset_name": "occumed-jilin.pmtiles", + "metadata_name": "occumed-jilin.json" + }, + { + "id": "jordan", + "slug": "jordan", + "name": "Jordan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/jordan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "jordan", + "source_size_bytes": 31005529, + "west": 34.86886, + "south": 29.18213, + "east": 39.31022, + "north": 33.37922, + "asset_name": "occumed-jordan.pmtiles", + "metadata_name": "occumed-jordan.json" + }, + { + "id": "kalimantan", + "slug": "kalimantan", + "name": "Kalimantan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/indonesia/kalimantan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kalimantan", + "source_size_bytes": 147166996, + "west": 104.9606, + "south": -5.59958, + "east": 119.9267, + "north": 4.404166, + "asset_name": "occumed-kalimantan.pmtiles", + "metadata_name": "occumed-kalimantan.json" + }, + { + "id": "kaliningrad", + "slug": "kaliningrad", + "name": "Kaliningrad", + "continent": "kaliningrad", + "pbf_url": "https://download.geofabrik.de/russia/kaliningrad-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kaliningrad", + "source_size_bytes": 28091589, + "west": 19.40837, + "south": 54.31723, + "east": 22.88747, + "north": 55.3899, + "asset_name": "occumed-kaliningrad.pmtiles", + "metadata_name": "occumed-kaliningrad.json" + }, + { + "id": "kansai", + "slug": "kansai", + "name": "Kansai region (a.k.a. Kinki region)", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/japan/kansai-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kansai", + "source_size_bytes": 348620845, + "west": 133.9644, + "south": 33.07898, + "east": 137.6573, + "north": 36.4582, + "asset_name": "occumed-kansai.pmtiles", + "metadata_name": "occumed-kansai.json" + }, + { + "id": "kanto", + "slug": "kanto", + "name": "Kantō region", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/japan/kanto-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kanto", + "source_size_bytes": 480562658, + "west": 134.5757, + "south": 20.08228, + "east": 154.4709, + "north": 37.15988, + "asset_name": "occumed-kanto.pmtiles", + "metadata_name": "occumed-kanto.json" + }, + { + "id": "karlovarsky", + "slug": "karlovarsky", + "name": "Karlovarský kraj", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/czech-republic/karlovarsky-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "karlovarsky", + "source_size_bytes": 30292505, + "west": 12.08477, + "south": 49.88988, + "east": 13.30247, + "north": 50.47322, + "asset_name": "occumed-karlovarsky.pmtiles", + "metadata_name": "occumed-karlovarsky.json" + }, + { + "id": "karlsruhe-regbez", + "slug": "karlsruhe-regbez", + "name": "Regierungsbezirk Karlsruhe", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/baden-wuerttemberg/karlsruhe-regbez-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "karlsruhe-regbez", + "source_size_bytes": 153435839, + "west": 7.949946, + "south": 48.29792, + "east": 9.605534, + "north": 49.736, + "asset_name": "occumed-karlsruhe-regbez.pmtiles", + "metadata_name": "occumed-karlsruhe-regbez.json" + }, + { + "id": "kazakhstan", + "slug": "kazakhstan", + "name": "Kazakhstan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/kazakhstan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kazakhstan", + "source_size_bytes": 219552861, + "west": 46.42304, + "south": 40.55346, + "east": 87.35359, + "north": 55.50799, + "asset_name": "occumed-kazakhstan.pmtiles", + "metadata_name": "occumed-kazakhstan.json" + }, + { + "id": "kent", + "slug": "kent", + "name": "Kent", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/kent-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kent", + "source_size_bytes": 52471513, + "west": 0.030546, + "south": 50.81013, + "east": 1.521262, + "north": 51.49664, + "asset_name": "occumed-kent.pmtiles", + "metadata_name": "occumed-kent.json" + }, + { + "id": "kenya", + "slug": "kenya", + "name": "Kenya", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/kenya-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kenya", + "source_size_bytes": 348800473, + "west": 33.8679, + "south": -4.816276, + "east": 41.97685, + "north": 4.629931, + "asset_name": "occumed-kenya.pmtiles", + "metadata_name": "occumed-kenya.json" + }, + { + "id": "kiribati", + "slug": "kiribati", + "name": "Kiribati", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/kiribati-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kiribati", + "source_size_bytes": 2419229, + "west": 167.8684, + "south": -13.83833, + "east": -147.0336, + "north": 6.472283, + "asset_name": "occumed-kiribati.pmtiles", + "metadata_name": "occumed-kiribati.json" + }, + { + "id": "kitikmeot", + "slug": "kitikmeot", + "name": "Kitikmeot Region", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/nunavut/kitikmeot-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kitikmeot", + "source_size_bytes": 417235071, + "west": -120.737, + "south": 64.51803, + "east": -88.98445, + "north": 73.93962, + "asset_name": "occumed-kitikmeot.pmtiles", + "metadata_name": "occumed-kitikmeot.json" + }, + { + "id": "kivalliq", + "slug": "kivalliq", + "name": "Kivalliq Region", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/nunavut/kivalliq-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kivalliq", + "source_size_bytes": 492042271, + "west": -105.0092, + "south": 56.95134, + "east": -80.01994, + "north": 67.00034, + "asset_name": "occumed-kivalliq.pmtiles", + "metadata_name": "occumed-kivalliq.json" + }, + { + "id": "koeln-regbez", + "slug": "koeln-regbez", + "name": "Regierungsbezirk Köln", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/nordrhein-westfalen/koeln-regbez-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "koeln-regbez", + "source_size_bytes": 223523376, + "west": 5.864417, + "south": 50.32088, + "east": 7.794411, + "north": 51.253, + "asset_name": "occumed-koeln-regbez.pmtiles", + "metadata_name": "occumed-koeln-regbez.json" + }, + { + "id": "kootenay-admreg", + "slug": "kootenay-admreg", + "name": "Kootenay Administrative Region", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/british-columbia/kootenay-admreg-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kootenay-admreg", + "source_size_bytes": 63639013, + "west": -119.3857, + "south": 48.99463, + "east": -114.049, + "north": 51.85325, + "asset_name": "occumed-kootenay-admreg.pmtiles", + "metadata_name": "occumed-kootenay-admreg.json" + }, + { + "id": "kosovo", + "slug": "kosovo", + "name": "Kosovo", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/kosovo-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kosovo", + "source_size_bytes": 30589850, + "west": 20.01357, + "south": 41.85408, + "east": 21.79327, + "north": 43.27753, + "asset_name": "occumed-kosovo.pmtiles", + "metadata_name": "occumed-kosovo.json" + }, + { + "id": "kralovehradecky", + "slug": "kralovehradecky", + "name": "Královéhradecký kraj", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/czech-republic/kralovehradecky-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kralovehradecky", + "source_size_bytes": 59681431, + "west": 15.10268, + "south": 50.03735, + "east": 16.59925, + "north": 50.78739, + "asset_name": "occumed-kralovehradecky.pmtiles", + "metadata_name": "occumed-kralovehradecky.json" + }, + { + "id": "kujawsko-pomorskie", + "slug": "kujawsko-pomorskie", + "name": "Województwo kujawsko-pomorskie
(Kuyavian-Pomeranian Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/kujawsko-pomorskie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kujawsko-pomorskie", + "source_size_bytes": 103330012, + "west": 17.23935, + "south": 52.32112, + "east": 19.77239, + "north": 53.7917, + "asset_name": "occumed-kujawsko-pomorskie.pmtiles", + "metadata_name": "occumed-kujawsko-pomorskie.json" + }, + { + "id": "kyrgyzstan", + "slug": "kyrgyzstan", + "name": "Kyrgyzstan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/kyrgyzstan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kyrgyzstan", + "source_size_bytes": 52786530, + "west": 69.25507, + "south": 39.15136, + "east": 80.2771, + "north": 43.2812, + "asset_name": "occumed-kyrgyzstan.pmtiles", + "metadata_name": "occumed-kyrgyzstan.json" + }, + { + "id": "kyushu", + "slug": "kyushu", + "name": "Kyūshū", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/japan/kyushu-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "kyushu", + "source_size_bytes": 308681654, + "west": 122.5814, + "south": 21.38691, + "east": 132.8044, + "north": 35.09724, + "asset_name": "occumed-kyushu.pmtiles", + "metadata_name": "occumed-kyushu.json" + }, + { + "id": "la-rioja", + "slug": "la-rioja", + "name": "La Rioja", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/la-rioja-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "la-rioja", + "source_size_bytes": 12697629, + "west": -3.140202, + "south": 41.91403, + "east": -1.673012, + "north": 42.64621, + "asset_name": "occumed-la-rioja.pmtiles", + "metadata_name": "occumed-la-rioja.json" + }, + { + "id": "lancashire", + "slug": "lancashire", + "name": "Lancashire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/lancashire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "lancashire", + "source_size_bytes": 41062464, + "west": -3.092156, + "south": 53.47507, + "east": -2.0395, + "north": 54.24645, + "asset_name": "occumed-lancashire.pmtiles", + "metadata_name": "occumed-lancashire.json" + }, + { + "id": "languedoc-roussillon", + "slug": "languedoc-roussillon", + "name": "Languedoc-Roussillon", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/languedoc-roussillon-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "languedoc-roussillon", + "source_size_bytes": 267621216, + "west": 1.686256, + "south": 42.32755, + "east": 4.847979, + "north": 44.97821, + "asset_name": "occumed-languedoc-roussillon.pmtiles", + "metadata_name": "occumed-languedoc-roussillon.json" + }, + { + "id": "laos", + "slug": "laos", + "name": "Laos", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/laos-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "laos", + "source_size_bytes": 53239819, + "west": 100.0828, + "south": 13.90159, + "east": 107.6503, + "north": 22.52825, + "asset_name": "occumed-laos.pmtiles", + "metadata_name": "occumed-laos.json" + }, + { + "id": "latvia", + "slug": "latvia", + "name": "Latvia", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/latvia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "latvia", + "source_size_bytes": 139081193, + "west": 19.73348, + "south": 55.66109, + "east": 28.25501, + "north": 58.0947, + "asset_name": "occumed-latvia.pmtiles", + "metadata_name": "occumed-latvia.json" + }, + { + "id": "lebanon", + "slug": "lebanon", + "name": "Lebanon", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/lebanon-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "lebanon", + "source_size_bytes": 52322478, + "west": 34.76799, + "south": 33.05299, + "east": 36.63666, + "north": 34.80253, + "asset_name": "occumed-lebanon.pmtiles", + "metadata_name": "occumed-lebanon.json" + }, + { + "id": "leicestershire", + "slug": "leicestershire", + "name": "Leicestershire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/leicestershire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "leicestershire", + "source_size_bytes": 20151764, + "west": -1.596388, + "south": 52.3936, + "east": -0.663929, + "north": 52.9776, + "asset_name": "occumed-leicestershire.pmtiles", + "metadata_name": "occumed-leicestershire.json" + }, + { + "id": "lesotho", + "slug": "lesotho", + "name": "Lesotho", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/lesotho-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "lesotho", + "source_size_bytes": 126378278, + "west": 27.0092, + "south": -30.68472, + "east": 29.46393, + "north": -28.56734, + "asset_name": "occumed-lesotho.pmtiles", + "metadata_name": "occumed-lesotho.json" + }, + { + "id": "liaoning", + "slug": "liaoning", + "name": "Liaoning", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/liaoning-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "liaoning", + "source_size_bytes": 27488610, + "west": 118.8305, + "south": 38.26191, + "east": 125.7959, + "north": 43.49303, + "asset_name": "occumed-liaoning.pmtiles", + "metadata_name": "occumed-liaoning.json" + }, + { + "id": "liberecky", + "slug": "liberecky", + "name": "Liberecký kraj", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/czech-republic/liberecky-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "liberecky", + "source_size_bytes": 46679409, + "west": 14.34201, + "south": 50.47113, + "east": 15.63443, + "north": 51.03171, + "asset_name": "occumed-liberecky.pmtiles", + "metadata_name": "occumed-liberecky.json" + }, + { + "id": "liberia", + "slug": "liberia", + "name": "Liberia", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/liberia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "liberia", + "source_size_bytes": 37279609, + "west": -14.95454, + "south": -0.681003, + "east": -7.24572, + "north": 8.570158, + "asset_name": "occumed-liberia.pmtiles", + "metadata_name": "occumed-liberia.json" + }, + { + "id": "libya", + "slug": "libya", + "name": "Libya", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/libya-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "libya", + "source_size_bytes": 76357610, + "west": 9.374405, + "south": 19.45087, + "east": 25.40726, + "north": 33.57972, + "asset_name": "occumed-libya.pmtiles", + "metadata_name": "occumed-libya.json" + }, + { + "id": "liechtenstein", + "slug": "liechtenstein", + "name": "Liechtenstein", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/liechtenstein-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "liechtenstein", + "source_size_bytes": 3425857, + "west": 9.471078, + "south": 47.04774, + "east": 9.636217, + "north": 47.27128, + "asset_name": "occumed-liechtenstein.pmtiles", + "metadata_name": "occumed-liechtenstein.json" + }, + { + "id": "limburg", + "slug": "limburg", + "name": "Limburg", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/netherlands/limburg-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "limburg", + "source_size_bytes": 100411897, + "west": 5.563304, + "south": 50.74753, + "east": 6.22939, + "north": 51.77992, + "asset_name": "occumed-limburg.pmtiles", + "metadata_name": "occumed-limburg.json" + }, + { + "id": "limousin", + "slug": "limousin", + "name": "Limousin", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/limousin-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "limousin", + "source_size_bytes": 98073053, + "west": 0.627097, + "south": 44.91842, + "east": 2.61384, + "north": 46.45781, + "asset_name": "occumed-limousin.pmtiles", + "metadata_name": "occumed-limousin.json" + }, + { + "id": "lincolnshire", + "slug": "lincolnshire", + "name": "Lincolnshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/lincolnshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "lincolnshire", + "source_size_bytes": 42837270, + "west": -0.950922, + "south": 52.63954, + "east": 0.494382, + "north": 53.73003, + "asset_name": "occumed-lincolnshire.pmtiles", + "metadata_name": "occumed-lincolnshire.json" + }, + { + "id": "lithuania", + "slug": "lithuania", + "name": "Lithuania", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/lithuania-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "lithuania", + "source_size_bytes": 221678623, + "west": 20.61859, + "south": 53.89221, + "east": 26.83873, + "north": 56.45329, + "asset_name": "occumed-lithuania.pmtiles", + "metadata_name": "occumed-lithuania.json" + }, + { + "id": "lodzkie", + "slug": "lodzkie", + "name": "Województwo łódzkie
(Łódź Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/lodzkie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "lodzkie", + "source_size_bytes": 129763031, + "west": 18.06227, + "south": 50.83091, + "east": 20.6691, + "north": 52.40624, + "asset_name": "occumed-lodzkie.pmtiles", + "metadata_name": "occumed-lodzkie.json" + }, + { + "id": "lorraine", + "slug": "lorraine", + "name": "Lorraine", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/lorraine-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "lorraine", + "source_size_bytes": 170094876, + "west": 4.886022, + "south": 47.81188, + "east": 7.640105, + "north": 49.61946, + "asset_name": "occumed-lorraine.pmtiles", + "metadata_name": "occumed-lorraine.json" + }, + { + "id": "lubelskie", + "slug": "lubelskie", + "name": "Województwo lubelskie
(Lublin Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/lubelskie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "lubelskie", + "source_size_bytes": 138015871, + "west": 21.60285, + "south": 50.23654, + "east": 24.16102, + "north": 52.30035, + "asset_name": "occumed-lubelskie.pmtiles", + "metadata_name": "occumed-lubelskie.json" + }, + { + "id": "lubuskie", + "slug": "lubuskie", + "name": "Województwo lubuskie
(Lubusz Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/lubuskie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "lubuskie", + "source_size_bytes": 61873280, + "west": 14.49548, + "south": 51.34865, + "east": 16.42999, + "north": 53.12806, + "asset_name": "occumed-lubuskie.pmtiles", + "metadata_name": "occumed-lubuskie.json" + }, + { + "id": "luxembourg", + "slug": "luxembourg", + "name": "Luxembourg", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/luxembourg-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "luxembourg", + "source_size_bytes": 47230540, + "west": 5.733033, + "south": 49.44553, + "east": 6.532249, + "north": 50.18496, + "asset_name": "occumed-luxembourg.pmtiles", + "metadata_name": "occumed-luxembourg.json" + }, + { + "id": "macau", + "slug": "macau", + "name": "Macau", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/macau-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "macau", + "source_size_bytes": 2946958, + "west": 113.5272, + "south": 22.07546, + "east": 113.6325, + "north": 22.21708, + "asset_name": "occumed-macau.pmtiles", + "metadata_name": "occumed-macau.json" + }, + { + "id": "macedonia", + "slug": "macedonia", + "name": "Macedonia", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/macedonia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "macedonia", + "source_size_bytes": 29454999, + "west": 20.44671, + "south": 40.84759, + "east": 23.04012, + "north": 42.37969, + "asset_name": "occumed-macedonia.pmtiles", + "metadata_name": "occumed-macedonia.json" + }, + { + "id": "madagascar", + "slug": "madagascar", + "name": "Madagascar", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/madagascar-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "madagascar", + "source_size_bytes": 386820823, + "west": 42.30124, + "south": -26.5823, + "east": 51.14843, + "north": -11.02746, + "asset_name": "occumed-madagascar.pmtiles", + "metadata_name": "occumed-madagascar.json" + }, + { + "id": "madrid", + "slug": "madrid", + "name": "Madrid", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/madrid-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "madrid", + "source_size_bytes": 84338455, + "west": -4.589539, + "south": 39.88116, + "east": -3.050423, + "north": 41.16864, + "asset_name": "occumed-madrid.pmtiles", + "metadata_name": "occumed-madrid.json" + }, + { + "id": "malawi", + "slug": "malawi", + "name": "Malawi", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/malawi-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "malawi", + "source_size_bytes": 154350694, + "west": 32.66441, + "south": -17.13324, + "east": 35.92941, + "north": -9.362691, + "asset_name": "occumed-malawi.pmtiles", + "metadata_name": "occumed-malawi.json" + }, + { + "id": "malaysia-singapore-brunei", + "slug": "malaysia-singapore-brunei", + "name": "Malaysia, Singapore, and Brunei", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/malaysia-singapore-brunei-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "malaysia-singapore-brunei", + "source_size_bytes": 248936516, + "west": 99.25611, + "south": 0.830813, + "east": 119.6683, + "north": 7.736849, + "asset_name": "occumed-malaysia-singapore-brunei.pmtiles", + "metadata_name": "occumed-malaysia-singapore-brunei.json" + }, + { + "id": "maldives", + "slug": "maldives", + "name": "Maldives", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/maldives-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "maldives", + "source_size_bytes": 3579402, + "west": 71.7, + "south": -1.36, + "east": 74.5, + "north": 7.69, + "asset_name": "occumed-maldives.pmtiles", + "metadata_name": "occumed-maldives.json" + }, + { + "id": "mali", + "slug": "mali", + "name": "Mali", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/mali-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "mali", + "source_size_bytes": 172864915, + "west": -12.24701, + "south": 10.1176, + "east": 4.330257, + "north": 25.09499, + "asset_name": "occumed-mali.pmtiles", + "metadata_name": "occumed-mali.json" + }, + { + "id": "malopolskie", + "slug": "malopolskie", + "name": "Województwo małopolskie
(Lesser Poland Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/malopolskie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "malopolskie", + "source_size_bytes": 199568866, + "west": 19.07492, + "south": 49.16487, + "east": 21.43328, + "north": 50.53221, + "asset_name": "occumed-malopolskie.pmtiles", + "metadata_name": "occumed-malopolskie.json" + }, + { + "id": "malta", + "slug": "malta", + "name": "Malta", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/malta-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "malta", + "source_size_bytes": 8833574, + "west": 14, + "south": 35.51985, + "east": 14.8561, + "north": 36.33296, + "asset_name": "occumed-malta.pmtiles", + "metadata_name": "occumed-malta.json" + }, + { + "id": "maluku", + "slug": "maluku", + "name": "Maluku", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/indonesia/maluku-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "maluku", + "source_size_bytes": 26651286, + "west": 123.8928, + "south": -9.524903, + "east": 135.412, + "north": 3.727232, + "asset_name": "occumed-maluku.pmtiles", + "metadata_name": "occumed-maluku.json" + }, + { + "id": "manitoba", + "slug": "manitoba", + "name": "Manitoba", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/manitoba-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "manitoba", + "source_size_bytes": 206223487, + "west": -102.014, + "south": 48.99056, + "east": -88.12183, + "north": 60.00845, + "asset_name": "occumed-manitoba.pmtiles", + "metadata_name": "occumed-manitoba.json" + }, + { + "id": "marshall-islands", + "slug": "marshall-islands", + "name": "Marshall Islands", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/marshall-islands-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "marshall-islands", + "source_size_bytes": 1977392, + "west": 156.8453, + "south": 1.777314, + "east": 175.5118, + "north": 17.94606, + "asset_name": "occumed-marshall-islands.pmtiles", + "metadata_name": "occumed-marshall-islands.json" + }, + { + "id": "martinique", + "slug": "martinique", + "name": "Martinique", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/martinique-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "martinique", + "source_size_bytes": 20233748, + "west": -61.63056, + "south": 14.13392, + "east": -60.42755, + "north": 15.15167, + "asset_name": "occumed-martinique.pmtiles", + "metadata_name": "occumed-martinique.json" + }, + { + "id": "mauritania", + "slug": "mauritania", + "name": "Mauritania", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/mauritania-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "mauritania", + "source_size_bytes": 30438846, + "west": -17.35016, + "south": 14.71578, + "east": -4.816056, + "north": 27.33613, + "asset_name": "occumed-mauritania.pmtiles", + "metadata_name": "occumed-mauritania.json" + }, + { + "id": "mauritius", + "slug": "mauritius", + "name": "Mauritius", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/mauritius-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "mauritius", + "source_size_bytes": 9499836, + "west": 53.54727, + "south": -22.2411, + "east": 64.66991, + "north": -9.183617, + "asset_name": "occumed-mauritius.pmtiles", + "metadata_name": "occumed-mauritius.json" + }, + { + "id": "mayotte", + "slug": "mayotte", + "name": "Mayotte", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/mayotte-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "mayotte", + "source_size_bytes": 10790642, + "west": 44.62646, + "south": -13.47243, + "east": 45.6784, + "north": -12.14406, + "asset_name": "occumed-mayotte.pmtiles", + "metadata_name": "occumed-mayotte.json" + }, + { + "id": "mazowieckie", + "slug": "mazowieckie", + "name": "Województwo mazowieckie
(Mazovian Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/mazowieckie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "mazowieckie", + "source_size_bytes": 297193083, + "west": 19.23355, + "south": 50.98451, + "east": 23.15637, + "north": 53.5116, + "asset_name": "occumed-mazowieckie.pmtiles", + "metadata_name": "occumed-mazowieckie.json" + }, + { + "id": "mecklenburg-vorpommern", + "slug": "mecklenburg-vorpommern", + "name": "Mecklenburg-Vorpommern", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/mecklenburg-vorpommern-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "mecklenburg-vorpommern", + "source_size_bytes": 126950919, + "west": 10.58807, + "south": 53.10619, + "east": 14.42292, + "north": 54.9837, + "asset_name": "occumed-mecklenburg-vorpommern.pmtiles", + "metadata_name": "occumed-mecklenburg-vorpommern.json" + }, + { + "id": "melilla", + "slug": "melilla", + "name": "Melilla", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/melilla-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "melilla", + "source_size_bytes": 797213, + "west": -2.972424, + "south": 35.26393, + "east": -2.908201, + "north": 35.32393, + "asset_name": "occumed-melilla.pmtiles", + "metadata_name": "occumed-melilla.json" + }, + { + "id": "merseyside", + "slug": "merseyside", + "name": "Merseyside", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/merseyside-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "merseyside", + "source_size_bytes": 24840534, + "west": -3.342781, + "south": 53.2854, + "east": -2.575686, + "north": 53.70528, + "asset_name": "occumed-merseyside.pmtiles", + "metadata_name": "occumed-merseyside.json" + }, + { + "id": "mexico", + "slug": "mexico", + "name": "Mexico", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/mexico-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "mexico", + "source_size_bytes": 640418757, + "west": -132.4952, + "south": 9.456709, + "east": -85.49087, + "north": 32.72067, + "asset_name": "occumed-mexico.pmtiles", + "metadata_name": "occumed-mexico.json" + }, + { + "id": "micronesia", + "slug": "micronesia", + "name": "Micronesia", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/micronesia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "micronesia", + "source_size_bytes": 1983794, + "west": 135.3124, + "south": -1.147444, + "east": 165.6345, + "north": 13.21917, + "asset_name": "occumed-micronesia.pmtiles", + "metadata_name": "occumed-micronesia.json" + }, + { + "id": "midi-pyrenees", + "slug": "midi-pyrenees", + "name": "Midi-Pyrenees", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/midi-pyrenees-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "midi-pyrenees", + "source_size_bytes": 359360321, + "west": -0.327537, + "south": 42.56793, + "east": 3.453264, + "north": 45.04779, + "asset_name": "occumed-midi-pyrenees.pmtiles", + "metadata_name": "occumed-midi-pyrenees.json" + }, + { + "id": "mittelfranken", + "slug": "mittelfranken", + "name": "Mittelfranken", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/bayern/mittelfranken-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "mittelfranken", + "source_size_bytes": 94553367, + "west": 10.06565, + "south": 48.85325, + "east": 11.60553, + "north": 49.79103, + "asset_name": "occumed-mittelfranken.pmtiles", + "metadata_name": "occumed-mittelfranken.json" + }, + { + "id": "moldova", + "slug": "moldova", + "name": "Moldova", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/moldova-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "moldova", + "source_size_bytes": 100412925, + "west": 26.61232, + "south": 45.46164, + "east": 30.19249, + "north": 48.49397, + "asset_name": "occumed-moldova.pmtiles", + "metadata_name": "occumed-moldova.json" + }, + { + "id": "monaco", + "slug": "monaco", + "name": "Monaco", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/monaco-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "monaco", + "source_size_bytes": 686343, + "west": 7.408583, + "south": 43.48382, + "east": 7.595671, + "north": 43.75293, + "asset_name": "occumed-monaco.pmtiles", + "metadata_name": "occumed-monaco.json" + }, + { + "id": "mongolia", + "slug": "mongolia", + "name": "Mongolia", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/mongolia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "mongolia", + "source_size_bytes": 61836771, + "west": 87.70255, + "south": 41.50035, + "east": 120.0201, + "north": 52.19582, + "asset_name": "occumed-mongolia.pmtiles", + "metadata_name": "occumed-mongolia.json" + }, + { + "id": "montenegro", + "slug": "montenegro", + "name": "Montenegro", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/montenegro-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "montenegro", + "source_size_bytes": 33963643, + "west": 18.17282, + "south": 41.61621, + "east": 20.35883, + "north": 43.56217, + "asset_name": "occumed-montenegro.pmtiles", + "metadata_name": "occumed-montenegro.json" + }, + { + "id": "moravskoslezky", + "slug": "moravskoslezky", + "name": "Moravskoslezský kraj", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/czech-republic/moravskoslezky-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "moravskoslezky", + "source_size_bytes": 79491195, + "west": 17.14468, + "south": 49.37126, + "east": 18.86321, + "north": 50.3303, + "asset_name": "occumed-moravskoslezky.pmtiles", + "metadata_name": "occumed-moravskoslezky.json" + }, + { + "id": "morocco", + "slug": "morocco", + "name": "Morocco", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/morocco-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "morocco", + "source_size_bytes": 243013433, + "west": -18.1835, + "south": 20.40373, + "east": -0.993576, + "north": 36.06077, + "asset_name": "occumed-morocco.pmtiles", + "metadata_name": "occumed-morocco.json" + }, + { + "id": "mozambique", + "slug": "mozambique", + "name": "Mozambique", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/mozambique-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "mozambique", + "source_size_bytes": 254690794, + "west": 30.20742, + "south": -26.93837, + "east": 42.53489, + "north": -9.986206, + "asset_name": "occumed-mozambique.pmtiles", + "metadata_name": "occumed-mozambique.json" + }, + { + "id": "muenster-regbez", + "slug": "muenster-regbez", + "name": "Regierungsbezirk Münster", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/nordrhein-westfalen/muenster-regbez-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "muenster-regbez", + "source_size_bytes": 139745135, + "west": 6.38588, + "south": 51.47971, + "east": 8.321177, + "north": 52.47682, + "asset_name": "occumed-muenster-regbez.pmtiles", + "metadata_name": "occumed-muenster-regbez.json" + }, + { + "id": "murcia", + "slug": "murcia", + "name": "Murcia", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/murcia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "murcia", + "source_size_bytes": 35143706, + "west": -2.351246, + "south": 37.11215, + "east": -0.247194, + "north": 38.76024, + "asset_name": "occumed-murcia.pmtiles", + "metadata_name": "occumed-murcia.json" + }, + { + "id": "myanmar", + "slug": "myanmar", + "name": "Myanmar (a.k.a. Burma)", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/myanmar-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "myanmar", + "source_size_bytes": 275923982, + "west": 90.65133, + "south": 9.510211, + "east": 101.1971, + "north": 28.57476, + "asset_name": "occumed-myanmar.pmtiles", + "metadata_name": "occumed-myanmar.json" + }, + { + "id": "namibia", + "slug": "namibia", + "name": "Namibia", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/namibia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "namibia", + "source_size_bytes": 54089501, + "west": 9.784615, + "south": -30.20686, + "east": 25.26589, + "north": -16.91682, + "asset_name": "occumed-namibia.pmtiles", + "metadata_name": "occumed-namibia.json" + }, + { + "id": "nauru", + "slug": "nauru", + "name": "Nauru", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/nauru-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "nauru", + "source_size_bytes": 264983, + "west": 163.7052, + "south": -3.771196, + "east": 168.5599, + "north": 2.693851, + "asset_name": "occumed-nauru.pmtiles", + "metadata_name": "occumed-nauru.json" + }, + { + "id": "navarra", + "slug": "navarra", + "name": "Navarra", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/navarra-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "navarra", + "source_size_bytes": 37150781, + "west": -2.502308, + "south": 41.90611, + "east": -0.716515, + "north": 43.31655, + "asset_name": "occumed-navarra.pmtiles", + "metadata_name": "occumed-navarra.json" + }, + { + "id": "nepal", + "slug": "nepal", + "name": "Nepal", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/nepal-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "nepal", + "source_size_bytes": 411686693, + "west": 80.04913, + "south": 26.3445, + "east": 88.22213, + "north": 30.47822, + "asset_name": "occumed-nepal.pmtiles", + "metadata_name": "occumed-nepal.json" + }, + { + "id": "new-brunswick", + "slug": "new-brunswick", + "name": "New Brunswick", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/new-brunswick-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "new-brunswick", + "source_size_bytes": 66198908, + "west": -69.05975, + "south": 44.19205, + "east": -62.88575, + "north": 48.38075, + "asset_name": "occumed-new-brunswick.pmtiles", + "metadata_name": "occumed-new-brunswick.json" + }, + { + "id": "new-caledonia", + "slug": "new-caledonia", + "name": "New Caledonia", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/new-caledonia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "new-caledonia", + "source_size_bytes": 14182945, + "west": 157.9, + "south": -25, + "east": 174.1, + "north": -16.9, + "asset_name": "occumed-new-caledonia.pmtiles", + "metadata_name": "occumed-new-caledonia.json" + }, + { + "id": "new-south-wales", + "slug": "new-south-wales", + "name": "New South Wales (with ACT and JBT)", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/new-south-wales-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "new-south-wales", + "source_size_bytes": 265040388, + "west": 140.9948, + "south": -37.75984, + "east": 160.0747, + "north": -28.13898, + "asset_name": "occumed-new-south-wales.pmtiles", + "metadata_name": "occumed-new-south-wales.json" + }, + { + "id": "new-zealand", + "slug": "new-zealand", + "name": "New Zealand", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/new-zealand-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "new-zealand", + "source_size_bytes": 400613356, + "west": 162.096, + "south": -56.75268, + "east": -173.5849, + "north": -28.488, + "asset_name": "occumed-new-zealand.pmtiles", + "metadata_name": "occumed-new-zealand.json" + }, + { + "id": "newfoundland-and-labrador", + "slug": "newfoundland-and-labrador", + "name": "Newfoundland and Labrador", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/newfoundland-and-labrador-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "newfoundland-and-labrador", + "source_size_bytes": 259096612, + "west": -67.87079, + "south": 44.45787, + "east": -44.17684, + "north": 60.50864, + "asset_name": "occumed-newfoundland-and-labrador.pmtiles", + "metadata_name": "occumed-newfoundland-and-labrador.json" + }, + { + "id": "nicaragua", + "slug": "nicaragua", + "name": "Nicaragua", + "continent": "central-america", + "pbf_url": "https://download.geofabrik.de/central-america/nicaragua-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "nicaragua", + "source_size_bytes": 60809386, + "west": -87.9774, + "south": 10.70177, + "east": -82.37865, + "north": 15.1119, + "asset_name": "occumed-nicaragua.pmtiles", + "metadata_name": "occumed-nicaragua.json" + }, + { + "id": "niederbayern", + "slug": "niederbayern", + "name": "Niederbayern", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/bayern/niederbayern-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "niederbayern", + "source_size_bytes": 94603382, + "west": 11.59302, + "south": 48.20179, + "east": 13.84947, + "north": 49.17605, + "asset_name": "occumed-niederbayern.pmtiles", + "metadata_name": "occumed-niederbayern.json" + }, + { + "id": "niedersachsen", + "slug": "niedersachsen", + "name": "Niedersachsen (mit Bremen)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/niedersachsen-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "niedersachsen", + "source_size_bytes": 500869095, + "west": 6.295338, + "south": 51.29348, + "east": 11.60731, + "north": 54.23955, + "asset_name": "occumed-niedersachsen.pmtiles", + "metadata_name": "occumed-niedersachsen.json" + }, + { + "id": "niger", + "slug": "niger", + "name": "Niger", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/niger-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "niger", + "source_size_bytes": 76258977, + "west": 0.119721, + "south": 11.68684, + "east": 16.05605, + "north": 23.56864, + "asset_name": "occumed-niger.pmtiles", + "metadata_name": "occumed-niger.json" + }, + { + "id": "nigeria", + "slug": "nigeria", + "name": "Nigeria", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/nigeria-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "nigeria", + "source_size_bytes": 711326092, + "west": 2.664528, + "south": 2.674022, + "east": 14.68057, + "north": 13.89874, + "asset_name": "occumed-nigeria.pmtiles", + "metadata_name": "occumed-nigeria.json" + }, + { + "id": "ningxia", + "slug": "ningxia", + "name": "Ningxia", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/ningxia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "ningxia", + "source_size_bytes": 8277923, + "west": 104.275, + "south": 35.23272, + "east": 107.6571, + "north": 39.38606, + "asset_name": "occumed-ningxia.pmtiles", + "metadata_name": "occumed-ningxia.json" + }, + { + "id": "niue", + "slug": "niue", + "name": "Niue", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/niue-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "niue", + "source_size_bytes": 424044, + "west": -172.027, + "south": -22.47347, + "east": -166.2989, + "north": -16.63667, + "asset_name": "occumed-niue.pmtiles", + "metadata_name": "occumed-niue.json" + }, + { + "id": "noord-brabant", + "slug": "noord-brabant", + "name": "Noord-Brabant", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/netherlands/noord-brabant-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "noord-brabant", + "source_size_bytes": 206300729, + "west": 4.189152, + "south": 51.21808, + "east": 6.049354, + "north": 51.83181, + "asset_name": "occumed-noord-brabant.pmtiles", + "metadata_name": "occumed-noord-brabant.json" + }, + { + "id": "noord-holland", + "slug": "noord-holland", + "name": "Noord-Holland", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/netherlands/noord-holland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "noord-holland", + "source_size_bytes": 188265792, + "west": 3.896906, + "south": 52.16497, + "east": 5.378479, + "north": 53.28945, + "asset_name": "occumed-noord-holland.pmtiles", + "metadata_name": "occumed-noord-holland.json" + }, + { + "id": "norcal", + "slug": "norcal", + "name": "Northern California", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/california/norcal-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "norcal", + "source_size_bytes": 647700123, + "west": -125.8935, + "south": 35.78528, + "east": -115.6468, + "north": 42.01618, + "asset_name": "occumed-norcal.pmtiles", + "metadata_name": "occumed-norcal.json" + }, + { + "id": "nord-est", + "slug": "nord-est", + "name": "Nord-Est", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/italy/nord-est-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "nord-est", + "source_size_bytes": 620528273, + "west": 9.195461, + "south": 43.72977, + "east": 13.92878, + "north": 47.10005, + "asset_name": "occumed-nord-est.pmtiles", + "metadata_name": "occumed-nord-est.json" + }, + { + "id": "nord-norge", + "slug": "nord-norge", + "name": "Nord-Norge
(Northern Norway)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/norway/nord-norge-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "nord-norge", + "source_size_bytes": 405319114, + "west": 7.840204, + "south": 64.93917, + "east": 33.63965, + "north": 72.4056, + "asset_name": "occumed-nord-norge.pmtiles", + "metadata_name": "occumed-nord-norge.json" + }, + { + "id": "nord-ovest", + "slug": "nord-ovest", + "name": "Nord-Ovest", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/italy/nord-ovest-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "nord-ovest", + "source_size_bytes": 585248577, + "west": 6.602696, + "south": 43.48099, + "east": 11.43336, + "north": 46.64119, + "asset_name": "occumed-nord-ovest.pmtiles", + "metadata_name": "occumed-nord-ovest.json" + }, + { + "id": "nord-pas-de-calais", + "slug": "nord-pas-de-calais", + "name": "Nord-Pas-de-Calais", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/nord-pas-de-calais-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "nord-pas-de-calais", + "source_size_bytes": 237322272, + "west": 1.278311, + "south": 49.96764, + "east": 4.236622, + "north": 51.28121, + "asset_name": "occumed-nord-pas-de-calais.pmtiles", + "metadata_name": "occumed-nord-pas-de-calais.json" + }, + { + "id": "nordeste", + "slug": "nordeste", + "name": "Nordeste", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/brazil/nordeste-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "nordeste", + "source_size_bytes": 436421052, + "west": -48.77554, + "south": -18.59514, + "east": -28.42028, + "north": 2.673015, + "asset_name": "occumed-nordeste.pmtiles", + "metadata_name": "occumed-nordeste.json" + }, + { + "id": "norfolk", + "slug": "norfolk", + "name": "Norfolk", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/norfolk-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "norfolk", + "source_size_bytes": 46586050, + "west": 0.15447, + "south": 52.35478, + "east": 1.992789, + "north": 53.35573, + "asset_name": "occumed-norfolk.pmtiles", + "metadata_name": "occumed-norfolk.json" + }, + { + "id": "norfolk-island", + "slug": "norfolk-island", + "name": "Norfolk Island", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/norfolk-island-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "norfolk-island", + "source_size_bytes": 334205, + "west": 167.6245, + "south": -29.46068, + "east": 168.3456, + "north": -28.75781, + "asset_name": "occumed-norfolk-island.pmtiles", + "metadata_name": "occumed-norfolk-island.json" + }, + { + "id": "norte", + "slug": "norte", + "name": "Norte", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/brazil/norte-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "norte", + "source_size_bytes": 158359301, + "west": -74.02313, + "south": -13.73407, + "east": -42.87915, + "north": 5.522895, + "asset_name": "occumed-norte.pmtiles", + "metadata_name": "occumed-norte.json" + }, + { + "id": "north-admreg", + "slug": "north-admreg", + "name": "North Administrative Region", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/british-columbia/north-admreg-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "north-admreg", + "source_size_bytes": 761357224, + "west": -141.7761, + "south": 51.0635, + "east": -117.938, + "north": 60.00678, + "asset_name": "occumed-north-admreg.pmtiles", + "metadata_name": "occumed-north-admreg.json" + }, + { + "id": "north-caucasus-fed-district", + "slug": "north-caucasus-fed-district", + "name": "North Caucasus Federal District", + "continent": "north-caucasus-fed-district", + "pbf_url": "https://download.geofabrik.de/russia/north-caucasus-fed-district-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "north-caucasus-fed-district", + "source_size_bytes": 127864044, + "west": 40.67265, + "south": 41.1355, + "east": 48.86453, + "north": 46.23914, + "asset_name": "occumed-north-caucasus-fed-district.pmtiles", + "metadata_name": "occumed-north-caucasus-fed-district.json" + }, + { + "id": "north-eastern-zone", + "slug": "north-eastern-zone", + "name": "North-Eastern Zone", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/india/north-eastern-zone-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "north-eastern-zone", + "source_size_bytes": 109060700, + "west": 88.00852, + "south": 21.92712, + "east": 97.41989, + "north": 29.42883, + "asset_name": "occumed-north-eastern-zone.pmtiles", + "metadata_name": "occumed-north-eastern-zone.json" + }, + { + "id": "north-korea", + "slug": "north-korea", + "name": "North Korea", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/north-korea-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "north-korea", + "source_size_bytes": 91165484, + "west": 123.697, + "south": 37.61103, + "east": 131.6447, + "north": 43.02043, + "asset_name": "occumed-north-korea.pmtiles", + "metadata_name": "occumed-north-korea.json" + }, + { + "id": "north-yorkshire", + "slug": "north-yorkshire", + "name": "North Yorkshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/north-yorkshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "north-yorkshire", + "source_size_bytes": 61021283, + "west": -2.567177, + "south": 53.61999, + "east": -0.040615, + "north": 54.70222, + "asset_name": "occumed-north-yorkshire.pmtiles", + "metadata_name": "occumed-north-yorkshire.json" + }, + { + "id": "northamptonshire", + "slug": "northamptonshire", + "name": "Northamptonshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/northamptonshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "northamptonshire", + "source_size_bytes": 21976056, + "west": -1.334028, + "south": 51.9765, + "east": -0.34068, + "north": 52.64459, + "asset_name": "occumed-northamptonshire.pmtiles", + "metadata_name": "occumed-northamptonshire.json" + }, + { + "id": "northern-territory", + "slug": "northern-territory", + "name": "Northern Territory", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/northern-territory-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "northern-territory", + "source_size_bytes": 17607473, + "west": 128.6705, + "south": -26.00085, + "east": 140.4241, + "north": -9.971934, + "asset_name": "occumed-northern-territory.pmtiles", + "metadata_name": "occumed-northern-territory.json" + }, + { + "id": "northern-zone", + "slug": "northern-zone", + "name": "Northern Zone", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/india/northern-zone-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "northern-zone", + "source_size_bytes": 222328628, + "west": 69.43908, + "south": 23.04688, + "east": 79.48883, + "north": 35.73091, + "asset_name": "occumed-northern-zone.pmtiles", + "metadata_name": "occumed-northern-zone.json" + }, + { + "id": "northumberland", + "slug": "northumberland", + "name": "Northumberland", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/northumberland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "northumberland", + "source_size_bytes": 25992665, + "west": -2.690724, + "south": 54.78162, + "east": -1.223287, + "north": 55.84866, + "asset_name": "occumed-northumberland.pmtiles", + "metadata_name": "occumed-northumberland.json" + }, + { + "id": "northwest-territories", + "slug": "northwest-territories", + "name": "Northwest Territories", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/northwest-territories-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "northwest-territories", + "source_size_bytes": 425522084, + "west": -136.6974, + "south": 59.9896, + "east": -101.976, + "north": 81.65483, + "asset_name": "occumed-northwest-territories.pmtiles", + "metadata_name": "occumed-northwest-territories.json" + }, + { + "id": "northwestern-fed-district", + "slug": "northwestern-fed-district", + "name": "Northwestern Federal District", + "continent": "northwestern-fed-district", + "pbf_url": "https://download.geofabrik.de/russia/northwestern-fed-district-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "northwestern-fed-district", + "source_size_bytes": 647483692, + "west": 19.40837, + "south": 54.31282, + "east": 72.62481, + "north": 82.54561, + "asset_name": "occumed-northwestern-fed-district.pmtiles", + "metadata_name": "occumed-northwestern-fed-district.json" + }, + { + "id": "nottinghamshire", + "slug": "nottinghamshire", + "name": "Nottinghamshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/nottinghamshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "nottinghamshire", + "source_size_bytes": 38332603, + "west": -1.344477, + "south": 52.78153, + "east": -0.666651, + "north": 53.50315, + "asset_name": "occumed-nottinghamshire.pmtiles", + "metadata_name": "occumed-nottinghamshire.json" + }, + { + "id": "nova-scotia", + "slug": "nova-scotia", + "name": "Nova Scotia", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/nova-scotia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "nova-scotia", + "source_size_bytes": 98793034, + "west": -67.24728, + "south": 42.10691, + "east": -58.22593, + "north": 47.89793, + "asset_name": "occumed-nova-scotia.pmtiles", + "metadata_name": "occumed-nova-scotia.json" + }, + { + "id": "nusa-tenggara", + "slug": "nusa-tenggara", + "name": "Nusa-Tenggara", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/indonesia/nusa-tenggara-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "nusa-tenggara", + "source_size_bytes": 173127953, + "west": 114.4089, + "south": -11.60655, + "east": 128.408, + "north": -6.675509, + "asset_name": "occumed-nusa-tenggara.pmtiles", + "metadata_name": "occumed-nusa-tenggara.json" + }, + { + "id": "oberbayern", + "slug": "oberbayern", + "name": "Oberbayern", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/bayern/oberbayern-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "oberbayern", + "source_size_bytes": 255587391, + "west": 10.71268, + "south": 47.3913, + "east": 13.10973, + "north": 49.09052, + "asset_name": "occumed-oberbayern.pmtiles", + "metadata_name": "occumed-oberbayern.json" + }, + { + "id": "oberfranken", + "slug": "oberfranken", + "name": "Oberfranken", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/bayern/oberfranken-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "oberfranken", + "source_size_bytes": 94116087, + "west": 10.43816, + "south": 49.5854, + "east": 12.27356, + "north": 50.52571, + "asset_name": "occumed-oberfranken.pmtiles", + "metadata_name": "occumed-oberfranken.json" + }, + { + "id": "oberpfalz", + "slug": "oberpfalz", + "name": "Oberpfalz", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/bayern/oberpfalz-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "oberpfalz", + "source_size_bytes": 85011160, + "west": 11.18231, + "south": 48.76243, + "east": 13.17628, + "north": 50.08323, + "asset_name": "occumed-oberpfalz.pmtiles", + "metadata_name": "occumed-oberpfalz.json" + }, + { + "id": "okanagan-admreg", + "slug": "okanagan-admreg", + "name": "Okanagan Administrative Region", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/british-columbia/okanagan-admreg-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "okanagan-admreg", + "source_size_bytes": 44518031, + "west": -121.1, + "south": 48.99456, + "east": -116.8259, + "north": 52.57309, + "asset_name": "occumed-okanagan-admreg.pmtiles", + "metadata_name": "occumed-okanagan-admreg.json" + }, + { + "id": "olomoucky", + "slug": "olomoucky", + "name": "Olomoucký kraj", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/czech-republic/olomoucky-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "olomoucky", + "source_size_bytes": 57314056, + "west": 16.70909, + "south": 49.26735, + "east": 17.92035, + "north": 50.45234, + "asset_name": "occumed-olomoucky.pmtiles", + "metadata_name": "occumed-olomoucky.json" + }, + { + "id": "ontario--r1-c1", + "slug": "ontario--r1-c1", + "name": "Ontario 1.1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/ontario-latest.osm.pbf", + "extract_bbox": "-95.15965,41.66009,-84.734815,49.584175", + "source_region_id": "ontario", + "source_size_bytes": 966741555, + "west": -95.15965, + "south": 41.66009, + "east": -84.734815, + "north": 49.584175, + "asset_name": "occumed-ontario--r1-c1.pmtiles", + "metadata_name": "occumed-ontario--r1-c1.json" + }, + { + "id": "ontario--r1-c2", + "slug": "ontario--r1-c2", + "name": "Ontario 1.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/ontario-latest.osm.pbf", + "extract_bbox": "-84.734815,41.66009,-74.30998,49.584175", + "source_region_id": "ontario", + "source_size_bytes": 966741555, + "west": -84.734815, + "south": 41.66009, + "east": -74.30998, + "north": 49.584175, + "asset_name": "occumed-ontario--r1-c2.pmtiles", + "metadata_name": "occumed-ontario--r1-c2.json" + }, + { + "id": "ontario--r2-c1", + "slug": "ontario--r2-c1", + "name": "Ontario 2.1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/ontario-latest.osm.pbf", + "extract_bbox": "-95.15965,49.584175,-84.734815,57.50826", + "source_region_id": "ontario", + "source_size_bytes": 966741555, + "west": -95.15965, + "south": 49.584175, + "east": -84.734815, + "north": 57.50826, + "asset_name": "occumed-ontario--r2-c1.pmtiles", + "metadata_name": "occumed-ontario--r2-c1.json" + }, + { + "id": "ontario--r2-c2", + "slug": "ontario--r2-c2", + "name": "Ontario 2.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/ontario-latest.osm.pbf", + "extract_bbox": "-84.734815,49.584175,-74.30998,57.50826", + "source_region_id": "ontario", + "source_size_bytes": 966741555, + "west": -84.734815, + "south": 49.584175, + "east": -74.30998, + "north": 57.50826, + "asset_name": "occumed-ontario--r2-c2.pmtiles", + "metadata_name": "occumed-ontario--r2-c2.json" + }, + { + "id": "opolskie", + "slug": "opolskie", + "name": "Województwo opolskie
(Opole Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/opolskie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "opolskie", + "source_size_bytes": 54141566, + "west": 16.9015, + "south": 49.95766, + "east": 18.70219, + "north": 51.2014, + "asset_name": "occumed-opolskie.pmtiles", + "metadata_name": "occumed-opolskie.json" + }, + { + "id": "ostlandet", + "slug": "ostlandet", + "name": "Østlandet
(Eastern Norway)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/norway/ostlandet-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "ostlandet", + "source_size_bytes": 453713058, + "west": 7.095391, + "south": 58.5968, + "east": 12.88071, + "north": 62.69734, + "asset_name": "occumed-ostlandet.pmtiles", + "metadata_name": "occumed-ostlandet.json" + }, + { + "id": "overijssel", + "slug": "overijssel", + "name": "Overijssel", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/netherlands/overijssel-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "overijssel", + "source_size_bytes": 112874789, + "west": 5.776793, + "south": 52.11349, + "east": 7.075066, + "north": 52.85539, + "asset_name": "occumed-overijssel.pmtiles", + "metadata_name": "occumed-overijssel.json" + }, + { + "id": "oxfordshire", + "slug": "oxfordshire", + "name": "Oxfordshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/oxfordshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "oxfordshire", + "source_size_bytes": 27695965, + "west": -1.719533, + "south": 51.46057, + "east": -0.86985, + "north": 52.16807, + "asset_name": "occumed-oxfordshire.pmtiles", + "metadata_name": "occumed-oxfordshire.json" + }, + { + "id": "pais-vasco", + "slug": "pais-vasco", + "name": "País Vasco", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/pais-vasco-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "pais-vasco", + "source_size_bytes": 68419158, + "west": -3.454342, + "south": 42.46919, + "east": -1.666284, + "north": 43.74729, + "asset_name": "occumed-pais-vasco.pmtiles", + "metadata_name": "occumed-pais-vasco.json" + }, + { + "id": "pakistan", + "slug": "pakistan", + "name": "Pakistan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/pakistan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "pakistan", + "source_size_bytes": 154472497, + "west": 60.82168, + "south": 23.3763, + "east": 77.22427, + "north": 37.10667, + "asset_name": "occumed-pakistan.pmtiles", + "metadata_name": "occumed-pakistan.json" + }, + { + "id": "palau", + "slug": "palau", + "name": "Palau", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/palau-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "palau", + "source_size_bytes": 819395, + "west": 130.1034, + "south": 1.621407, + "east": 136.9541, + "north": 11.48818, + "asset_name": "occumed-palau.pmtiles", + "metadata_name": "occumed-palau.json" + }, + { + "id": "panama", + "slug": "panama", + "name": "Panama", + "continent": "central-america", + "pbf_url": "https://download.geofabrik.de/central-america/panama-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "panama", + "source_size_bytes": 34152292, + "west": -83.46462, + "south": 6.644027, + "east": -77.08126, + "north": 11.20708, + "asset_name": "occumed-panama.pmtiles", + "metadata_name": "occumed-panama.json" + }, + { + "id": "papua", + "slug": "papua", + "name": "Papua", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/indonesia/papua-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "papua", + "source_size_bytes": 34795319, + "west": 128.2819, + "south": -9.495116, + "east": 141.0217, + "north": 2.075967, + "asset_name": "occumed-papua.pmtiles", + "metadata_name": "occumed-papua.json" + }, + { + "id": "papua-new-guinea", + "slug": "papua-new-guinea", + "name": "Papua New Guinea", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/papua-new-guinea-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "papua-new-guinea", + "source_size_bytes": 53628722, + "west": 139.2014, + "south": -14.74845, + "east": 162.8034, + "north": 2.587814, + "asset_name": "occumed-papua-new-guinea.pmtiles", + "metadata_name": "occumed-papua-new-guinea.json" + }, + { + "id": "paraguay", + "slug": "paraguay", + "name": "Paraguay", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/paraguay-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "paraguay", + "source_size_bytes": 154077137, + "west": -62.69475, + "south": -27.65675, + "east": -54.20176, + "north": -19.24012, + "asset_name": "occumed-paraguay.pmtiles", + "metadata_name": "occumed-paraguay.json" + }, + { + "id": "pardubicky", + "slug": "pardubicky", + "name": "Pardubický kraj", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/czech-republic/pardubicky-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "pardubicky", + "source_size_bytes": 54853820, + "west": 15.3626, + "south": 49.57176, + "east": 16.86804, + "north": 50.21306, + "asset_name": "occumed-pardubicky.pmtiles", + "metadata_name": "occumed-pardubicky.json" + }, + { + "id": "pays-de-la-loire", + "slug": "pays-de-la-loire", + "name": "Pays de la Loire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/pays-de-la-loire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "pays-de-la-loire", + "source_size_bytes": 370174261, + "west": -2.674666, + "south": 46.21875, + "east": 0.918996, + "north": 48.57002, + "asset_name": "occumed-pays-de-la-loire.pmtiles", + "metadata_name": "occumed-pays-de-la-loire.json" + }, + { + "id": "peru", + "slug": "peru", + "name": "Peru", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/peru-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "peru", + "source_size_bytes": 254406256, + "west": -86.02509, + "south": -20.30552, + "east": -68.55439, + "north": 0.060049, + "asset_name": "occumed-peru.pmtiles", + "metadata_name": "occumed-peru.json" + }, + { + "id": "philippines", + "slug": "philippines", + "name": "Philippines", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/philippines-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "philippines", + "source_size_bytes": 602304155, + "west": 112.1661, + "south": 4.382696, + "east": 127.0742, + "north": 21.53021, + "asset_name": "occumed-philippines.pmtiles", + "metadata_name": "occumed-philippines.json" + }, + { + "id": "picardie", + "slug": "picardie", + "name": "Picardie", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/picardie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "picardie", + "source_size_bytes": 132608245, + "west": 1.360085, + "south": 48.83599, + "east": 4.256744, + "north": 50.37125, + "asset_name": "occumed-picardie.pmtiles", + "metadata_name": "occumed-picardie.json" + }, + { + "id": "pitcairn-islands", + "slug": "pitcairn-islands", + "name": "Pitcairn Islands", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/pitcairn-islands-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "pitcairn-islands", + "source_size_bytes": 114368, + "west": -133.0664, + "south": -27.66403, + "east": -118.3448, + "north": -21.59613, + "asset_name": "occumed-pitcairn-islands.pmtiles", + "metadata_name": "occumed-pitcairn-islands.json" + }, + { + "id": "plzensky", + "slug": "plzensky", + "name": "Plzeňský kraj", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/czech-republic/plzensky-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "plzensky", + "source_size_bytes": 70891823, + "west": 12.38887, + "south": 48.93387, + "east": 13.84247, + "north": 50.10566, + "asset_name": "occumed-plzensky.pmtiles", + "metadata_name": "occumed-plzensky.json" + }, + { + "id": "podkarpackie", + "slug": "podkarpackie", + "name": "Województwo podkarpackie
(Subcarpathian Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/podkarpackie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "podkarpackie", + "source_size_bytes": 150914794, + "west": 21.13433, + "south": 48.98642, + "east": 23.5536, + "north": 50.82591, + "asset_name": "occumed-podkarpackie.pmtiles", + "metadata_name": "occumed-podkarpackie.json" + }, + { + "id": "podlaskie", + "slug": "podlaskie", + "name": "Województwo podlaskie
(Podlaskie Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/podlaskie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "podlaskie", + "source_size_bytes": 77202954, + "west": 21.58465, + "south": 52.27112, + "east": 23.96141, + "north": 54.4254, + "asset_name": "occumed-podlaskie.pmtiles", + "metadata_name": "occumed-podlaskie.json" + }, + { + "id": "poitou-charentes", + "slug": "poitou-charentes", + "name": "Poitou-Charentes", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/poitou-charentes-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "poitou-charentes", + "source_size_bytes": 230224542, + "west": -1.898565, + "south": 45.0868, + "east": 1.214991, + "north": 47.17837, + "asset_name": "occumed-poitou-charentes.pmtiles", + "metadata_name": "occumed-poitou-charentes.json" + }, + { + "id": "polynesie-francaise", + "slug": "polynesie-francaise", + "name": "Polynésie française (French Polynesia)", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/polynesie-francaise-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "polynesie-francaise", + "source_size_bytes": 15634994, + "west": -158.5547, + "south": -31.54105, + "east": -132.5391, + "north": -4.915789, + "asset_name": "occumed-polynesie-francaise.pmtiles", + "metadata_name": "occumed-polynesie-francaise.json" + }, + { + "id": "pomorskie", + "slug": "pomorskie", + "name": "Województwo pomorskie
(Pomeranian Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/pomorskie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "pomorskie", + "source_size_bytes": 116012235, + "west": 16.68699, + "south": 53.4806, + "east": 19.66069, + "north": 55.07949, + "asset_name": "occumed-pomorskie.pmtiles", + "metadata_name": "occumed-pomorskie.json" + }, + { + "id": "portugal", + "slug": "portugal", + "name": "Portugal", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/portugal-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "portugal", + "source_size_bytes": 419055095, + "west": -31.6, + "south": 32, + "east": -6.179513, + "north": 42.1639, + "asset_name": "occumed-portugal.pmtiles", + "metadata_name": "occumed-portugal.json" + }, + { + "id": "praha", + "slug": "praha", + "name": "Praha", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/czech-republic/praha-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "praha", + "source_size_bytes": 44238705, + "west": 14.22365, + "south": 49.94151, + "east": 14.70695, + "north": 50.17756, + "asset_name": "occumed-praha.pmtiles", + "metadata_name": "occumed-praha.json" + }, + { + "id": "prince-edward-island", + "slug": "prince-edward-island", + "name": "Prince Edward Island", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/prince-edward-island-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "prince-edward-island", + "source_size_bytes": 11253344, + "west": -64.60236, + "south": 45.82497, + "east": -61.24878, + "north": 47.68573, + "asset_name": "occumed-prince-edward-island.pmtiles", + "metadata_name": "occumed-prince-edward-island.json" + }, + { + "id": "provence-alpes-cote-d-azur", + "slug": "provence-alpes-cote-d-azur", + "name": "Provence Alpes-Cote-d'Azur", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/provence-alpes-cote-d-azur-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "provence-alpes-cote-d-azur", + "source_size_bytes": 386169612, + "west": 4.144746, + "south": 42.31539, + "east": 7.748528, + "north": 45.12887, + "asset_name": "occumed-provence-alpes-cote-d-azur.pmtiles", + "metadata_name": "occumed-provence-alpes-cote-d-azur.json" + }, + { + "id": "qikiqtaaluk", + "slug": "qikiqtaaluk", + "name": "Qikiqtaaluk Region", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/nunavut/qikiqtaaluk-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "qikiqtaaluk", + "source_size_bytes": 579744364, + "west": -110.0345, + "south": 51.1268, + "east": -53.98957, + "north": 84.32633, + "asset_name": "occumed-qikiqtaaluk.pmtiles", + "metadata_name": "occumed-qikiqtaaluk.json" + }, + { + "id": "qinghai", + "slug": "qinghai", + "name": "Qinghai", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/qinghai-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "qinghai", + "source_size_bytes": 32441145, + "west": 89.39, + "south": 31.58673, + "east": 103.0727, + "north": 39.22162, + "asset_name": "occumed-qinghai.pmtiles", + "metadata_name": "occumed-qinghai.json" + }, + { + "id": "quebec--r1-c1", + "slug": "quebec--r1-c1", + "name": "Quebec 1.1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/quebec-latest.osm.pbf", + "extract_bbox": "-79.8404,44.98552,-68.46474,53.80586", + "source_region_id": "quebec", + "source_size_bytes": 1157949394, + "west": -79.8404, + "south": 44.98552, + "east": -68.46474, + "north": 53.80586, + "asset_name": "occumed-quebec--r1-c1.pmtiles", + "metadata_name": "occumed-quebec--r1-c1.json" + }, + { + "id": "quebec--r1-c2", + "slug": "quebec--r1-c2", + "name": "Quebec 1.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/quebec-latest.osm.pbf", + "extract_bbox": "-68.46474,44.98552,-57.08908,53.80586", + "source_region_id": "quebec", + "source_size_bytes": 1157949394, + "west": -68.46474, + "south": 44.98552, + "east": -57.08908, + "north": 53.80586, + "asset_name": "occumed-quebec--r1-c2.pmtiles", + "metadata_name": "occumed-quebec--r1-c2.json" + }, + { + "id": "quebec--r2-c1", + "slug": "quebec--r2-c1", + "name": "Quebec 2.1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/quebec-latest.osm.pbf", + "extract_bbox": "-79.8404,53.80586,-68.46474,62.6262", + "source_region_id": "quebec", + "source_size_bytes": 1157949394, + "west": -79.8404, + "south": 53.80586, + "east": -68.46474, + "north": 62.6262, + "asset_name": "occumed-quebec--r2-c1.pmtiles", + "metadata_name": "occumed-quebec--r2-c1.json" + }, + { + "id": "quebec--r2-c2", + "slug": "quebec--r2-c2", + "name": "Quebec 2.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/quebec-latest.osm.pbf", + "extract_bbox": "-68.46474,53.80586,-57.08908,62.6262", + "source_region_id": "quebec", + "source_size_bytes": 1157949394, + "west": -68.46474, + "south": 53.80586, + "east": -57.08908, + "north": 62.6262, + "asset_name": "occumed-quebec--r2-c2.pmtiles", + "metadata_name": "occumed-quebec--r2-c2.json" + }, + { + "id": "queensland", + "slug": "queensland", + "name": "Queensland", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/queensland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "queensland", + "source_size_bytes": 196417783, + "west": 137.9902, + "south": -29.1831, + "east": 154.2005, + "north": -8.841629, + "asset_name": "occumed-queensland.pmtiles", + "metadata_name": "occumed-queensland.json" + }, + { + "id": "reunion", + "slug": "reunion", + "name": "Reunion", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/reunion-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "reunion", + "source_size_bytes": 34109578, + "west": 54.94688, + "south": -21.72922, + "east": 56.11999, + "north": -20.58589, + "asset_name": "occumed-reunion.pmtiles", + "metadata_name": "occumed-reunion.json" + }, + { + "id": "rheinland-pfalz", + "slug": "rheinland-pfalz", + "name": "Rheinland-Pfalz", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/rheinland-pfalz-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "rheinland-pfalz", + "source_size_bytes": 265563564, + "west": 6.109129, + "south": 48.96377, + "east": 8.511228, + "north": 50.94404, + "asset_name": "occumed-rheinland-pfalz.pmtiles", + "metadata_name": "occumed-rheinland-pfalz.json" + }, + { + "id": "rhone-alpes", + "slug": "rhone-alpes", + "name": "Rhone-Alpes", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/france/rhone-alpes-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "rhone-alpes", + "source_size_bytes": 524952644, + "west": 3.686075, + "south": 44.11274, + "east": 7.19206, + "north": 46.52248, + "asset_name": "occumed-rhone-alpes.pmtiles", + "metadata_name": "occumed-rhone-alpes.json" + }, + { + "id": "romania", + "slug": "romania", + "name": "Romania", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/romania-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "romania", + "source_size_bytes": 324912958, + "west": 20.24181, + "south": 43.61247, + "east": 30.27896, + "north": 48.26948, + "asset_name": "occumed-romania.pmtiles", + "metadata_name": "occumed-romania.json" + }, + { + "id": "rutland", + "slug": "rutland", + "name": "Rutland", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/rutland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "rutland", + "source_size_bytes": 1929910, + "west": -0.822934, + "south": 52.52355, + "east": -0.427654, + "north": 52.76109, + "asset_name": "occumed-rutland.pmtiles", + "metadata_name": "occumed-rutland.json" + }, + { + "id": "rwanda", + "slug": "rwanda", + "name": "Rwanda", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/rwanda-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "rwanda", + "source_size_bytes": 65989790, + "west": 28.8593, + "south": -2.848747, + "east": 30.90864, + "north": -1.03831, + "asset_name": "occumed-rwanda.pmtiles", + "metadata_name": "occumed-rwanda.json" + }, + { + "id": "saarland", + "slug": "saarland", + "name": "Saarland", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/saarland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "saarland", + "source_size_bytes": 54521770, + "west": 6.354475, + "south": 49.10807, + "east": 7.406287, + "north": 49.64146, + "asset_name": "occumed-saarland.pmtiles", + "metadata_name": "occumed-saarland.json" + }, + { + "id": "sachsen", + "slug": "sachsen", + "name": "Sachsen", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/sachsen-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "sachsen", + "source_size_bytes": 266309529, + "west": 11.86685, + "south": 50.16658, + "east": 15.05078, + "north": 51.68735, + "asset_name": "occumed-sachsen.pmtiles", + "metadata_name": "occumed-sachsen.json" + }, + { + "id": "sachsen-anhalt", + "slug": "sachsen-anhalt", + "name": "Sachsen-Anhalt", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/sachsen-anhalt-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "sachsen-anhalt", + "source_size_bytes": 173104810, + "west": 10.54725, + "south": 50.92887, + "east": 13.21268, + "north": 53.0566, + "asset_name": "occumed-sachsen-anhalt.pmtiles", + "metadata_name": "occumed-sachsen-anhalt.json" + }, + { + "id": "saint-helena-ascension-and-tristan-da-cunha", + "slug": "saint-helena-ascension-and-tristan-da-cunha", + "name": "Saint Helena, Ascension, and Tristan da Cunha", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/saint-helena-ascension-and-tristan-da-cunha-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "saint-helena-ascension-and-tristan-da-cunha", + "source_size_bytes": 892805, + "west": -15.57026, + "south": -43.83245, + "east": -2.781278, + "north": -4.591221, + "asset_name": "occumed-saint-helena-ascension-and-tristan-da-cunha.pmtiles", + "metadata_name": "occumed-saint-helena-ascension-and-tristan-da-cunha.json" + }, + { + "id": "samoa", + "slug": "samoa", + "name": "Samoa", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/samoa-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "samoa", + "source_size_bytes": 3452698, + "west": -174.5114, + "south": -15.87838, + "east": -170.5427, + "north": -10.96083, + "asset_name": "occumed-samoa.pmtiles", + "metadata_name": "occumed-samoa.json" + }, + { + "id": "sao-tome-and-principe", + "slug": "sao-tome-and-principe", + "name": "Sao Tome and Principe", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/sao-tome-and-principe-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "sao-tome-and-principe", + "source_size_bytes": 1255905, + "west": 5.273916, + "south": -0.525565, + "east": 8.366995, + "north": 2.440286, + "asset_name": "occumed-sao-tome-and-principe.pmtiles", + "metadata_name": "occumed-sao-tome-and-principe.json" + }, + { + "id": "saskatchewan", + "slug": "saskatchewan", + "name": "Saskatchewan", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/saskatchewan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "saskatchewan", + "source_size_bytes": 115982930, + "west": -110.0069, + "south": 48.9876, + "east": -101.3614, + "north": 60.00052, + "asset_name": "occumed-saskatchewan.pmtiles", + "metadata_name": "occumed-saskatchewan.json" + }, + { + "id": "schleswig-holstein", + "slug": "schleswig-holstein", + "name": "Schleswig-Holstein", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/schleswig-holstein-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "schleswig-holstein", + "source_size_bytes": 157137915, + "west": 7.46458, + "south": 53.3569, + "east": 11.79931, + "north": 55.14634, + "asset_name": "occumed-schleswig-holstein.pmtiles", + "metadata_name": "occumed-schleswig-holstein.json" + }, + { + "id": "schwaben", + "slug": "schwaben", + "name": "Schwaben", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/bayern/schwaben-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "schwaben", + "source_size_bytes": 127392237, + "west": 9.512461, + "south": 47.26543, + "east": 11.31348, + "north": 49.0366, + "asset_name": "occumed-schwaben.pmtiles", + "metadata_name": "occumed-schwaben.json" + }, + { + "id": "scotland", + "slug": "scotland", + "name": "Scotland", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/scotland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "scotland", + "source_size_bytes": 323319923, + "west": -14.86155, + "south": 54.54001, + "east": 0.216055, + "north": 61.13564, + "asset_name": "occumed-scotland.pmtiles", + "metadata_name": "occumed-scotland.json" + }, + { + "id": "sea--r1-c1", + "slug": "sea--r1-c1", + "name": "South-East Asia 1.1", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", + "extract_bbox": "90.65133,-11.60655,100.725404,1.78722", + "source_region_id": "sea", + "source_size_bytes": 3634443322, + "west": 90.65133, + "south": -11.60655, + "east": 100.725404, + "north": 1.78722, + "asset_name": "occumed-sea--r1-c1.pmtiles", + "metadata_name": "occumed-sea--r1-c1.json" + }, + { + "id": "sea--r1-c2", + "slug": "sea--r1-c2", + "name": "South-East Asia 1.2", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", + "extract_bbox": "100.725404,-11.60655,110.799478,1.78722", + "source_region_id": "sea", + "source_size_bytes": 3634443322, + "west": 100.725404, + "south": -11.60655, + "east": 110.799478, + "north": 1.78722, + "asset_name": "occumed-sea--r1-c2.pmtiles", + "metadata_name": "occumed-sea--r1-c2.json" + }, + { + "id": "sea--r1-c3", + "slug": "sea--r1-c3", + "name": "South-East Asia 1.3", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", + "extract_bbox": "110.799478,-11.60655,120.873552,1.78722", + "source_region_id": "sea", + "source_size_bytes": 3634443322, + "west": 110.799478, + "south": -11.60655, + "east": 120.873552, + "north": 1.78722, + "asset_name": "occumed-sea--r1-c3.pmtiles", + "metadata_name": "occumed-sea--r1-c3.json" + }, + { + "id": "sea--r1-c4", + "slug": "sea--r1-c4", + "name": "South-East Asia 1.4", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", + "extract_bbox": "120.873552,-11.60655,130.947626,1.78722", + "source_region_id": "sea", + "source_size_bytes": 3634443322, + "west": 120.873552, + "south": -11.60655, + "east": 130.947626, + "north": 1.78722, + "asset_name": "occumed-sea--r1-c4.pmtiles", + "metadata_name": "occumed-sea--r1-c4.json" + }, + { + "id": "sea--r1-c5", + "slug": "sea--r1-c5", + "name": "South-East Asia 1.5", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", + "extract_bbox": "130.947626,-11.60655,141.0217,1.78722", + "source_region_id": "sea", + "source_size_bytes": 3634443322, + "west": 130.947626, + "south": -11.60655, + "east": 141.0217, + "north": 1.78722, + "asset_name": "occumed-sea--r1-c5.pmtiles", + "metadata_name": "occumed-sea--r1-c5.json" + }, + { + "id": "sea--r2-c1", + "slug": "sea--r2-c1", + "name": "South-East Asia 2.1", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", + "extract_bbox": "90.65133,1.78722,100.725404,15.18099", + "source_region_id": "sea", + "source_size_bytes": 3634443322, + "west": 90.65133, + "south": 1.78722, + "east": 100.725404, + "north": 15.18099, + "asset_name": "occumed-sea--r2-c1.pmtiles", + "metadata_name": "occumed-sea--r2-c1.json" + }, + { + "id": "sea--r2-c2", + "slug": "sea--r2-c2", + "name": "South-East Asia 2.2", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", + "extract_bbox": "100.725404,1.78722,110.799478,15.18099", + "source_region_id": "sea", + "source_size_bytes": 3634443322, + "west": 100.725404, + "south": 1.78722, + "east": 110.799478, + "north": 15.18099, + "asset_name": "occumed-sea--r2-c2.pmtiles", + "metadata_name": "occumed-sea--r2-c2.json" + }, + { + "id": "sea--r2-c3", + "slug": "sea--r2-c3", + "name": "South-East Asia 2.3", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", + "extract_bbox": "110.799478,1.78722,120.873552,15.18099", + "source_region_id": "sea", + "source_size_bytes": 3634443322, + "west": 110.799478, + "south": 1.78722, + "east": 120.873552, + "north": 15.18099, + "asset_name": "occumed-sea--r2-c3.pmtiles", + "metadata_name": "occumed-sea--r2-c3.json" + }, + { + "id": "sea--r2-c4", + "slug": "sea--r2-c4", + "name": "South-East Asia 2.4", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", + "extract_bbox": "120.873552,1.78722,130.947626,15.18099", + "source_region_id": "sea", + "source_size_bytes": 3634443322, + "west": 120.873552, + "south": 1.78722, + "east": 130.947626, + "north": 15.18099, + "asset_name": "occumed-sea--r2-c4.pmtiles", + "metadata_name": "occumed-sea--r2-c4.json" + }, + { + "id": "sea--r2-c5", + "slug": "sea--r2-c5", + "name": "South-East Asia 2.5", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", + "extract_bbox": "130.947626,1.78722,141.0217,15.18099", + "source_region_id": "sea", + "source_size_bytes": 3634443322, + "west": 130.947626, + "south": 1.78722, + "east": 141.0217, + "north": 15.18099, + "asset_name": "occumed-sea--r2-c5.pmtiles", + "metadata_name": "occumed-sea--r2-c5.json" + }, + { + "id": "sea--r3-c1", + "slug": "sea--r3-c1", + "name": "South-East Asia 3.1", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", + "extract_bbox": "90.65133,15.18099,100.725404,28.57476", + "source_region_id": "sea", + "source_size_bytes": 3634443322, + "west": 90.65133, + "south": 15.18099, + "east": 100.725404, + "north": 28.57476, + "asset_name": "occumed-sea--r3-c1.pmtiles", + "metadata_name": "occumed-sea--r3-c1.json" + }, + { + "id": "sea--r3-c2", + "slug": "sea--r3-c2", + "name": "South-East Asia 3.2", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", + "extract_bbox": "100.725404,15.18099,110.799478,28.57476", + "source_region_id": "sea", + "source_size_bytes": 3634443322, + "west": 100.725404, + "south": 15.18099, + "east": 110.799478, + "north": 28.57476, + "asset_name": "occumed-sea--r3-c2.pmtiles", + "metadata_name": "occumed-sea--r3-c2.json" + }, + { + "id": "sea--r3-c3", + "slug": "sea--r3-c3", + "name": "South-East Asia 3.3", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", + "extract_bbox": "110.799478,15.18099,120.873552,28.57476", + "source_region_id": "sea", + "source_size_bytes": 3634443322, + "west": 110.799478, + "south": 15.18099, + "east": 120.873552, + "north": 28.57476, + "asset_name": "occumed-sea--r3-c3.pmtiles", + "metadata_name": "occumed-sea--r3-c3.json" + }, + { + "id": "sea--r3-c4", + "slug": "sea--r3-c4", + "name": "South-East Asia 3.4", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", + "extract_bbox": "120.873552,15.18099,130.947626,28.57476", + "source_region_id": "sea", + "source_size_bytes": 3634443322, + "west": 120.873552, + "south": 15.18099, + "east": 130.947626, + "north": 28.57476, + "asset_name": "occumed-sea--r3-c4.pmtiles", + "metadata_name": "occumed-sea--r3-c4.json" + }, + { + "id": "sea--r3-c5", + "slug": "sea--r3-c5", + "name": "South-East Asia 3.5", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", + "extract_bbox": "130.947626,15.18099,141.0217,28.57476", + "source_region_id": "sea", + "source_size_bytes": 3634443322, + "west": 130.947626, + "south": 15.18099, + "east": 141.0217, + "north": 28.57476, + "asset_name": "occumed-sea--r3-c5.pmtiles", + "metadata_name": "occumed-sea--r3-c5.json" + }, + { + "id": "senegal-and-gambia", + "slug": "senegal-and-gambia", + "name": "Senegal and Gambia", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/senegal-and-gambia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "senegal-and-gambia", + "source_size_bytes": 105020650, + "west": -19.85623, + "south": 12.01511, + "east": -11.33595, + "north": 16.70088, + "asset_name": "occumed-senegal-and-gambia.pmtiles", + "metadata_name": "occumed-senegal-and-gambia.json" + }, + { + "id": "serbia", + "slug": "serbia", + "name": "Serbia", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/serbia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "serbia", + "source_size_bytes": 238115885, + "west": 18.80894, + "south": 42.22979, + "east": 23.01035, + "north": 46.19207, + "asset_name": "occumed-serbia.pmtiles", + "metadata_name": "occumed-serbia.json" + }, + { + "id": "seychelles", + "slug": "seychelles", + "name": "Seychelles", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/seychelles-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "seychelles", + "source_size_bytes": 2755473, + "west": 45.68495, + "south": -12.55844, + "east": 57.57433, + "north": -3.17239, + "asset_name": "occumed-seychelles.pmtiles", + "metadata_name": "occumed-seychelles.json" + }, + { + "id": "shaanxi", + "slug": "shaanxi", + "name": "Shaanxi", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/shaanxi-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "shaanxi", + "source_size_bytes": 90626203, + "west": 105.4801, + "south": 31.695, + "east": 111.2479, + "north": 39.58902, + "asset_name": "occumed-shaanxi.pmtiles", + "metadata_name": "occumed-shaanxi.json" + }, + { + "id": "shandong", + "slug": "shandong", + "name": "Shandong", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/shandong-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "shandong", + "source_size_bytes": 70679526, + "west": 114.8133, + "south": 34.37575, + "east": 123.5632, + "north": 38.44, + "asset_name": "occumed-shandong.pmtiles", + "metadata_name": "occumed-shandong.json" + }, + { + "id": "shanghai", + "slug": "shanghai", + "name": "Shanghai", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/shanghai-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "shanghai", + "source_size_bytes": 25598329, + "west": 120.847, + "south": 30.6391, + "east": 123.679, + "north": 31.88455, + "asset_name": "occumed-shanghai.pmtiles", + "metadata_name": "occumed-shanghai.json" + }, + { + "id": "shanxi", + "slug": "shanxi", + "name": "Shanxi", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/shanxi-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "shanxi", + "source_size_bytes": 30793473, + "west": 110.2, + "south": 34.57895, + "east": 114.57, + "north": 40.75116, + "asset_name": "occumed-shanxi.pmtiles", + "metadata_name": "occumed-shanxi.json" + }, + { + "id": "shikoku", + "slug": "shikoku", + "name": "Shikoku", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/japan/shikoku-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "shikoku", + "source_size_bytes": 88505853, + "west": 131.7698, + "south": 32.22959, + "east": 135.1794, + "north": 34.65151, + "asset_name": "occumed-shikoku.pmtiles", + "metadata_name": "occumed-shikoku.json" + }, + { + "id": "shropshire", + "slug": "shropshire", + "name": "Shropshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/shropshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "shropshire", + "source_size_bytes": 24965044, + "west": -3.235577, + "south": 52.30616, + "east": -2.23354, + "north": 52.99693, + "asset_name": "occumed-shropshire.pmtiles", + "metadata_name": "occumed-shropshire.json" + }, + { + "id": "siberian-fed-district", + "slug": "siberian-fed-district", + "name": "Siberian Federal District", + "continent": "siberian-fed-district", + "pbf_url": "https://download.geofabrik.de/russia/siberian-fed-district-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "siberian-fed-district", + "source_size_bytes": 581492717, + "west": 70.27478, + "south": 49.02101, + "east": 147.7133, + "north": 81.88747, + "asset_name": "occumed-siberian-fed-district.pmtiles", + "metadata_name": "occumed-siberian-fed-district.json" + }, + { + "id": "sichuan", + "slug": "sichuan", + "name": "Sichuan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/sichuan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "sichuan", + "source_size_bytes": 105189267, + "west": 97.31277, + "south": 26.04599, + "east": 108.5508, + "north": 34.33153, + "asset_name": "occumed-sichuan.pmtiles", + "metadata_name": "occumed-sichuan.json" + }, + { + "id": "sierra-leone", + "slug": "sierra-leone", + "name": "Sierra Leone", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/sierra-leone-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "sierra-leone", + "source_size_bytes": 43025869, + "west": -14.76451, + "south": 5.391619, + "east": -10.2558, + "north": 10.00571, + "asset_name": "occumed-sierra-leone.pmtiles", + "metadata_name": "occumed-sierra-leone.json" + }, + { + "id": "slaskie", + "slug": "slaskie", + "name": "Województwo śląskie
(Silesian Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/slaskie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "slaskie", + "source_size_bytes": 183739518, + "west": 18.02213, + "south": 49.38, + "east": 19.98542, + "north": 51.1129, + "asset_name": "occumed-slaskie.pmtiles", + "metadata_name": "occumed-slaskie.json" + }, + { + "id": "slovakia", + "slug": "slovakia", + "name": "Slovakia", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/slovakia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "slovakia", + "source_size_bytes": 341533886, + "west": 16.83071, + "south": 47.72646, + "east": 22.57051, + "north": 49.6186, + "asset_name": "occumed-slovakia.pmtiles", + "metadata_name": "occumed-slovakia.json" + }, + { + "id": "slovenia", + "slug": "slovenia", + "name": "Slovenia", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/slovenia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "slovenia", + "source_size_bytes": 310321916, + "west": 13.30509, + "south": 45.42081, + "east": 16.60034, + "north": 46.87956, + "asset_name": "occumed-slovenia.pmtiles", + "metadata_name": "occumed-slovenia.json" + }, + { + "id": "socal", + "slug": "socal", + "name": "Southern California", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/california/socal-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "socal", + "source_size_bytes": 667087938, + "west": -121.4401, + "south": 32.48438, + "east": -114.1291, + "north": 35.81055, + "asset_name": "occumed-socal.pmtiles", + "metadata_name": "occumed-socal.json" + }, + { + "id": "solomon-islands", + "slug": "solomon-islands", + "name": "Solomon Islands", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/solomon-islands-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "solomon-islands", + "source_size_bytes": 11921888, + "west": 154.5856, + "south": -16.12694, + "east": 173.5934, + "north": -4.139945, + "asset_name": "occumed-solomon-islands.pmtiles", + "metadata_name": "occumed-solomon-islands.json" + }, + { + "id": "somalia", + "slug": "somalia", + "name": "Somalia", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/somalia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "somalia", + "source_size_bytes": 164579262, + "west": 40.97489, + "south": -1.816753, + "east": 52.44871, + "north": 12.51177, + "asset_name": "occumed-somalia.pmtiles", + "metadata_name": "occumed-somalia.json" + }, + { + "id": "somerset", + "slug": "somerset", + "name": "Somerset", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/somerset-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "somerset", + "source_size_bytes": 49041706, + "west": -3.84094, + "south": 50.81995, + "east": -2.243303, + "north": 51.50392, + "asset_name": "occumed-somerset.pmtiles", + "metadata_name": "occumed-somerset.json" + }, + { + "id": "sorlandet", + "slug": "sorlandet", + "name": "Sørlandet
(Southern Norway)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/norway/sorlandet-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "sorlandet", + "source_size_bytes": 77011658, + "west": 5.698662, + "south": 57.58445, + "east": 10.10434, + "north": 59.67468, + "asset_name": "occumed-sorlandet.pmtiles", + "metadata_name": "occumed-sorlandet.json" + }, + { + "id": "south-africa", + "slug": "south-africa", + "name": "South Africa", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/south-africa-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "south-africa", + "source_size_bytes": 417135832, + "west": 15.99606, + "south": -47.58493, + "east": 39.24259, + "north": -22.11736, + "asset_name": "occumed-south-africa.pmtiles", + "metadata_name": "occumed-south-africa.json" + }, + { + "id": "south-africa-and-lesotho", + "slug": "south-africa-and-lesotho", + "name": "South Africa (includes Lesotho)", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/south-africa-and-lesotho-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "south-africa-and-lesotho", + "source_size_bytes": 541587846, + "west": 15.99606, + "south": -47.58493, + "east": 39.24259, + "north": -22.11736, + "asset_name": "occumed-south-africa-and-lesotho.pmtiles", + "metadata_name": "occumed-south-africa-and-lesotho.json" + }, + { + "id": "south-australia", + "slug": "south-australia", + "name": "South Australia", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/south-australia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "south-australia", + "source_size_bytes": 66822603, + "west": 128.9993, + "south": -39.83156, + "east": 141.0073, + "north": -25.99303, + "asset_name": "occumed-south-australia.pmtiles", + "metadata_name": "occumed-south-australia.json" + }, + { + "id": "south-fed-district", + "slug": "south-fed-district", + "name": "South Federal District", + "continent": "south-fed-district", + "pbf_url": "https://download.geofabrik.de/russia/south-fed-district-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "south-fed-district", + "source_size_bytes": 310826419, + "west": 36.52315, + "south": 43.18958, + "east": 49.93666, + "north": 51.2554, + "asset_name": "occumed-south-fed-district.pmtiles", + "metadata_name": "occumed-south-fed-district.json" + }, + { + "id": "south-korea", + "slug": "south-korea", + "name": "South Korea", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/south-korea-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "south-korea", + "source_size_bytes": 284036989, + "west": 124.3188, + "south": 32.36076, + "east": 132.3386, + "north": 38.64966, + "asset_name": "occumed-south-korea.pmtiles", + "metadata_name": "occumed-south-korea.json" + }, + { + "id": "south-sudan", + "slug": "south-sudan", + "name": "South Sudan", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/south-sudan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "south-sudan", + "source_size_bytes": 138105431, + "west": 23.42491, + "south": 3.461547, + "east": 35.96298, + "north": 12.23937, + "asset_name": "occumed-south-sudan.pmtiles", + "metadata_name": "occumed-south-sudan.json" + }, + { + "id": "south-yorkshire", + "slug": "south-yorkshire", + "name": "South Yorkshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/south-yorkshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "south-yorkshire", + "source_size_bytes": 29796720, + "west": -1.825872, + "south": 53.29889, + "east": -0.852889, + "north": 53.66326, + "asset_name": "occumed-south-yorkshire.pmtiles", + "metadata_name": "occumed-south-yorkshire.json" + }, + { + "id": "southcoast-admreg", + "slug": "southcoast-admreg", + "name": "South Coast Administrative Region", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/british-columbia/southcoast-admreg-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "southcoast-admreg", + "source_size_bytes": 113975248, + "west": -124.2851, + "south": 48.98059, + "east": -120.8077, + "north": 51.22667, + "asset_name": "occumed-southcoast-admreg.pmtiles", + "metadata_name": "occumed-southcoast-admreg.json" + }, + { + "id": "southern-zone", + "slug": "southern-zone", + "name": "Southern Zone", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/india/southern-zone-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "southern-zone", + "source_size_bytes": 557081500, + "west": 70.20789, + "south": 5.943921, + "east": 95.51383, + "north": 19.92268, + "asset_name": "occumed-southern-zone.pmtiles", + "metadata_name": "occumed-southern-zone.json" + }, + { + "id": "sri-lanka", + "slug": "sri-lanka", + "name": "Sri Lanka", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/sri-lanka-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "sri-lanka", + "source_size_bytes": 144422406, + "west": 79.16416, + "south": 5.621275, + "east": 82.64612, + "north": 10.07153, + "asset_name": "occumed-sri-lanka.pmtiles", + "metadata_name": "occumed-sri-lanka.json" + }, + { + "id": "staffordshire", + "slug": "staffordshire", + "name": "Staffordshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/staffordshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "staffordshire", + "source_size_bytes": 30466517, + "west": -2.47182, + "south": 52.42202, + "east": -1.58449, + "north": 53.22743, + "asset_name": "occumed-staffordshire.pmtiles", + "metadata_name": "occumed-staffordshire.json" + }, + { + "id": "stredocesky", + "slug": "stredocesky", + "name": "Středočeský kraj (with Praha)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/czech-republic/stredocesky-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "stredocesky", + "source_size_bytes": 179937601, + "west": 13.39579, + "south": 49.50088, + "east": 15.53613, + "north": 50.61926, + "asset_name": "occumed-stredocesky.pmtiles", + "metadata_name": "occumed-stredocesky.json" + }, + { + "id": "stuttgart-regbez", + "slug": "stuttgart-regbez", + "name": "Regierungsbezirk Stuttgart", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/baden-wuerttemberg/stuttgart-regbez-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "stuttgart-regbez", + "source_size_bytes": 210239844, + "west": 8.741474, + "south": 48.49386, + "east": 10.51495, + "north": 49.79456, + "asset_name": "occumed-stuttgart-regbez.pmtiles", + "metadata_name": "occumed-stuttgart-regbez.json" + }, + { + "id": "sud", + "slug": "sud", + "name": "Sud", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/italy/sud-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "sud", + "source_size_bytes": 411420954, + "west": 13.00131, + "south": 37.80152, + "east": 19.12499, + "north": 42.91363, + "asset_name": "occumed-sud.pmtiles", + "metadata_name": "occumed-sud.json" + }, + { + "id": "sudan", + "slug": "sudan", + "name": "Sudan", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/sudan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "sudan", + "source_size_bytes": 202712643, + "west": 21.781, + "south": 8.653747, + "east": 39.62781, + "north": 22.34706, + "asset_name": "occumed-sudan.pmtiles", + "metadata_name": "occumed-sudan.json" + }, + { + "id": "sudeste--r1-c1", + "slug": "sudeste--r1-c1", + "name": "Sudeste 1.1", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/brazil/sudeste-latest.osm.pbf", + "extract_bbox": "-53.1189,-25.4993,-44.809917,-19.861875", + "source_region_id": "sudeste", + "source_size_bytes": 853018598, + "west": -53.1189, + "south": -25.4993, + "east": -44.809917, + "north": -19.861875, + "asset_name": "occumed-sudeste--r1-c1.pmtiles", + "metadata_name": "occumed-sudeste--r1-c1.json" + }, + { + "id": "sudeste--r1-c2", + "slug": "sudeste--r1-c2", + "name": "Sudeste 1.2", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/brazil/sudeste-latest.osm.pbf", + "extract_bbox": "-44.809917,-25.4993,-36.500933,-19.861875", + "source_region_id": "sudeste", + "source_size_bytes": 853018598, + "west": -44.809917, + "south": -25.4993, + "east": -36.500933, + "north": -19.861875, + "asset_name": "occumed-sudeste--r1-c2.pmtiles", + "metadata_name": "occumed-sudeste--r1-c2.json" + }, + { + "id": "sudeste--r1-c3", + "slug": "sudeste--r1-c3", + "name": "Sudeste 1.3", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/brazil/sudeste-latest.osm.pbf", + "extract_bbox": "-36.500933,-25.4993,-28.19195,-19.861875", + "source_region_id": "sudeste", + "source_size_bytes": 853018598, + "west": -36.500933, + "south": -25.4993, + "east": -28.19195, + "north": -19.861875, + "asset_name": "occumed-sudeste--r1-c3.pmtiles", + "metadata_name": "occumed-sudeste--r1-c3.json" + }, + { + "id": "sudeste--r2-c1", + "slug": "sudeste--r2-c1", + "name": "Sudeste 2.1", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/brazil/sudeste-latest.osm.pbf", + "extract_bbox": "-53.1189,-19.861875,-44.809917,-14.22445", + "source_region_id": "sudeste", + "source_size_bytes": 853018598, + "west": -53.1189, + "south": -19.861875, + "east": -44.809917, + "north": -14.22445, + "asset_name": "occumed-sudeste--r2-c1.pmtiles", + "metadata_name": "occumed-sudeste--r2-c1.json" + }, + { + "id": "sudeste--r2-c2", + "slug": "sudeste--r2-c2", + "name": "Sudeste 2.2", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/brazil/sudeste-latest.osm.pbf", + "extract_bbox": "-44.809917,-19.861875,-36.500933,-14.22445", + "source_region_id": "sudeste", + "source_size_bytes": 853018598, + "west": -44.809917, + "south": -19.861875, + "east": -36.500933, + "north": -14.22445, + "asset_name": "occumed-sudeste--r2-c2.pmtiles", + "metadata_name": "occumed-sudeste--r2-c2.json" + }, + { + "id": "sudeste--r2-c3", + "slug": "sudeste--r2-c3", + "name": "Sudeste 2.3", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/brazil/sudeste-latest.osm.pbf", + "extract_bbox": "-36.500933,-19.861875,-28.19195,-14.22445", + "source_region_id": "sudeste", + "source_size_bytes": 853018598, + "west": -36.500933, + "south": -19.861875, + "east": -28.19195, + "north": -14.22445, + "asset_name": "occumed-sudeste--r2-c3.pmtiles", + "metadata_name": "occumed-sudeste--r2-c3.json" + }, + { + "id": "suffolk", + "slug": "suffolk", + "name": "Suffolk", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/suffolk-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "suffolk", + "source_size_bytes": 33082974, + "west": 0.339563, + "south": 51.93285, + "east": 1.763681, + "north": 52.55013, + "asset_name": "occumed-suffolk.pmtiles", + "metadata_name": "occumed-suffolk.json" + }, + { + "id": "sul", + "slug": "sul", + "name": "Sul", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/brazil/sul-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "sul", + "source_size_bytes": 420702114, + "west": -57.67273, + "south": -34.86424, + "east": -44.2463, + "north": -22.51383, + "asset_name": "occumed-sul.pmtiles", + "metadata_name": "occumed-sul.json" + }, + { + "id": "sulawesi", + "slug": "sulawesi", + "name": "Sulawesi", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/indonesia/sulawesi-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "sulawesi", + "source_size_bytes": 157830055, + "west": 116.2518, + "south": -8.02115, + "east": 127.9523, + "north": 5.948258, + "asset_name": "occumed-sulawesi.pmtiles", + "metadata_name": "occumed-sulawesi.json" + }, + { + "id": "sumatra", + "slug": "sumatra", + "name": "Sumatra", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/indonesia/sumatra-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "sumatra", + "source_size_bytes": 283381792, + "west": 92.76481, + "south": -7.169929, + "east": 109.7524, + "north": 6.99933, + "asset_name": "occumed-sumatra.pmtiles", + "metadata_name": "occumed-sumatra.json" + }, + { + "id": "suriname", + "slug": "suriname", + "name": "Suriname", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/suriname-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "suriname", + "source_size_bytes": 21260903, + "west": -58.08461, + "south": 1.816773, + "east": -53.32819, + "north": 7.761698, + "asset_name": "occumed-suriname.pmtiles", + "metadata_name": "occumed-suriname.json" + }, + { + "id": "surrey", + "slug": "surrey", + "name": "Surrey", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/surrey-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "surrey", + "source_size_bytes": 42907032, + "west": -0.850593, + "south": 51.0715, + "east": 0.059897, + "north": 51.47288, + "asset_name": "occumed-surrey.pmtiles", + "metadata_name": "occumed-surrey.json" + }, + { + "id": "svalbard-janmayen", + "slug": "svalbard-janmayen", + "name": "Svalbard and Jan Mayen", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/norway/svalbard-janmayen-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "svalbard-janmayen", + "source_size_bytes": 2721428, + "west": -10.49539, + "south": 70.26127, + "east": 35.34074, + "north": 81.05183, + "asset_name": "occumed-svalbard-janmayen.pmtiles", + "metadata_name": "occumed-svalbard-janmayen.json" + }, + { + "id": "swaziland", + "slug": "swaziland", + "name": "Swaziland", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/swaziland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "swaziland", + "source_size_bytes": 30568840, + "west": 30.78575, + "south": -27.31826, + "east": 32.13698, + "north": -25.71781, + "asset_name": "occumed-swaziland.pmtiles", + "metadata_name": "occumed-swaziland.json" + }, + { + "id": "sweden", + "slug": "sweden", + "name": "Sweden", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/sweden-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "sweden", + "source_size_bytes": 811363120, + "west": 10.54138, + "south": 55.02652, + "east": 24.22472, + "north": 69.06643, + "asset_name": "occumed-sweden.pmtiles", + "metadata_name": "occumed-sweden.json" + }, + { + "id": "swietokrzyskie", + "slug": "swietokrzyskie", + "name": "Województwo świętokrzyskie
(Świętokrzyskie Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/swietokrzyskie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "swietokrzyskie", + "source_size_bytes": 86106881, + "west": 19.69901, + "south": 50.17974, + "east": 21.8758, + "north": 51.34824, + "asset_name": "occumed-swietokrzyskie.pmtiles", + "metadata_name": "occumed-swietokrzyskie.json" + }, + { + "id": "switzerland", + "slug": "switzerland", + "name": "Switzerland", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/switzerland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "switzerland", + "source_size_bytes": 540786588, + "west": 5.954418, + "south": 45.81642, + "east": 10.49584, + "north": 47.81126, + "asset_name": "occumed-switzerland.pmtiles", + "metadata_name": "occumed-switzerland.json" + }, + { + "id": "syria", + "slug": "syria", + "name": "Syria", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/syria-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "syria", + "source_size_bytes": 81259277, + "west": 35.28548, + "south": 32.3066, + "east": 42.38383, + "north": 37.32239, + "asset_name": "occumed-syria.pmtiles", + "metadata_name": "occumed-syria.json" + }, + { + "id": "taiwan", + "slug": "taiwan", + "name": "Taiwan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/taiwan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "taiwan", + "source_size_bytes": 325383339, + "west": 118.1036, + "south": 20.72799, + "east": 122.9312, + "north": 26.60305, + "asset_name": "occumed-taiwan.pmtiles", + "metadata_name": "occumed-taiwan.json" + }, + { + "id": "tajikistan", + "slug": "tajikistan", + "name": "Tajikistan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/tajikistan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "tajikistan", + "source_size_bytes": 47980031, + "west": 67.3201, + "south": 36.66374, + "east": 75.16571, + "north": 41.05502, + "asset_name": "occumed-tajikistan.pmtiles", + "metadata_name": "occumed-tajikistan.json" + }, + { + "id": "tanzania", + "slug": "tanzania", + "name": "Tanzania", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/tanzania-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "tanzania", + "source_size_bytes": 705249134, + "west": 29.24395, + "south": -11.77595, + "east": 40.69487, + "north": -0.974988, + "asset_name": "occumed-tanzania.pmtiles", + "metadata_name": "occumed-tanzania.json" + }, + { + "id": "tasmania", + "slug": "tasmania", + "name": "Tasmania", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/tasmania-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "tasmania", + "source_size_bytes": 53294383, + "west": 143.4704, + "south": -56.86236, + "east": 161.6707, + "north": -39.19687, + "asset_name": "occumed-tasmania.pmtiles", + "metadata_name": "occumed-tasmania.json" + }, + { + "id": "thailand", + "slug": "thailand", + "name": "Thailand", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/thailand-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "thailand", + "source_size_bytes": 325606018, + "west": 97.13562, + "south": 5.597877, + "east": 105.6392, + "north": 20.46875, + "asset_name": "occumed-thailand.pmtiles", + "metadata_name": "occumed-thailand.json" + }, + { + "id": "thueringen", + "slug": "thueringen", + "name": "Thüringen", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/thueringen-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "thueringen", + "source_size_bytes": 158829798, + "west": 9.863176, + "south": 50.19971, + "east": 12.66106, + "north": 51.65237, + "asset_name": "occumed-thueringen.pmtiles", + "metadata_name": "occumed-thueringen.json" + }, + { + "id": "tianjin", + "slug": "tianjin", + "name": "Tianjin", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/tianjin-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "tianjin", + "source_size_bytes": 14762442, + "west": 116.6944, + "south": 38.55327, + "east": 118.063, + "north": 40.25307, + "asset_name": "occumed-tianjin.pmtiles", + "metadata_name": "occumed-tianjin.json" + }, + { + "id": "tibet", + "slug": "tibet", + "name": "Tibet", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/tibet-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "tibet", + "source_size_bytes": 48479706, + "west": 78.29403, + "south": 27.19968, + "east": 99.12552, + "north": 36.53, + "asset_name": "occumed-tibet.pmtiles", + "metadata_name": "occumed-tibet.json" + }, + { + "id": "togo", + "slug": "togo", + "name": "Togo", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/togo-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "togo", + "source_size_bytes": 62214049, + "west": -0.148338, + "south": 5.892541, + "east": 1.810942, + "north": 11.14395, + "asset_name": "occumed-togo.pmtiles", + "metadata_name": "occumed-togo.json" + }, + { + "id": "tohoku", + "slug": "tohoku", + "name": "Tōhoku region", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/japan/tohoku-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "tohoku", + "source_size_bytes": 305380732, + "west": 138.9325, + "south": 36.52861, + "east": 142.8782, + "north": 41.64179, + "asset_name": "occumed-tohoku.pmtiles", + "metadata_name": "occumed-tohoku.json" + }, + { + "id": "tokelau", + "slug": "tokelau", + "name": "Tokelau", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/tokelau-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "tokelau", + "source_size_bytes": 144472, + "west": -176.8579, + "south": -11.08137, + "east": -167.4097, + "north": -6.664586, + "asset_name": "occumed-tokelau.pmtiles", + "metadata_name": "occumed-tokelau.json" + }, + { + "id": "tonga", + "slug": "tonga", + "name": "Tonga", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/tonga-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "tonga", + "source_size_bytes": 3716543, + "west": -178.6487, + "south": -25.68413, + "east": -171.3053, + "north": -14.15464, + "asset_name": "occumed-tonga.pmtiles", + "metadata_name": "occumed-tonga.json" + }, + { + "id": "trondelag", + "slug": "trondelag", + "name": "Trøndelag
(Central Norway)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/norway/trondelag-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "trondelag", + "source_size_bytes": 182830123, + "west": 5.790873, + "south": 62.25533, + "east": 14.33543, + "north": 65.94955, + "asset_name": "occumed-trondelag.pmtiles", + "metadata_name": "occumed-trondelag.json" + }, + { + "id": "tuebingen-regbez", + "slug": "tuebingen-regbez", + "name": "Regierungsbezirk Tübingen", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/baden-wuerttemberg/tuebingen-regbez-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "tuebingen-regbez", + "source_size_bytes": 124954116, + "west": 8.645593, + "south": 47.53246, + "east": 10.27309, + "north": 48.6348, + "asset_name": "occumed-tuebingen-regbez.pmtiles", + "metadata_name": "occumed-tuebingen-regbez.json" + }, + { + "id": "tunisia", + "slug": "tunisia", + "name": "Tunisia", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/tunisia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "tunisia", + "source_size_bytes": 83889516, + "west": 7.513961, + "south": 30.20864, + "east": 12.068, + "north": 37.77474, + "asset_name": "occumed-tunisia.pmtiles", + "metadata_name": "occumed-tunisia.json" + }, + { + "id": "turkey", + "slug": "turkey", + "name": "Turkey", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/turkey-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "turkey", + "source_size_bytes": 639630267, + "west": 25.52398, + "south": 35.717, + "east": 44.85992, + "north": 43.07481, + "asset_name": "occumed-turkey.pmtiles", + "metadata_name": "occumed-turkey.json" + }, + { + "id": "turkmenistan", + "slug": "turkmenistan", + "name": "Turkmenistan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/turkmenistan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "turkmenistan", + "source_size_bytes": 24599968, + "west": 51.83271, + "south": 35.12355, + "east": 66.72272, + "north": 42.81253, + "asset_name": "occumed-turkmenistan.pmtiles", + "metadata_name": "occumed-turkmenistan.json" + }, + { + "id": "tuvalu", + "slug": "tuvalu", + "name": "Tuvalu", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/tuvalu-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "tuvalu", + "source_size_bytes": 357862, + "west": 172.9953, + "south": -13.24039, + "east": -176.757, + "north": -4.061646, + "asset_name": "occumed-tuvalu.pmtiles", + "metadata_name": "occumed-tuvalu.json" + }, + { + "id": "tyne-and-wear", + "slug": "tyne-and-wear", + "name": "Tyne and Wear", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/tyne-and-wear-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "tyne-and-wear", + "source_size_bytes": 19304125, + "west": -1.853879, + "south": 54.79775, + "east": -1.262592, + "north": 55.10949, + "asset_name": "occumed-tyne-and-wear.pmtiles", + "metadata_name": "occumed-tyne-and-wear.json" + }, + { + "id": "uganda", + "slug": "uganda", + "name": "Uganda", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/uganda-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "uganda", + "source_size_bytes": 370565812, + "west": 29.57056, + "south": -1.487315, + "east": 35.01031, + "north": 4.250552, + "asset_name": "occumed-uganda.pmtiles", + "metadata_name": "occumed-uganda.json" + }, + { + "id": "ukraine--r1-c1", + "slug": "ukraine--r1-c1", + "name": "Ukraine (with Crimea) 1.1", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", + "extract_bbox": "22.13264,44.00862,28.167797,48.19756", + "source_region_id": "ukraine", + "source_size_bytes": 870676344, + "west": 22.13264, + "south": 44.00862, + "east": 28.167797, + "north": 48.19756, + "asset_name": "occumed-ukraine--r1-c1.pmtiles", + "metadata_name": "occumed-ukraine--r1-c1.json" + }, + { + "id": "ukraine--r1-c2", + "slug": "ukraine--r1-c2", + "name": "Ukraine (with Crimea) 1.2", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", + "extract_bbox": "28.167797,44.00862,34.202953,48.19756", + "source_region_id": "ukraine", + "source_size_bytes": 870676344, + "west": 28.167797, + "south": 44.00862, + "east": 34.202953, + "north": 48.19756, + "asset_name": "occumed-ukraine--r1-c2.pmtiles", + "metadata_name": "occumed-ukraine--r1-c2.json" + }, + { + "id": "ukraine--r1-c3", + "slug": "ukraine--r1-c3", + "name": "Ukraine (with Crimea) 1.3", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", + "extract_bbox": "34.202953,44.00862,40.23811,48.19756", + "source_region_id": "ukraine", + "source_size_bytes": 870676344, + "west": 34.202953, + "south": 44.00862, + "east": 40.23811, + "north": 48.19756, + "asset_name": "occumed-ukraine--r1-c3.pmtiles", + "metadata_name": "occumed-ukraine--r1-c3.json" + }, + { + "id": "ukraine--r2-c1", + "slug": "ukraine--r2-c1", + "name": "Ukraine (with Crimea) 2.1", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", + "extract_bbox": "22.13264,48.19756,28.167797,52.3865", + "source_region_id": "ukraine", + "source_size_bytes": 870676344, + "west": 22.13264, + "south": 48.19756, + "east": 28.167797, + "north": 52.3865, + "asset_name": "occumed-ukraine--r2-c1.pmtiles", + "metadata_name": "occumed-ukraine--r2-c1.json" + }, + { + "id": "ukraine--r2-c2", + "slug": "ukraine--r2-c2", + "name": "Ukraine (with Crimea) 2.2", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", + "extract_bbox": "28.167797,48.19756,34.202953,52.3865", + "source_region_id": "ukraine", + "source_size_bytes": 870676344, + "west": 28.167797, + "south": 48.19756, + "east": 34.202953, + "north": 52.3865, + "asset_name": "occumed-ukraine--r2-c2.pmtiles", + "metadata_name": "occumed-ukraine--r2-c2.json" + }, + { + "id": "ukraine--r2-c3", + "slug": "ukraine--r2-c3", + "name": "Ukraine (with Crimea) 2.3", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", + "extract_bbox": "34.202953,48.19756,40.23811,52.3865", + "source_region_id": "ukraine", + "source_size_bytes": 870676344, + "west": 34.202953, + "south": 48.19756, + "east": 40.23811, + "north": 52.3865, + "asset_name": "occumed-ukraine--r2-c3.pmtiles", + "metadata_name": "occumed-ukraine--r2-c3.json" + }, + { + "id": "unterfranken", + "slug": "unterfranken", + "name": "Unterfranken", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/germany/bayern/unterfranken-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "unterfranken", + "source_size_bytes": 103919571, + "west": 8.975186, + "south": 49.47911, + "east": 10.88719, + "north": 50.56623, + "asset_name": "occumed-unterfranken.pmtiles", + "metadata_name": "occumed-unterfranken.json" + }, + { + "id": "ural-fed-district", + "slug": "ural-fed-district", + "name": "Ural Federal District", + "continent": "ural-fed-district", + "pbf_url": "https://download.geofabrik.de/russia/ural-fed-district-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "ural-fed-district", + "source_size_bytes": 392929018, + "west": 57.04259, + "south": 51.8264, + "east": 86.0952, + "north": 75.011, + "asset_name": "occumed-ural-fed-district.pmtiles", + "metadata_name": "occumed-ural-fed-district.json" + }, + { + "id": "uruguay", + "slug": "uruguay", + "name": "Uruguay", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/uruguay-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "uruguay", + "source_size_bytes": 55985845, + "west": -58.52589, + "south": -36.2487, + "east": -52.7723, + "north": -30.07355, + "asset_name": "occumed-uruguay.pmtiles", + "metadata_name": "occumed-uruguay.json" + }, + { + "id": "us--r1-c1-s1", + "slug": "us--r1-c1-s1", + "name": "United States of America 1.1-s1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "170.9033,15.92097,180,30.18784", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": 170.9033, + "south": 15.92097, + "east": 180, + "north": 30.18784, + "asset_name": "occumed-us--r1-c1-s1.pmtiles", + "metadata_name": "occumed-us--r1-c1-s1.json" + }, + { + "id": "us--r1-c1-s2", + "slug": "us--r1-c1-s2", + "name": "United States of America 1.1-s2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-180,15.92097,-171.636566,30.18784", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -180, + "south": 15.92097, + "east": -171.636566, + "north": 30.18784, + "asset_name": "occumed-us--r1-c1-s2.pmtiles", + "metadata_name": "occumed-us--r1-c1-s2.json" + }, + { + "id": "us--r1-c2", + "slug": "us--r1-c2", + "name": "United States of America 1.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-171.636566,15.92097,-154.176431,30.18784", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -171.636566, + "south": 15.92097, + "east": -154.176431, + "north": 30.18784, + "asset_name": "occumed-us--r1-c2.pmtiles", + "metadata_name": "occumed-us--r1-c2.json" + }, + { + "id": "us--r1-c3", + "slug": "us--r1-c3", + "name": "United States of America 1.3", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-154.176431,15.92097,-136.716297,30.18784", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -154.176431, + "south": 15.92097, + "east": -136.716297, + "north": 30.18784, + "asset_name": "occumed-us--r1-c3.pmtiles", + "metadata_name": "occumed-us--r1-c3.json" + }, + { + "id": "us--r1-c4", + "slug": "us--r1-c4", + "name": "United States of America 1.4", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-136.716297,15.92097,-119.256163,30.18784", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -136.716297, + "south": 15.92097, + "east": -119.256163, + "north": 30.18784, + "asset_name": "occumed-us--r1-c4.pmtiles", + "metadata_name": "occumed-us--r1-c4.json" + }, + { + "id": "us--r1-c5", + "slug": "us--r1-c5", + "name": "United States of America 1.5", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-119.256163,15.92097,-101.796029,30.18784", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -119.256163, + "south": 15.92097, + "east": -101.796029, + "north": 30.18784, + "asset_name": "occumed-us--r1-c5.pmtiles", + "metadata_name": "occumed-us--r1-c5.json" + }, + { + "id": "us--r1-c6", + "slug": "us--r1-c6", + "name": "United States of America 1.6", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-101.796029,15.92097,-84.335894,30.18784", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -101.796029, + "south": 15.92097, + "east": -84.335894, + "north": 30.18784, + "asset_name": "occumed-us--r1-c6.pmtiles", + "metadata_name": "occumed-us--r1-c6.json" + }, + { + "id": "us--r1-c7", + "slug": "us--r1-c7", + "name": "United States of America 1.7", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-84.335894,15.92097,-66.87576,30.18784", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -84.335894, + "south": 15.92097, + "east": -66.87576, + "north": 30.18784, + "asset_name": "occumed-us--r1-c7.pmtiles", + "metadata_name": "occumed-us--r1-c7.json" + }, + { + "id": "us--r2-c1-s1", + "slug": "us--r2-c1-s1", + "name": "United States of America 2.1-s1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "170.9033,30.18784,180,44.45471", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": 170.9033, + "south": 30.18784, + "east": 180, + "north": 44.45471, + "asset_name": "occumed-us--r2-c1-s1.pmtiles", + "metadata_name": "occumed-us--r2-c1-s1.json" + }, + { + "id": "us--r2-c1-s2", + "slug": "us--r2-c1-s2", + "name": "United States of America 2.1-s2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-180,30.18784,-171.636566,44.45471", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -180, + "south": 30.18784, + "east": -171.636566, + "north": 44.45471, + "asset_name": "occumed-us--r2-c1-s2.pmtiles", + "metadata_name": "occumed-us--r2-c1-s2.json" + }, + { + "id": "us--r2-c2", + "slug": "us--r2-c2", + "name": "United States of America 2.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-171.636566,30.18784,-154.176431,44.45471", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -171.636566, + "south": 30.18784, + "east": -154.176431, + "north": 44.45471, + "asset_name": "occumed-us--r2-c2.pmtiles", + "metadata_name": "occumed-us--r2-c2.json" + }, + { + "id": "us--r2-c3", + "slug": "us--r2-c3", + "name": "United States of America 2.3", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-154.176431,30.18784,-136.716297,44.45471", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -154.176431, + "south": 30.18784, + "east": -136.716297, + "north": 44.45471, + "asset_name": "occumed-us--r2-c3.pmtiles", + "metadata_name": "occumed-us--r2-c3.json" + }, + { + "id": "us--r2-c4", + "slug": "us--r2-c4", + "name": "United States of America 2.4", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-136.716297,30.18784,-119.256163,44.45471", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -136.716297, + "south": 30.18784, + "east": -119.256163, + "north": 44.45471, + "asset_name": "occumed-us--r2-c4.pmtiles", + "metadata_name": "occumed-us--r2-c4.json" + }, + { + "id": "us--r2-c5", + "slug": "us--r2-c5", + "name": "United States of America 2.5", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-119.256163,30.18784,-101.796029,44.45471", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -119.256163, + "south": 30.18784, + "east": -101.796029, + "north": 44.45471, + "asset_name": "occumed-us--r2-c5.pmtiles", + "metadata_name": "occumed-us--r2-c5.json" + }, + { + "id": "us--r2-c6", + "slug": "us--r2-c6", + "name": "United States of America 2.6", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-101.796029,30.18784,-84.335894,44.45471", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -101.796029, + "south": 30.18784, + "east": -84.335894, + "north": 44.45471, + "asset_name": "occumed-us--r2-c6.pmtiles", + "metadata_name": "occumed-us--r2-c6.json" + }, + { + "id": "us--r2-c7", + "slug": "us--r2-c7", + "name": "United States of America 2.7", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-84.335894,30.18784,-66.87576,44.45471", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -84.335894, + "south": 30.18784, + "east": -66.87576, + "north": 44.45471, + "asset_name": "occumed-us--r2-c7.pmtiles", + "metadata_name": "occumed-us--r2-c7.json" + }, + { + "id": "us--r3-c1-s1", + "slug": "us--r3-c1-s1", + "name": "United States of America 3.1-s1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "170.9033,44.45471,180,58.72158", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": 170.9033, + "south": 44.45471, + "east": 180, + "north": 58.72158, + "asset_name": "occumed-us--r3-c1-s1.pmtiles", + "metadata_name": "occumed-us--r3-c1-s1.json" + }, + { + "id": "us--r3-c1-s2", + "slug": "us--r3-c1-s2", + "name": "United States of America 3.1-s2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-180,44.45471,-171.636566,58.72158", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -180, + "south": 44.45471, + "east": -171.636566, + "north": 58.72158, + "asset_name": "occumed-us--r3-c1-s2.pmtiles", + "metadata_name": "occumed-us--r3-c1-s2.json" + }, + { + "id": "us--r3-c2", + "slug": "us--r3-c2", + "name": "United States of America 3.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-171.636566,44.45471,-154.176431,58.72158", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -171.636566, + "south": 44.45471, + "east": -154.176431, + "north": 58.72158, + "asset_name": "occumed-us--r3-c2.pmtiles", + "metadata_name": "occumed-us--r3-c2.json" + }, + { + "id": "us--r3-c3", + "slug": "us--r3-c3", + "name": "United States of America 3.3", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-154.176431,44.45471,-136.716297,58.72158", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -154.176431, + "south": 44.45471, + "east": -136.716297, + "north": 58.72158, + "asset_name": "occumed-us--r3-c3.pmtiles", + "metadata_name": "occumed-us--r3-c3.json" + }, + { + "id": "us--r3-c4", + "slug": "us--r3-c4", + "name": "United States of America 3.4", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-136.716297,44.45471,-119.256163,58.72158", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -136.716297, + "south": 44.45471, + "east": -119.256163, + "north": 58.72158, + "asset_name": "occumed-us--r3-c4.pmtiles", + "metadata_name": "occumed-us--r3-c4.json" + }, + { + "id": "us--r3-c5", + "slug": "us--r3-c5", + "name": "United States of America 3.5", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-119.256163,44.45471,-101.796029,58.72158", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -119.256163, + "south": 44.45471, + "east": -101.796029, + "north": 58.72158, + "asset_name": "occumed-us--r3-c5.pmtiles", + "metadata_name": "occumed-us--r3-c5.json" + }, + { + "id": "us--r3-c6", + "slug": "us--r3-c6", + "name": "United States of America 3.6", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-101.796029,44.45471,-84.335894,58.72158", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -101.796029, + "south": 44.45471, + "east": -84.335894, + "north": 58.72158, + "asset_name": "occumed-us--r3-c6.pmtiles", + "metadata_name": "occumed-us--r3-c6.json" + }, + { + "id": "us--r3-c7", + "slug": "us--r3-c7", + "name": "United States of America 3.7", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-84.335894,44.45471,-66.87576,58.72158", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -84.335894, + "south": 44.45471, + "east": -66.87576, + "north": 58.72158, + "asset_name": "occumed-us--r3-c7.pmtiles", + "metadata_name": "occumed-us--r3-c7.json" + }, + { + "id": "us--r4-c1-s1", + "slug": "us--r4-c1-s1", + "name": "United States of America 4.1-s1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "170.9033,58.72158,180,72.98845", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": 170.9033, + "south": 58.72158, + "east": 180, + "north": 72.98845, + "asset_name": "occumed-us--r4-c1-s1.pmtiles", + "metadata_name": "occumed-us--r4-c1-s1.json" + }, + { + "id": "us--r4-c1-s2", + "slug": "us--r4-c1-s2", + "name": "United States of America 4.1-s2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-180,58.72158,-171.636566,72.98845", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -180, + "south": 58.72158, + "east": -171.636566, + "north": 72.98845, + "asset_name": "occumed-us--r4-c1-s2.pmtiles", + "metadata_name": "occumed-us--r4-c1-s2.json" + }, + { + "id": "us--r4-c2", + "slug": "us--r4-c2", + "name": "United States of America 4.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-171.636566,58.72158,-154.176431,72.98845", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -171.636566, + "south": 58.72158, + "east": -154.176431, + "north": 72.98845, + "asset_name": "occumed-us--r4-c2.pmtiles", + "metadata_name": "occumed-us--r4-c2.json" + }, + { + "id": "us--r4-c3", + "slug": "us--r4-c3", + "name": "United States of America 4.3", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-154.176431,58.72158,-136.716297,72.98845", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -154.176431, + "south": 58.72158, + "east": -136.716297, + "north": 72.98845, + "asset_name": "occumed-us--r4-c3.pmtiles", + "metadata_name": "occumed-us--r4-c3.json" + }, + { + "id": "us--r4-c4", + "slug": "us--r4-c4", + "name": "United States of America 4.4", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-136.716297,58.72158,-119.256163,72.98845", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -136.716297, + "south": 58.72158, + "east": -119.256163, + "north": 72.98845, + "asset_name": "occumed-us--r4-c4.pmtiles", + "metadata_name": "occumed-us--r4-c4.json" + }, + { + "id": "us--r4-c5", + "slug": "us--r4-c5", + "name": "United States of America 4.5", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-119.256163,58.72158,-101.796029,72.98845", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -119.256163, + "south": 58.72158, + "east": -101.796029, + "north": 72.98845, + "asset_name": "occumed-us--r4-c5.pmtiles", + "metadata_name": "occumed-us--r4-c5.json" + }, + { + "id": "us--r4-c6", + "slug": "us--r4-c6", + "name": "United States of America 4.6", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-101.796029,58.72158,-84.335894,72.98845", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -101.796029, + "south": 58.72158, + "east": -84.335894, + "north": 72.98845, + "asset_name": "occumed-us--r4-c6.pmtiles", + "metadata_name": "occumed-us--r4-c6.json" + }, + { + "id": "us--r4-c7", + "slug": "us--r4-c7", + "name": "United States of America 4.7", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", + "extract_bbox": "-84.335894,58.72158,-66.87576,72.98845", + "source_region_id": "us", + "source_size_bytes": 12048136856, + "west": -84.335894, + "south": 58.72158, + "east": -66.87576, + "north": 72.98845, + "asset_name": "occumed-us--r4-c7.pmtiles", + "metadata_name": "occumed-us--r4-c7.json" + }, + { + "id": "us-midwest--r1-c1", + "slug": "us-midwest--r1-c1", + "name": "US Midwest 1.1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", + "extract_bbox": "-104.0588,35.98507,-98.170403,40.459093", + "source_region_id": "us-midwest", + "source_size_bytes": 2474364429, + "west": -104.0588, + "south": 35.98507, + "east": -98.170403, + "north": 40.459093, + "asset_name": "occumed-us-midwest--r1-c1.pmtiles", + "metadata_name": "occumed-us-midwest--r1-c1.json" + }, + { + "id": "us-midwest--r1-c2", + "slug": "us-midwest--r1-c2", + "name": "US Midwest 1.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", + "extract_bbox": "-98.170403,35.98507,-92.282005,40.459093", + "source_region_id": "us-midwest", + "source_size_bytes": 2474364429, + "west": -98.170403, + "south": 35.98507, + "east": -92.282005, + "north": 40.459093, + "asset_name": "occumed-us-midwest--r1-c2.pmtiles", + "metadata_name": "occumed-us-midwest--r1-c2.json" + }, + { + "id": "us-midwest--r1-c3", + "slug": "us-midwest--r1-c3", + "name": "US Midwest 1.3", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", + "extract_bbox": "-92.282005,35.98507,-86.393608,40.459093", + "source_region_id": "us-midwest", + "source_size_bytes": 2474364429, + "west": -92.282005, + "south": 35.98507, + "east": -86.393608, + "north": 40.459093, + "asset_name": "occumed-us-midwest--r1-c3.pmtiles", + "metadata_name": "occumed-us-midwest--r1-c3.json" + }, + { + "id": "us-midwest--r1-c4", + "slug": "us-midwest--r1-c4", + "name": "US Midwest 1.4", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", + "extract_bbox": "-86.393608,35.98507,-80.50521,40.459093", + "source_region_id": "us-midwest", + "source_size_bytes": 2474364429, + "west": -86.393608, + "south": 35.98507, + "east": -80.50521, + "north": 40.459093, + "asset_name": "occumed-us-midwest--r1-c4.pmtiles", + "metadata_name": "occumed-us-midwest--r1-c4.json" + }, + { + "id": "us-midwest--r2-c1", + "slug": "us-midwest--r2-c1", + "name": "US Midwest 2.1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", + "extract_bbox": "-104.0588,40.459093,-98.170403,44.933117", + "source_region_id": "us-midwest", + "source_size_bytes": 2474364429, + "west": -104.0588, + "south": 40.459093, + "east": -98.170403, + "north": 44.933117, + "asset_name": "occumed-us-midwest--r2-c1.pmtiles", + "metadata_name": "occumed-us-midwest--r2-c1.json" + }, + { + "id": "us-midwest--r2-c2", + "slug": "us-midwest--r2-c2", + "name": "US Midwest 2.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", + "extract_bbox": "-98.170403,40.459093,-92.282005,44.933117", + "source_region_id": "us-midwest", + "source_size_bytes": 2474364429, + "west": -98.170403, + "south": 40.459093, + "east": -92.282005, + "north": 44.933117, + "asset_name": "occumed-us-midwest--r2-c2.pmtiles", + "metadata_name": "occumed-us-midwest--r2-c2.json" + }, + { + "id": "us-midwest--r2-c3", + "slug": "us-midwest--r2-c3", + "name": "US Midwest 2.3", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", + "extract_bbox": "-92.282005,40.459093,-86.393608,44.933117", + "source_region_id": "us-midwest", + "source_size_bytes": 2474364429, + "west": -92.282005, + "south": 40.459093, + "east": -86.393608, + "north": 44.933117, + "asset_name": "occumed-us-midwest--r2-c3.pmtiles", + "metadata_name": "occumed-us-midwest--r2-c3.json" + }, + { + "id": "us-midwest--r2-c4", + "slug": "us-midwest--r2-c4", + "name": "US Midwest 2.4", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", + "extract_bbox": "-86.393608,40.459093,-80.50521,44.933117", + "source_region_id": "us-midwest", + "source_size_bytes": 2474364429, + "west": -86.393608, + "south": 40.459093, + "east": -80.50521, + "north": 44.933117, + "asset_name": "occumed-us-midwest--r2-c4.pmtiles", + "metadata_name": "occumed-us-midwest--r2-c4.json" + }, + { + "id": "us-midwest--r3-c1", + "slug": "us-midwest--r3-c1", + "name": "US Midwest 3.1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", + "extract_bbox": "-104.0588,44.933117,-98.170403,49.40714", + "source_region_id": "us-midwest", + "source_size_bytes": 2474364429, + "west": -104.0588, + "south": 44.933117, + "east": -98.170403, + "north": 49.40714, + "asset_name": "occumed-us-midwest--r3-c1.pmtiles", + "metadata_name": "occumed-us-midwest--r3-c1.json" + }, + { + "id": "us-midwest--r3-c2", + "slug": "us-midwest--r3-c2", + "name": "US Midwest 3.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", + "extract_bbox": "-98.170403,44.933117,-92.282005,49.40714", + "source_region_id": "us-midwest", + "source_size_bytes": 2474364429, + "west": -98.170403, + "south": 44.933117, + "east": -92.282005, + "north": 49.40714, + "asset_name": "occumed-us-midwest--r3-c2.pmtiles", + "metadata_name": "occumed-us-midwest--r3-c2.json" + }, + { + "id": "us-midwest--r3-c3", + "slug": "us-midwest--r3-c3", + "name": "US Midwest 3.3", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", + "extract_bbox": "-92.282005,44.933117,-86.393608,49.40714", + "source_region_id": "us-midwest", + "source_size_bytes": 2474364429, + "west": -92.282005, + "south": 44.933117, + "east": -86.393608, + "north": 49.40714, + "asset_name": "occumed-us-midwest--r3-c3.pmtiles", + "metadata_name": "occumed-us-midwest--r3-c3.json" + }, + { + "id": "us-midwest--r3-c4", + "slug": "us-midwest--r3-c4", + "name": "US Midwest 3.4", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", + "extract_bbox": "-86.393608,44.933117,-80.50521,49.40714", + "source_region_id": "us-midwest", + "source_size_bytes": 2474364429, + "west": -86.393608, + "south": 44.933117, + "east": -80.50521, + "north": 49.40714, + "asset_name": "occumed-us-midwest--r3-c4.pmtiles", + "metadata_name": "occumed-us-midwest--r3-c4.json" + }, + { + "id": "us-northeast--r1-c1", + "slug": "us-northeast--r1-c1", + "name": "US Northeast 1.1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-northeast-latest.osm.pbf", + "extract_bbox": "-80.52275,38.74287,-75.97238,43.102545", + "source_region_id": "us-northeast", + "source_size_bytes": 1787334438, + "west": -80.52275, + "south": 38.74287, + "east": -75.97238, + "north": 43.102545, + "asset_name": "occumed-us-northeast--r1-c1.pmtiles", + "metadata_name": "occumed-us-northeast--r1-c1.json" + }, + { + "id": "us-northeast--r1-c2", + "slug": "us-northeast--r1-c2", + "name": "US Northeast 1.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-northeast-latest.osm.pbf", + "extract_bbox": "-75.97238,38.74287,-71.42201,43.102545", + "source_region_id": "us-northeast", + "source_size_bytes": 1787334438, + "west": -75.97238, + "south": 38.74287, + "east": -71.42201, + "north": 43.102545, + "asset_name": "occumed-us-northeast--r1-c2.pmtiles", + "metadata_name": "occumed-us-northeast--r1-c2.json" + }, + { + "id": "us-northeast--r1-c3", + "slug": "us-northeast--r1-c3", + "name": "US Northeast 1.3", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-northeast-latest.osm.pbf", + "extract_bbox": "-71.42201,38.74287,-66.87164,43.102545", + "source_region_id": "us-northeast", + "source_size_bytes": 1787334438, + "west": -71.42201, + "south": 38.74287, + "east": -66.87164, + "north": 43.102545, + "asset_name": "occumed-us-northeast--r1-c3.pmtiles", + "metadata_name": "occumed-us-northeast--r1-c3.json" + }, + { + "id": "us-northeast--r2-c1", + "slug": "us-northeast--r2-c1", + "name": "US Northeast 2.1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-northeast-latest.osm.pbf", + "extract_bbox": "-80.52275,43.102545,-75.97238,47.46222", + "source_region_id": "us-northeast", + "source_size_bytes": 1787334438, + "west": -80.52275, + "south": 43.102545, + "east": -75.97238, + "north": 47.46222, + "asset_name": "occumed-us-northeast--r2-c1.pmtiles", + "metadata_name": "occumed-us-northeast--r2-c1.json" + }, + { + "id": "us-northeast--r2-c2", + "slug": "us-northeast--r2-c2", + "name": "US Northeast 2.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-northeast-latest.osm.pbf", + "extract_bbox": "-75.97238,43.102545,-71.42201,47.46222", + "source_region_id": "us-northeast", + "source_size_bytes": 1787334438, + "west": -75.97238, + "south": 43.102545, + "east": -71.42201, + "north": 47.46222, + "asset_name": "occumed-us-northeast--r2-c2.pmtiles", + "metadata_name": "occumed-us-northeast--r2-c2.json" + }, + { + "id": "us-northeast--r2-c3", + "slug": "us-northeast--r2-c3", + "name": "US Northeast 2.3", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-northeast-latest.osm.pbf", + "extract_bbox": "-71.42201,43.102545,-66.87164,47.46222", + "source_region_id": "us-northeast", + "source_size_bytes": 1787334438, + "west": -71.42201, + "south": 43.102545, + "east": -66.87164, + "north": 47.46222, + "asset_name": "occumed-us-northeast--r2-c3.pmtiles", + "metadata_name": "occumed-us-northeast--r2-c3.json" + }, + { + "id": "us-pacific", + "slug": "us-pacific", + "name": "US Pacific", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-pacific-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us-pacific", + "source_size_bytes": 170656727, + "west": 170.9912, + "south": 15.92097, + "east": -129.7998, + "north": 72.98845, + "asset_name": "occumed-us-pacific.pmtiles", + "metadata_name": "occumed-us-pacific.json" + }, + { + "id": "us-south--r1-c1", + "slug": "us-south--r1-c1", + "name": "US South 1.1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-106.6494,24.20031,-100.792802,29.682327", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -106.6494, + "south": 24.20031, + "east": -100.792802, + "north": 29.682327, + "asset_name": "occumed-us-south--r1-c1.pmtiles", + "metadata_name": "occumed-us-south--r1-c1.json" + }, + { + "id": "us-south--r1-c2", + "slug": "us-south--r1-c2", + "name": "US South 1.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-100.792802,24.20031,-94.936203,29.682327", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -100.792802, + "south": 24.20031, + "east": -94.936203, + "north": 29.682327, + "asset_name": "occumed-us-south--r1-c2.pmtiles", + "metadata_name": "occumed-us-south--r1-c2.json" + }, + { + "id": "us-south--r1-c3", + "slug": "us-south--r1-c3", + "name": "US South 1.3", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-94.936203,24.20031,-89.079605,29.682327", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -94.936203, + "south": 24.20031, + "east": -89.079605, + "north": 29.682327, + "asset_name": "occumed-us-south--r1-c3.pmtiles", + "metadata_name": "occumed-us-south--r1-c3.json" + }, + { + "id": "us-south--r1-c4", + "slug": "us-south--r1-c4", + "name": "US South 1.4", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-89.079605,24.20031,-83.223007,29.682327", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -89.079605, + "south": 24.20031, + "east": -83.223007, + "north": 29.682327, + "asset_name": "occumed-us-south--r1-c4.pmtiles", + "metadata_name": "occumed-us-south--r1-c4.json" + }, + { + "id": "us-south--r1-c5", + "slug": "us-south--r1-c5", + "name": "US South 1.5", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-83.223007,24.20031,-77.366408,29.682327", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -83.223007, + "south": 24.20031, + "east": -77.366408, + "north": 29.682327, + "asset_name": "occumed-us-south--r1-c5.pmtiles", + "metadata_name": "occumed-us-south--r1-c5.json" + }, + { + "id": "us-south--r1-c6", + "slug": "us-south--r1-c6", + "name": "US South 1.6", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-77.366408,24.20031,-71.50981,29.682327", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -77.366408, + "south": 24.20031, + "east": -71.50981, + "north": 29.682327, + "asset_name": "occumed-us-south--r1-c6.pmtiles", + "metadata_name": "occumed-us-south--r1-c6.json" + }, + { + "id": "us-south--r2-c1", + "slug": "us-south--r2-c1", + "name": "US South 2.1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-106.6494,29.682327,-100.792802,35.164343", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -106.6494, + "south": 29.682327, + "east": -100.792802, + "north": 35.164343, + "asset_name": "occumed-us-south--r2-c1.pmtiles", + "metadata_name": "occumed-us-south--r2-c1.json" + }, + { + "id": "us-south--r2-c2", + "slug": "us-south--r2-c2", + "name": "US South 2.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-100.792802,29.682327,-94.936203,35.164343", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -100.792802, + "south": 29.682327, + "east": -94.936203, + "north": 35.164343, + "asset_name": "occumed-us-south--r2-c2.pmtiles", + "metadata_name": "occumed-us-south--r2-c2.json" + }, + { + "id": "us-south--r2-c3", + "slug": "us-south--r2-c3", + "name": "US South 2.3", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-94.936203,29.682327,-89.079605,35.164343", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -94.936203, + "south": 29.682327, + "east": -89.079605, + "north": 35.164343, + "asset_name": "occumed-us-south--r2-c3.pmtiles", + "metadata_name": "occumed-us-south--r2-c3.json" + }, + { + "id": "us-south--r2-c4", + "slug": "us-south--r2-c4", + "name": "US South 2.4", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-89.079605,29.682327,-83.223007,35.164343", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -89.079605, + "south": 29.682327, + "east": -83.223007, + "north": 35.164343, + "asset_name": "occumed-us-south--r2-c4.pmtiles", + "metadata_name": "occumed-us-south--r2-c4.json" + }, + { + "id": "us-south--r2-c5", + "slug": "us-south--r2-c5", + "name": "US South 2.5", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-83.223007,29.682327,-77.366408,35.164343", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -83.223007, + "south": 29.682327, + "east": -77.366408, + "north": 35.164343, + "asset_name": "occumed-us-south--r2-c5.pmtiles", + "metadata_name": "occumed-us-south--r2-c5.json" + }, + { + "id": "us-south--r2-c6", + "slug": "us-south--r2-c6", + "name": "US South 2.6", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-77.366408,29.682327,-71.50981,35.164343", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -77.366408, + "south": 29.682327, + "east": -71.50981, + "north": 35.164343, + "asset_name": "occumed-us-south--r2-c6.pmtiles", + "metadata_name": "occumed-us-south--r2-c6.json" + }, + { + "id": "us-south--r3-c1", + "slug": "us-south--r3-c1", + "name": "US South 3.1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-106.6494,35.164343,-100.792802,40.64636", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -106.6494, + "south": 35.164343, + "east": -100.792802, + "north": 40.64636, + "asset_name": "occumed-us-south--r3-c1.pmtiles", + "metadata_name": "occumed-us-south--r3-c1.json" + }, + { + "id": "us-south--r3-c2", + "slug": "us-south--r3-c2", + "name": "US South 3.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-100.792802,35.164343,-94.936203,40.64636", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -100.792802, + "south": 35.164343, + "east": -94.936203, + "north": 40.64636, + "asset_name": "occumed-us-south--r3-c2.pmtiles", + "metadata_name": "occumed-us-south--r3-c2.json" + }, + { + "id": "us-south--r3-c3", + "slug": "us-south--r3-c3", + "name": "US South 3.3", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-94.936203,35.164343,-89.079605,40.64636", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -94.936203, + "south": 35.164343, + "east": -89.079605, + "north": 40.64636, + "asset_name": "occumed-us-south--r3-c3.pmtiles", + "metadata_name": "occumed-us-south--r3-c3.json" + }, + { + "id": "us-south--r3-c4", + "slug": "us-south--r3-c4", + "name": "US South 3.4", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-89.079605,35.164343,-83.223007,40.64636", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -89.079605, + "south": 35.164343, + "east": -83.223007, + "north": 40.64636, + "asset_name": "occumed-us-south--r3-c4.pmtiles", + "metadata_name": "occumed-us-south--r3-c4.json" + }, + { + "id": "us-south--r3-c5", + "slug": "us-south--r3-c5", + "name": "US South 3.5", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-83.223007,35.164343,-77.366408,40.64636", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -83.223007, + "south": 35.164343, + "east": -77.366408, + "north": 40.64636, + "asset_name": "occumed-us-south--r3-c5.pmtiles", + "metadata_name": "occumed-us-south--r3-c5.json" + }, + { + "id": "us-south--r3-c6", + "slug": "us-south--r3-c6", + "name": "US South 3.6", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", + "extract_bbox": "-77.366408,35.164343,-71.50981,40.64636", + "source_region_id": "us-south", + "source_size_bytes": 4093737233, + "west": -77.366408, + "south": 35.164343, + "east": -71.50981, + "north": 40.64636, + "asset_name": "occumed-us-south--r3-c6.pmtiles", + "metadata_name": "occumed-us-south--r3-c6.json" + }, + { + "id": "us-west--r1-c1", + "slug": "us-west--r1-c1", + "name": "US West 1.1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", + "extract_bbox": "-133.0637,31.32659,-125.30665,37.369743", + "source_region_id": "us-west", + "source_size_bytes": 3374891428, + "west": -133.0637, + "south": 31.32659, + "east": -125.30665, + "north": 37.369743, + "asset_name": "occumed-us-west--r1-c1.pmtiles", + "metadata_name": "occumed-us-west--r1-c1.json" + }, + { + "id": "us-west--r1-c2", + "slug": "us-west--r1-c2", + "name": "US West 1.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", + "extract_bbox": "-125.30665,31.32659,-117.5496,37.369743", + "source_region_id": "us-west", + "source_size_bytes": 3374891428, + "west": -125.30665, + "south": 31.32659, + "east": -117.5496, + "north": 37.369743, + "asset_name": "occumed-us-west--r1-c2.pmtiles", + "metadata_name": "occumed-us-west--r1-c2.json" + }, + { + "id": "us-west--r1-c3", + "slug": "us-west--r1-c3", + "name": "US West 1.3", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", + "extract_bbox": "-117.5496,31.32659,-109.79255,37.369743", + "source_region_id": "us-west", + "source_size_bytes": 3374891428, + "west": -117.5496, + "south": 31.32659, + "east": -109.79255, + "north": 37.369743, + "asset_name": "occumed-us-west--r1-c3.pmtiles", + "metadata_name": "occumed-us-west--r1-c3.json" + }, + { + "id": "us-west--r1-c4", + "slug": "us-west--r1-c4", + "name": "US West 1.4", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", + "extract_bbox": "-109.79255,31.32659,-102.0355,37.369743", + "source_region_id": "us-west", + "source_size_bytes": 3374891428, + "west": -109.79255, + "south": 31.32659, + "east": -102.0355, + "north": 37.369743, + "asset_name": "occumed-us-west--r1-c4.pmtiles", + "metadata_name": "occumed-us-west--r1-c4.json" + }, + { + "id": "us-west--r2-c1", + "slug": "us-west--r2-c1", + "name": "US West 2.1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", + "extract_bbox": "-133.0637,37.369743,-125.30665,43.412897", + "source_region_id": "us-west", + "source_size_bytes": 3374891428, + "west": -133.0637, + "south": 37.369743, + "east": -125.30665, + "north": 43.412897, + "asset_name": "occumed-us-west--r2-c1.pmtiles", + "metadata_name": "occumed-us-west--r2-c1.json" + }, + { + "id": "us-west--r2-c2", + "slug": "us-west--r2-c2", + "name": "US West 2.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", + "extract_bbox": "-125.30665,37.369743,-117.5496,43.412897", + "source_region_id": "us-west", + "source_size_bytes": 3374891428, + "west": -125.30665, + "south": 37.369743, + "east": -117.5496, + "north": 43.412897, + "asset_name": "occumed-us-west--r2-c2.pmtiles", + "metadata_name": "occumed-us-west--r2-c2.json" + }, + { + "id": "us-west--r2-c3", + "slug": "us-west--r2-c3", + "name": "US West 2.3", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", + "extract_bbox": "-117.5496,37.369743,-109.79255,43.412897", + "source_region_id": "us-west", + "source_size_bytes": 3374891428, + "west": -117.5496, + "south": 37.369743, + "east": -109.79255, + "north": 43.412897, + "asset_name": "occumed-us-west--r2-c3.pmtiles", + "metadata_name": "occumed-us-west--r2-c3.json" + }, + { + "id": "us-west--r2-c4", + "slug": "us-west--r2-c4", + "name": "US West 2.4", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", + "extract_bbox": "-109.79255,37.369743,-102.0355,43.412897", + "source_region_id": "us-west", + "source_size_bytes": 3374891428, + "west": -109.79255, + "south": 37.369743, + "east": -102.0355, + "north": 43.412897, + "asset_name": "occumed-us-west--r2-c4.pmtiles", + "metadata_name": "occumed-us-west--r2-c4.json" + }, + { + "id": "us-west--r3-c1", + "slug": "us-west--r3-c1", + "name": "US West 3.1", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", + "extract_bbox": "-133.0637,43.412897,-125.30665,49.45605", + "source_region_id": "us-west", + "source_size_bytes": 3374891428, + "west": -133.0637, + "south": 43.412897, + "east": -125.30665, + "north": 49.45605, + "asset_name": "occumed-us-west--r3-c1.pmtiles", + "metadata_name": "occumed-us-west--r3-c1.json" + }, + { + "id": "us-west--r3-c2", + "slug": "us-west--r3-c2", + "name": "US West 3.2", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", + "extract_bbox": "-125.30665,43.412897,-117.5496,49.45605", + "source_region_id": "us-west", + "source_size_bytes": 3374891428, + "west": -125.30665, + "south": 43.412897, + "east": -117.5496, + "north": 49.45605, + "asset_name": "occumed-us-west--r3-c2.pmtiles", + "metadata_name": "occumed-us-west--r3-c2.json" + }, + { + "id": "us-west--r3-c3", + "slug": "us-west--r3-c3", + "name": "US West 3.3", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", + "extract_bbox": "-117.5496,43.412897,-109.79255,49.45605", + "source_region_id": "us-west", + "source_size_bytes": 3374891428, + "west": -117.5496, + "south": 43.412897, + "east": -109.79255, + "north": 49.45605, + "asset_name": "occumed-us-west--r3-c3.pmtiles", + "metadata_name": "occumed-us-west--r3-c3.json" + }, + { + "id": "us-west--r3-c4", + "slug": "us-west--r3-c4", + "name": "US West 3.4", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", + "extract_bbox": "-109.79255,43.412897,-102.0355,49.45605", + "source_region_id": "us-west", + "source_size_bytes": 3374891428, + "west": -109.79255, + "south": 43.412897, + "east": -102.0355, + "north": 49.45605, + "asset_name": "occumed-us-west--r3-c4.pmtiles", + "metadata_name": "occumed-us-west--r3-c4.json" + }, + { + "id": "us/alabama", + "slug": "us--alabama", + "name": "us/alabama", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/alabama-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/alabama", + "source_size_bytes": 146832440, + "west": -88.48389, + "south": 29.95494, + "east": -84.88336, + "north": 35.00872, + "asset_name": "occumed-us--alabama.pmtiles", + "metadata_name": "occumed-us--alabama.json" + }, + { + "id": "us/alaska", + "slug": "us--alaska", + "name": "us/alaska", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/alaska-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/alaska", + "source_size_bytes": 143683494, + "west": 171.7602, + "south": 49.8089, + "east": -129.7998, + "north": 72.98845, + "asset_name": "occumed-us--alaska.pmtiles", + "metadata_name": "occumed-us--alaska.json" + }, + { + "id": "us/arizona", + "slug": "us--arizona", + "name": "us/arizona", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/arizona-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/arizona", + "source_size_bytes": 299844352, + "west": -114.8224, + "south": 31.32659, + "east": -109.0437, + "north": 37.00596, + "asset_name": "occumed-us--arizona.pmtiles", + "metadata_name": "occumed-us--arizona.json" + }, + { + "id": "us/arkansas", + "slug": "us--arkansas", + "name": "us/arkansas", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/arkansas-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/arkansas", + "source_size_bytes": 98694487, + "west": -94.62217, + "south": 33.0038, + "east": -89.63987, + "north": 36.51585, + "asset_name": "occumed-us--arkansas.pmtiles", + "metadata_name": "occumed-us--arkansas.json" + }, + { + "id": "us/colorado", + "slug": "us--colorado", + "name": "us/colorado", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/colorado-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/colorado", + "source_size_bytes": 376718801, + "west": -109.0631, + "south": 36.98943, + "east": -102.0355, + "north": 41.00388, + "asset_name": "occumed-us--colorado.pmtiles", + "metadata_name": "occumed-us--colorado.json" + }, + { + "id": "us/connecticut", + "slug": "us--connecticut", + "name": "us/connecticut", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/connecticut-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/connecticut", + "source_size_bytes": 216056239, + "west": -73.72889, + "south": 40.96401, + "east": -71.7853, + "north": 42.05229, + "asset_name": "occumed-us--connecticut.pmtiles", + "metadata_name": "occumed-us--connecticut.json" + }, + { + "id": "us/delaware", + "slug": "us--delaware", + "name": "us/delaware", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/delaware-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/delaware", + "source_size_bytes": 21906267, + "west": -75.78974, + "south": 38.45043, + "east": -74.98401, + "north": 39.84262, + "asset_name": "occumed-us--delaware.pmtiles", + "metadata_name": "occumed-us--delaware.json" + }, + { + "id": "us/district-of-columbia", + "slug": "us--district-of-columbia", + "name": "us/district-of-columbia", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/district-of-columbia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/district-of-columbia", + "source_size_bytes": 20904984, + "west": -77.1201, + "south": 38.79099, + "east": -76.90906, + "north": 38.99603, + "asset_name": "occumed-us--district-of-columbia.pmtiles", + "metadata_name": "occumed-us--district-of-columbia.json" + }, + { + "id": "us/florida", + "slug": "us--florida", + "name": "us/florida", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/florida-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/florida", + "source_size_bytes": 653296219, + "west": -88.46896, + "south": 24.20031, + "east": -79.43702, + "north": 31.00307, + "asset_name": "occumed-us--florida.pmtiles", + "metadata_name": "occumed-us--florida.json" + }, + { + "id": "us/georgia", + "slug": "us--georgia", + "name": "Georgia", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/georgia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/georgia", + "source_size_bytes": 354500394, + "west": -85.6068, + "south": 30.35365, + "east": -80.74313, + "north": 35.00356, + "asset_name": "occumed-us--georgia.pmtiles", + "metadata_name": "occumed-us--georgia.json" + }, + { + "id": "us/hawaii", + "slug": "us--hawaii", + "name": "us/hawaii", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/hawaii-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/hawaii", + "source_size_bytes": 26483966, + "west": -179.5994, + "south": 15.92097, + "east": -142.6511, + "north": 29.02109, + "asset_name": "occumed-us--hawaii.pmtiles", + "metadata_name": "occumed-us--hawaii.json" + }, + { + "id": "us/idaho", + "slug": "us--idaho", + "name": "us/idaho", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/idaho-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/idaho", + "source_size_bytes": 127251504, + "west": -117.246, + "south": 41.98306, + "east": -111.0431, + "north": 49.00819, + "asset_name": "occumed-us--idaho.pmtiles", + "metadata_name": "occumed-us--idaho.json" + }, + { + "id": "us/illinois", + "slug": "us--illinois", + "name": "us/illinois", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/illinois-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/illinois", + "source_size_bytes": 355233305, + "west": -91.51608, + "south": 36.96731, + "east": -87.49264, + "north": 42.50941, + "asset_name": "occumed-us--illinois.pmtiles", + "metadata_name": "occumed-us--illinois.json" + }, + { + "id": "us/indiana", + "slug": "us--indiana", + "name": "us/indiana", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/indiana-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/indiana", + "source_size_bytes": 196397277, + "west": -88.10327, + "south": 37.76911, + "east": -84.78042, + "north": 41.76301, + "asset_name": "occumed-us--indiana.pmtiles", + "metadata_name": "occumed-us--indiana.json" + }, + { + "id": "us/iowa", + "slug": "us--iowa", + "name": "us/iowa", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/iowa-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/iowa", + "source_size_bytes": 132441099, + "west": -96.6426, + "south": 40.37266, + "east": -90.13581, + "north": 43.50182, + "asset_name": "occumed-us--iowa.pmtiles", + "metadata_name": "occumed-us--iowa.json" + }, + { + "id": "us/kansas", + "slug": "us--kansas", + "name": "us/kansas", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/kansas-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/kansas", + "source_size_bytes": 114262562, + "west": -102.0535, + "south": 36.99136, + "east": -94.58926, + "north": 40.00375, + "asset_name": "occumed-us--kansas.pmtiles", + "metadata_name": "occumed-us--kansas.json" + }, + { + "id": "us/kentucky", + "slug": "us--kentucky", + "name": "us/kentucky", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/kentucky-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/kentucky", + "source_size_bytes": 152923177, + "west": -89.58125, + "south": 36.49325, + "east": -81.95512, + "north": 39.14831, + "asset_name": "occumed-us--kentucky.pmtiles", + "metadata_name": "occumed-us--kentucky.json" + }, + { + "id": "us/louisiana", + "slug": "us--louisiana", + "name": "us/louisiana", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/louisiana-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/louisiana", + "source_size_bytes": 145337159, + "west": -94.04376, + "south": 28.14452, + "east": -88.66684, + "north": 33.02025, + "asset_name": "occumed-us--louisiana.pmtiles", + "metadata_name": "occumed-us--louisiana.json" + }, + { + "id": "us/maine", + "slug": "us--maine", + "name": "us/maine", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/maine-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/maine", + "source_size_bytes": 90385082, + "west": -71.08891, + "south": 42.85443, + "east": -66.87164, + "north": 47.46222, + "asset_name": "occumed-us--maine.pmtiles", + "metadata_name": "occumed-us--maine.json" + }, + { + "id": "us/maryland", + "slug": "us--maryland", + "name": "us/maryland", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/maryland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/maryland", + "source_size_bytes": 213231733, + "west": -79.48857, + "south": 37.88396, + "east": -74.95408, + "north": 39.72684, + "asset_name": "occumed-us--maryland.pmtiles", + "metadata_name": "occumed-us--maryland.json" + }, + { + "id": "us/massachusetts", + "slug": "us--massachusetts", + "name": "us/massachusetts", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/massachusetts-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/massachusetts", + "source_size_bytes": 308857402, + "west": -73.51096, + "south": 40.88291, + "east": -68.73438, + "north": 42.88768, + "asset_name": "occumed-us--massachusetts.pmtiles", + "metadata_name": "occumed-us--massachusetts.json" + }, + { + "id": "us/michigan", + "slug": "us--michigan", + "name": "us/michigan", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/michigan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/michigan", + "source_size_bytes": 310142499, + "west": -90.41981, + "south": 41.69439, + "east": -82.06913, + "north": 48.35021, + "asset_name": "occumed-us--michigan.pmtiles", + "metadata_name": "occumed-us--michigan.json" + }, + { + "id": "us/minnesota", + "slug": "us--minnesota", + "name": "us/minnesota", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/minnesota-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/minnesota", + "source_size_bytes": 282104552, + "west": -97.24987, + "south": 43.49909, + "east": -89.48612, + "north": 49.40714, + "asset_name": "occumed-us--minnesota.pmtiles", + "metadata_name": "occumed-us--minnesota.json" + }, + { + "id": "us/mississippi", + "slug": "us--mississippi", + "name": "us/mississippi", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/mississippi-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/mississippi", + "source_size_bytes": 93510418, + "west": -91.65857, + "south": 30.04168, + "east": -88.09292, + "north": 35.00055, + "asset_name": "occumed-us--mississippi.pmtiles", + "metadata_name": "occumed-us--mississippi.json" + }, + { + "id": "us/missouri", + "slug": "us--missouri", + "name": "us/missouri", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/missouri-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/missouri", + "source_size_bytes": 192812651, + "west": -95.77751, + "south": 35.99466, + "east": -89.0891, + "north": 40.61664, + "asset_name": "occumed-us--missouri.pmtiles", + "metadata_name": "occumed-us--missouri.json" + }, + { + "id": "us/montana", + "slug": "us--montana", + "name": "us/montana", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/montana-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/montana", + "source_size_bytes": 99483376, + "west": -116.0518, + "south": 44.35556, + "east": -104.0355, + "north": 49.00769, + "asset_name": "occumed-us--montana.pmtiles", + "metadata_name": "occumed-us--montana.json" + }, + { + "id": "us/nebraska", + "slug": "us--nebraska", + "name": "us/nebraska", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/nebraska-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/nebraska", + "source_size_bytes": 99477843, + "west": -104.0575, + "south": 40.00015, + "east": -95.30703, + "north": 43.00172, + "asset_name": "occumed-us--nebraska.pmtiles", + "metadata_name": "occumed-us--nebraska.json" + }, + { + "id": "us/nevada", + "slug": "us--nevada", + "name": "us/nevada", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/nevada-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/nevada", + "source_size_bytes": 122478934, + "west": -120.0074, + "south": 35.00053, + "east": -114.0379, + "north": 42.00391, + "asset_name": "occumed-us--nevada.pmtiles", + "metadata_name": "occumed-us--nevada.json" + }, + { + "id": "us/new-hampshire", + "slug": "us--new-hampshire", + "name": "us/new-hampshire", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/new-hampshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/new-hampshire", + "source_size_bytes": 70718398, + "west": -72.5588, + "south": 42.69669, + "east": -70.48692, + "north": 45.31002, + "asset_name": "occumed-us--new-hampshire.pmtiles", + "metadata_name": "occumed-us--new-hampshire.json" + }, + { + "id": "us/new-jersey", + "slug": "us--new-jersey", + "name": "us/new-jersey", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/new-jersey-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/new-jersey", + "source_size_bytes": 162339958, + "west": -75.57879, + "south": 38.75433, + "east": -73.67898, + "north": 41.35807, + "asset_name": "occumed-us--new-jersey.pmtiles", + "metadata_name": "occumed-us--new-jersey.json" + }, + { + "id": "us/new-mexico", + "slug": "us--new-mexico", + "name": "us/new-mexico", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/new-mexico-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/new-mexico", + "source_size_bytes": 135630193, + "west": -109.0504, + "south": 31.33043, + "east": -102.9979, + "north": 37.00184, + "asset_name": "occumed-us--new-mexico.pmtiles", + "metadata_name": "occumed-us--new-mexico.json" + }, + { + "id": "us/new-york", + "slug": "us--new-york", + "name": "us/new-york", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/new-york-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/new-york", + "source_size_bytes": 494029499, + "west": -79.76483, + "south": 40.43922, + "east": -71.6608, + "north": 45.01766, + "asset_name": "occumed-us--new-york.pmtiles", + "metadata_name": "occumed-us--new-york.json" + }, + { + "id": "us/north-carolina", + "slug": "us--north-carolina", + "name": "us/north-carolina", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/north-carolina-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/north-carolina", + "source_size_bytes": 426077737, + "west": -84.32219, + "south": 33.12992, + "east": -73.7396, + "north": 36.58979, + "asset_name": "occumed-us--north-carolina.pmtiles", + "metadata_name": "occumed-us--north-carolina.json" + }, + { + "id": "us/north-dakota", + "slug": "us--north-dakota", + "name": "us/north-dakota", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/north-dakota-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/north-dakota", + "source_size_bytes": 127107036, + "west": -104.053, + "south": 45.93448, + "east": -96.55292, + "north": 49.01671, + "asset_name": "occumed-us--north-dakota.pmtiles", + "metadata_name": "occumed-us--north-dakota.json" + }, + { + "id": "us/ohio", + "slug": "us--ohio", + "name": "us/ohio", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/ohio-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/ohio", + "source_size_bytes": 320387909, + "west": -84.8219, + "south": 38.40076, + "east": -80.50521, + "north": 42.33584, + "asset_name": "occumed-us--ohio.pmtiles", + "metadata_name": "occumed-us--ohio.json" + }, + { + "id": "us/oklahoma", + "slug": "us--oklahoma", + "name": "us/oklahoma", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/oklahoma-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/oklahoma", + "source_size_bytes": 167366901, + "west": -103.0078, + "south": 33.61348, + "east": -94.42989, + "north": 37.00529, + "asset_name": "occumed-us--oklahoma.pmtiles", + "metadata_name": "occumed-us--oklahoma.json" + }, + { + "id": "us/oregon", + "slug": "us--oregon", + "name": "us/oregon", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/oregon-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/oregon", + "source_size_bytes": 251849516, + "west": -126.3879, + "south": 41.9634, + "east": -116.4545, + "north": 46.30349, + "asset_name": "occumed-us--oregon.pmtiles", + "metadata_name": "occumed-us--oregon.json" + }, + { + "id": "us/pennsylvania", + "slug": "us--pennsylvania", + "name": "us/pennsylvania", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/pennsylvania-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/pennsylvania", + "source_size_bytes": 343253730, + "west": -80.52275, + "south": 39.6644, + "east": -74.68761, + "north": 42.51649, + "asset_name": "occumed-us--pennsylvania.pmtiles", + "metadata_name": "occumed-us--pennsylvania.json" + }, + { + "id": "us/puerto-rico", + "slug": "us--puerto-rico", + "name": "us/puerto-rico", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/puerto-rico-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/puerto-rico", + "source_size_bytes": 73573365, + "west": -68.31024, + "south": 17.51573, + "east": -65.09262, + "north": 18.81272, + "asset_name": "occumed-us--puerto-rico.pmtiles", + "metadata_name": "occumed-us--puerto-rico.json" + }, + { + "id": "us/rhode-island", + "slug": "us--rhode-island", + "name": "us/rhode-island", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/rhode-island-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/rhode-island", + "source_size_bytes": 51800671, + "west": -71.91456, + "south": 40.9992, + "east": -71.06369, + "north": 42.01938, + "asset_name": "occumed-us--rhode-island.pmtiles", + "metadata_name": "occumed-us--rhode-island.json" + }, + { + "id": "us/south-carolina", + "slug": "us--south-carolina", + "name": "us/south-carolina", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/south-carolina-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/south-carolina", + "source_size_bytes": 161869436, + "west": -83.35622, + "south": 32.02967, + "east": -78.51867, + "north": 35.2184, + "asset_name": "occumed-us--south-carolina.pmtiles", + "metadata_name": "occumed-us--south-carolina.json" + }, + { + "id": "us/south-dakota", + "slug": "us--south-dakota", + "name": "us/south-dakota", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/south-dakota-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/south-dakota", + "source_size_bytes": 48030118, + "west": -104.0588, + "south": 42.47744, + "east": -96.43595, + "north": 45.94831, + "asset_name": "occumed-us--south-dakota.pmtiles", + "metadata_name": "occumed-us--south-dakota.json" + }, + { + "id": "us/tennessee", + "slug": "us--tennessee", + "name": "us/tennessee", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/tennessee-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/tennessee", + "source_size_bytes": 186730083, + "west": -90.31329, + "south": 34.98269, + "east": -81.64416, + "north": 36.68075, + "asset_name": "occumed-us--tennessee.pmtiles", + "metadata_name": "occumed-us--tennessee.json" + }, + { + "id": "us/texas", + "slug": "us--texas", + "name": "us/texas", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/texas-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/texas", + "source_size_bytes": 712037300, + "west": -106.6494, + "south": 25.69551, + "east": -93.01897, + "north": 36.52145, + "asset_name": "occumed-us--texas.pmtiles", + "metadata_name": "occumed-us--texas.json" + }, + { + "id": "us/us-virgin-islands", + "slug": "us--us-virgin-islands", + "name": "us/us-virgin-islands", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/us-virgin-islands-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/us-virgin-islands", + "source_size_bytes": 3114441, + "west": -65.17502, + "south": 17.28246, + "east": -63.95554, + "north": 18.48596, + "asset_name": "occumed-us--us-virgin-islands.pmtiles", + "metadata_name": "occumed-us--us-virgin-islands.json" + }, + { + "id": "us/utah", + "slug": "us--utah", + "name": "us/utah", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/utah-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/utah", + "source_size_bytes": 166631102, + "west": -114.0556, + "south": 36.9963, + "east": -109.0394, + "north": 42.00323, + "asset_name": "occumed-us--utah.pmtiles", + "metadata_name": "occumed-us--utah.json" + }, + { + "id": "us/vermont", + "slug": "us--vermont", + "name": "us/vermont", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/vermont-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/vermont", + "source_size_bytes": 45661599, + "west": -73.43943, + "south": 42.72498, + "east": -71.46476, + "north": 45.02309, + "asset_name": "occumed-us--vermont.pmtiles", + "metadata_name": "occumed-us--vermont.json" + }, + { + "id": "us/virginia", + "slug": "us--virginia", + "name": "us/virginia", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/virginia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/virginia", + "source_size_bytes": 425797998, + "west": -83.67841, + "south": 36.53798, + "east": -74.29751, + "north": 39.46901, + "asset_name": "occumed-us--virginia.pmtiles", + "metadata_name": "occumed-us--virginia.json" + }, + { + "id": "us/washington", + "slug": "us--washington", + "name": "us/washington", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/washington-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/washington", + "source_size_bytes": 359544747, + "west": -126.7423, + "south": 45.53882, + "east": -116.9115, + "north": 49.00708, + "asset_name": "occumed-us--washington.pmtiles", + "metadata_name": "occumed-us--washington.json" + }, + { + "id": "us/west-virginia", + "slug": "us--west-virginia", + "name": "us/west-virginia", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/west-virginia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/west-virginia", + "source_size_bytes": 97628723, + "west": -82.64965, + "south": 37.19858, + "east": -77.7141, + "north": 40.64636, + "asset_name": "occumed-us--west-virginia.pmtiles", + "metadata_name": "occumed-us--west-virginia.json" + }, + { + "id": "us/wisconsin", + "slug": "us--wisconsin", + "name": "us/wisconsin", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/wisconsin-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/wisconsin", + "source_size_bytes": 291023481, + "west": -92.89089, + "south": 42.48899, + "east": -86.20021, + "north": 47.41451, + "asset_name": "occumed-us--wisconsin.pmtiles", + "metadata_name": "occumed-us--wisconsin.json" + }, + { + "id": "us/wyoming", + "slug": "us--wyoming", + "name": "us/wyoming", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/us/wyoming-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "us/wyoming", + "source_size_bytes": 92610064, + "west": -111.0576, + "south": 40.98339, + "east": -103.9413, + "north": 45.01216, + "asset_name": "occumed-us--wyoming.pmtiles", + "metadata_name": "occumed-us--wyoming.json" + }, + { + "id": "ustecky", + "slug": "ustecky", + "name": "Ústecký kraj", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/czech-republic/ustecky-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "ustecky", + "source_size_bytes": 111230937, + "west": 12.93716, + "south": 50.07552, + "east": 14.66589, + "north": 51.06426, + "asset_name": "occumed-ustecky.pmtiles", + "metadata_name": "occumed-ustecky.json" + }, + { + "id": "utrecht", + "slug": "utrecht", + "name": "Utrecht", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/netherlands/utrecht-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "utrecht", + "source_size_bytes": 97970933, + "west": 4.790849, + "south": 51.85615, + "east": 5.62829, + "north": 52.30494, + "asset_name": "occumed-utrecht.pmtiles", + "metadata_name": "occumed-utrecht.json" + }, + { + "id": "uzbekistan", + "slug": "uzbekistan", + "name": "Uzbekistan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/uzbekistan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "uzbekistan", + "source_size_bytes": 121798441, + "west": 55.97708, + "south": 37.16636, + "east": 73.17463, + "north": 45.61884, + "asset_name": "occumed-uzbekistan.pmtiles", + "metadata_name": "occumed-uzbekistan.json" + }, + { + "id": "valencia", + "slug": "valencia", + "name": "Valencia", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/spain/valencia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "valencia", + "source_size_bytes": 138785340, + "west": -1.531649, + "south": 37.84341, + "east": 1.686396, + "north": 40.79328, + "asset_name": "occumed-valencia.pmtiles", + "metadata_name": "occumed-valencia.json" + }, + { + "id": "vanuatu", + "slug": "vanuatu", + "name": "Vanuatu", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/vanuatu-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "vanuatu", + "source_size_bytes": 7888468, + "west": 163.3086, + "south": -21.64288, + "east": 173.6089, + "north": -12.29626, + "asset_name": "occumed-vanuatu.pmtiles", + "metadata_name": "occumed-vanuatu.json" + }, + { + "id": "venezuela", + "slug": "venezuela", + "name": "Venezuela", + "continent": "south-america", + "pbf_url": "https://download.geofabrik.de/south-america/venezuela-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "venezuela", + "source_size_bytes": 124418720, + "west": -73.38098, + "south": 0.621727, + "east": -59.51474, + "north": 15.96134, + "asset_name": "occumed-venezuela.pmtiles", + "metadata_name": "occumed-venezuela.json" + }, + { + "id": "vestlandet", + "slug": "vestlandet", + "name": "Vestlandet
(Western Norway)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/norway/vestlandet-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "vestlandet", + "source_size_bytes": 256496198, + "west": 2.32908, + "south": 57.63122, + "east": 9.374655, + "north": 65.12362, + "asset_name": "occumed-vestlandet.pmtiles", + "metadata_name": "occumed-vestlandet.json" + }, + { + "id": "victoria", + "slug": "victoria", + "name": "Victoria", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/victoria-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "victoria", + "source_size_bytes": 238877854, + "west": 140.9574, + "south": -39.23224, + "east": 150.4683, + "north": -33.97931, + "asset_name": "occumed-victoria.pmtiles", + "metadata_name": "occumed-victoria.json" + }, + { + "id": "vietnam", + "slug": "vietnam", + "name": "Vietnam", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/vietnam-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "vietnam", + "source_size_bytes": 325750725, + "west": 102.0959, + "south": 7.382239, + "east": 114.6423, + "north": 23.40214, + "asset_name": "occumed-vietnam.pmtiles", + "metadata_name": "occumed-vietnam.json" + }, + { + "id": "volga-fed-district", + "slug": "volga-fed-district", + "name": "Volga Federal District", + "continent": "volga-fed-district", + "pbf_url": "https://download.geofabrik.de/russia/volga-fed-district-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "volga-fed-district", + "source_size_bytes": 768787067, + "west": 41.72107, + "south": 49.75097, + "east": 61.73371, + "north": 61.71971, + "asset_name": "occumed-volga-fed-district.pmtiles", + "metadata_name": "occumed-volga-fed-district.json" + }, + { + "id": "vysocina", + "slug": "vysocina", + "name": "Kraj Vysočina", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/czech-republic/vysocina-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "vysocina", + "source_size_bytes": 72975464, + "west": 14.88686, + "south": 48.9362, + "east": 16.41962, + "north": 49.8613, + "asset_name": "occumed-vysocina.pmtiles", + "metadata_name": "occumed-vysocina.json" + }, + { + "id": "wales", + "slug": "wales", + "name": "Wales", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/wales-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "wales", + "source_size_bytes": 145556615, + "west": -6.183241, + "south": 51.03997, + "east": -2.648042, + "north": 53.76632, + "asset_name": "occumed-wales.pmtiles", + "metadata_name": "occumed-wales.json" + }, + { + "id": "wallis-et-futuna", + "slug": "wallis-et-futuna", + "name": "Wallis et Futuna", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/wallis-et-futuna-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "wallis-et-futuna", + "source_size_bytes": 617194, + "west": -179.978, + "south": -16.25685, + "east": -174.1553, + "north": -9.05868, + "asset_name": "occumed-wallis-et-futuna.pmtiles", + "metadata_name": "occumed-wallis-et-futuna.json" + }, + { + "id": "warminsko-mazurskie", + "slug": "warminsko-mazurskie", + "name": "Województwo warmińsko-mazurskie
(Warmian-Masurian Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/warminsko-mazurskie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "warminsko-mazurskie", + "source_size_bytes": 84144635, + "west": 19.11666, + "south": 53.12575, + "east": 22.82058, + "north": 54.51456, + "asset_name": "occumed-warminsko-mazurskie.pmtiles", + "metadata_name": "occumed-warminsko-mazurskie.json" + }, + { + "id": "warwickshire", + "slug": "warwickshire", + "name": "Warwickshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/warwickshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "warwickshire", + "source_size_bytes": 24184472, + "west": -1.963, + "south": 51.95471, + "east": -1.17115, + "north": 52.68823, + "asset_name": "occumed-warwickshire.pmtiles", + "metadata_name": "occumed-warwickshire.json" + }, + { + "id": "west-midlands", + "slug": "west-midlands", + "name": "West Midlands", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/west-midlands-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "west-midlands", + "source_size_bytes": 59209242, + "west": -2.208211, + "south": 52.3457, + "east": -1.422524, + "north": 52.6643, + "asset_name": "occumed-west-midlands.pmtiles", + "metadata_name": "occumed-west-midlands.json" + }, + { + "id": "west-sussex", + "slug": "west-sussex", + "name": "West Sussex", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/west-sussex-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "west-sussex", + "source_size_bytes": 48927707, + "west": -0.956244, + "south": 50.70685, + "east": 0.041342, + "north": 51.169, + "asset_name": "occumed-west-sussex.pmtiles", + "metadata_name": "occumed-west-sussex.json" + }, + { + "id": "west-yorkshire", + "slug": "west-yorkshire", + "name": "West Yorkshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/west-yorkshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "west-yorkshire", + "source_size_bytes": 53005752, + "west": -2.175545, + "south": 53.51822, + "east": -1.196, + "north": 53.96491, + "asset_name": "occumed-west-yorkshire.pmtiles", + "metadata_name": "occumed-west-yorkshire.json" + }, + { + "id": "western-australia", + "slug": "western-australia", + "name": "Western Australia", + "continent": "australia-oceania", + "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/western-australia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "western-australia", + "source_size_bytes": 113634755, + "west": 109.9281, + "south": -41.16427, + "east": 130.32, + "north": -12.83116, + "asset_name": "occumed-western-australia.pmtiles", + "metadata_name": "occumed-western-australia.json" + }, + { + "id": "western-zone", + "slug": "western-zone", + "name": "Western Zone", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/india/western-zone-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "western-zone", + "source_size_bytes": 218524741, + "west": 67.67457, + "south": 14.38929, + "east": 80.91362, + "north": 24.71756, + "asset_name": "occumed-western-zone.pmtiles", + "metadata_name": "occumed-western-zone.json" + }, + { + "id": "wielkopolskie", + "slug": "wielkopolskie", + "name": "Województwo wielkopolskie
(Greater Poland Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/wielkopolskie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "wielkopolskie", + "source_size_bytes": 157823430, + "west": 15.76036, + "south": 51.08403, + "east": 19.12931, + "north": 53.68105, + "asset_name": "occumed-wielkopolskie.pmtiles", + "metadata_name": "occumed-wielkopolskie.json" + }, + { + "id": "wiltshire", + "slug": "wiltshire", + "name": "Wiltshire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/wiltshire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "wiltshire", + "source_size_bytes": 33892258, + "west": -2.363253, + "south": 50.9465, + "east": -1.488811, + "north": 51.70637, + "asset_name": "occumed-wiltshire.pmtiles", + "metadata_name": "occumed-wiltshire.json" + }, + { + "id": "worcestershire", + "slug": "worcestershire", + "name": "Worcestershire", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/worcestershire-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "worcestershire", + "source_size_bytes": 20184578, + "west": -2.66399, + "south": 51.9654, + "east": -1.756496, + "north": 52.4565, + "asset_name": "occumed-worcestershire.pmtiles", + "metadata_name": "occumed-worcestershire.json" + }, + { + "id": "xinjiang", + "slug": "xinjiang", + "name": "Xinjiang", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/xinjiang-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "xinjiang", + "source_size_bytes": 47234202, + "west": 73.41788, + "south": 34.26775, + "east": 96.43, + "north": 49.26201, + "asset_name": "occumed-xinjiang.pmtiles", + "metadata_name": "occumed-xinjiang.json" + }, + { + "id": "yemen", + "slug": "yemen", + "name": "Yemen", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/yemen-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "yemen", + "source_size_bytes": 43021956, + "west": 41.06894, + "south": 11.36768, + "east": 55.51167, + "north": 19.03189, + "asset_name": "occumed-yemen.pmtiles", + "metadata_name": "occumed-yemen.json" + }, + { + "id": "yukon", + "slug": "yukon", + "name": "Yukon", + "continent": "north-america", + "pbf_url": "https://download.geofabrik.de/north-america/canada/yukon-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "yukon", + "source_size_bytes": 74086339, + "west": -141.2389, + "south": 59.99739, + "east": -123.8021, + "north": 70.16293, + "asset_name": "occumed-yukon.pmtiles", + "metadata_name": "occumed-yukon.json" + }, + { + "id": "yunnan", + "slug": "yunnan", + "name": "Yunnan", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/yunnan-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "yunnan", + "source_size_bytes": 91280687, + "west": 97.42851, + "south": 21.04476, + "east": 106.215, + "north": 29.23518, + "asset_name": "occumed-yunnan.pmtiles", + "metadata_name": "occumed-yunnan.json" + }, + { + "id": "zachodniopomorskie", + "slug": "zachodniopomorskie", + "name": "Województwo zachodniopomorskie
(West Pomeranian Voivodeship)", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/poland/zachodniopomorskie-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "zachodniopomorskie", + "source_size_bytes": 97111895, + "west": 13.99022, + "south": 52.61742, + "east": 16.98847, + "north": 55.00664, + "asset_name": "occumed-zachodniopomorskie.pmtiles", + "metadata_name": "occumed-zachodniopomorskie.json" + }, + { + "id": "zambia", + "slug": "zambia", + "name": "Zambia", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/zambia-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "zambia", + "source_size_bytes": 251595074, + "west": 21.98982, + "south": -18.08777, + "east": 33.71773, + "north": -8.239483, + "asset_name": "occumed-zambia.pmtiles", + "metadata_name": "occumed-zambia.json" + }, + { + "id": "zeeland", + "slug": "zeeland", + "name": "Zeeland", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/netherlands/zeeland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "zeeland", + "source_size_bytes": 43775347, + "west": 3.233941, + "south": 51.19717, + "east": 4.278407, + "north": 51.87013, + "asset_name": "occumed-zeeland.pmtiles", + "metadata_name": "occumed-zeeland.json" + }, + { + "id": "zhejiang", + "slug": "zhejiang", + "name": "Zhejiang", + "continent": "asia", + "pbf_url": "https://download.geofabrik.de/asia/china/zhejiang-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "zhejiang", + "source_size_bytes": 89169111, + "west": 118.0206, + "south": 26.69164, + "east": 123.8379, + "north": 31.19078, + "asset_name": "occumed-zhejiang.pmtiles", + "metadata_name": "occumed-zhejiang.json" + }, + { + "id": "zimbabwe", + "slug": "zimbabwe", + "name": "Zimbabwe", + "continent": "africa", + "pbf_url": "https://download.geofabrik.de/africa/zimbabwe-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "zimbabwe", + "source_size_bytes": 178987954, + "west": 25.2229, + "south": -22.44725, + "east": 33.08541, + "north": -15.58707, + "asset_name": "occumed-zimbabwe.pmtiles", + "metadata_name": "occumed-zimbabwe.json" + }, + { + "id": "zlinsky", + "slug": "zlinsky", + "name": "Zlínský kraj", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/czech-republic/zlinsky-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "zlinsky", + "source_size_bytes": 52418048, + "west": 17.10807, + "south": 48.8374, + "east": 18.45055, + "north": 49.54122, + "asset_name": "occumed-zlinsky.pmtiles", + "metadata_name": "occumed-zlinsky.json" + }, + { + "id": "zuid-holland", + "slug": "zuid-holland", + "name": "Zuid-Holland", + "continent": "europe", + "pbf_url": "https://download.geofabrik.de/europe/netherlands/zuid-holland-latest.osm.pbf", + "extract_bbox": "", + "source_region_id": "zuid-holland", + "source_size_bytes": 209967074, + "west": 3.345328, + "south": 51.64252, + "east": 5.032393, + "north": 52.47611, + "asset_name": "occumed-zuid-holland.pmtiles", + "metadata_name": "occumed-zuid-holland.json" + } + ] +} From d5d176f22cef439209e764685cf7e262974523e6 Mon Sep 17 00:00:00 2001 From: Occumed79 Date: Tue, 28 Jul 2026 23:25:31 -0700 Subject: [PATCH 4/8] Trigger forced split audit on pull requests --- .github/workflows/audit-forced-split-regions.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/audit-forced-split-regions.yml b/.github/workflows/audit-forced-split-regions.yml index 563788b6..f691c5fd 100644 --- a/.github/workflows/audit-forced-split-regions.yml +++ b/.github/workflows/audit-forced-split-regions.yml @@ -8,6 +8,9 @@ on: - audit/forced-split-regions.json - audit/forced-split-regions.md - audit/world-plan.json + pull_request: + branches: + - main workflow_dispatch: permissions: @@ -40,6 +43,7 @@ jobs: cat audit/forced-split-regions.md - name: Commit audit results + if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' run: | git config user.name "github-actions[bot]" git config user.email "41898282+github-actions[bot]@users.noreply.github.com" From 18f2ca6b62656d28014b219393846a60ba7543d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 06:26:09 +0000 Subject: [PATCH 5/8] Record forced split region audit --- audit/forced-split-regions.json | 18 +- audit/forced-split-regions.md | 6 +- audit/world-plan.json | 446 ++++++++++++++++---------------- 3 files changed, 235 insertions(+), 235 deletions(-) diff --git a/audit/forced-split-regions.json b/audit/forced-split-regions.json index 7bf8d970..44f77e27 100644 --- a/audit/forced-split-regions.json +++ b/audit/forced-split-regions.json @@ -1,5 +1,5 @@ { - "generated_at": "2026-07-29T06:25:16.112Z", + "generated_at": "2026-07-29T06:26:09.634Z", "direct_split_limit_bytes": 850000000, "forced_split_family_count": 16, "forced_split_child_count": 176, @@ -7,7 +7,7 @@ { "source_region_id": "us", "continent": "north-america", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "child_count": 32, "children": [ { @@ -650,7 +650,7 @@ { "source_region_id": "us-south", "continent": "north-america", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "child_count": 18, "children": [ { @@ -856,7 +856,7 @@ { "source_region_id": "sea", "continent": "asia", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "child_count": 15, "children": [ { @@ -1276,7 +1276,7 @@ { "source_region_id": "us-midwest", "continent": "north-america", - "source_size_bytes": 2474364429, + "source_size_bytes": 2474124802, "child_count": 12, "children": [ { @@ -1416,7 +1416,7 @@ { "source_region_id": "alps", "continent": "europe", - "source_size_bytes": 2301582947, + "source_size_bytes": 2301259383, "child_count": 8, "children": [ { @@ -1745,7 +1745,7 @@ { "source_region_id": "ontario", "continent": "north-america", - "source_size_bytes": 966741555, + "source_size_bytes": 966871523, "child_count": 4, "children": [ { @@ -1871,7 +1871,7 @@ { "source_region_id": "ukraine", "continent": "europe", - "source_size_bytes": 870676344, + "source_size_bytes": 870539197, "child_count": 6, "children": [ { @@ -1945,7 +1945,7 @@ { "source_region_id": "central-fed-district", "continent": "central-fed-district", - "source_size_bytes": 870533571, + "source_size_bytes": 870430847, "child_count": 4, "children": [ { diff --git a/audit/forced-split-regions.md b/audit/forced-split-regions.md index 07157714..1db615ab 100644 --- a/audit/forced-split-regions.md +++ b/audit/forced-split-regions.md @@ -1,6 +1,6 @@ # Forced Grid-Split Region Audit -Generated: 2026-07-29T06:25:16.112Z +Generated: 2026-07-29T06:26:09.634Z - Forced-split parent families: **16** - Generated child archives: **176** @@ -11,7 +11,7 @@ Generated: 2026-07-29T06:25:16.112Z | `us` | north-america | 11.22 GiB | 32 | | `dach` | europe | 5.76 GiB | 25 | | `us-south` | north-america | 3.81 GiB | 18 | -| `sea` | asia | 3.38 GiB | 15 | +| `sea` | asia | 3.39 GiB | 15 | | `us-west` | north-america | 3.14 GiB | 12 | | `britain-and-ireland` | europe | 2.41 GiB | 9 | | `us-midwest` | north-america | 2.30 GiB | 12 | @@ -122,7 +122,7 @@ Children: 18 ### sea -Source size: 3.38 GiB +Source size: 3.39 GiB Children: 15 - `occumed-sea--r1-c1.pmtiles` — bbox `90.65133,-11.60655,100.725404,1.78722` diff --git a/audit/world-plan.json b/audit/world-plan.json index e3d5401c..f1de7fc4 100644 --- a/audit/world-plan.json +++ b/audit/world-plan.json @@ -88,7 +88,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "4.842221,42.69859,7.822263,45.549765", "source_region_id": "alps", - "source_size_bytes": 2301582947, + "source_size_bytes": 2301259383, "west": 4.842221, "south": 42.69859, "east": 7.822263, @@ -104,7 +104,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "7.822263,42.69859,10.802305,45.549765", "source_region_id": "alps", - "source_size_bytes": 2301582947, + "source_size_bytes": 2301259383, "west": 7.822263, "south": 42.69859, "east": 10.802305, @@ -120,7 +120,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "10.802305,42.69859,13.782348,45.549765", "source_region_id": "alps", - "source_size_bytes": 2301582947, + "source_size_bytes": 2301259383, "west": 10.802305, "south": 42.69859, "east": 13.782348, @@ -136,7 +136,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "13.782348,42.69859,16.76239,45.549765", "source_region_id": "alps", - "source_size_bytes": 2301582947, + "source_size_bytes": 2301259383, "west": 13.782348, "south": 42.69859, "east": 16.76239, @@ -152,7 +152,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "4.842221,45.549765,7.822263,48.40094", "source_region_id": "alps", - "source_size_bytes": 2301582947, + "source_size_bytes": 2301259383, "west": 4.842221, "south": 45.549765, "east": 7.822263, @@ -168,7 +168,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "7.822263,45.549765,10.802305,48.40094", "source_region_id": "alps", - "source_size_bytes": 2301582947, + "source_size_bytes": 2301259383, "west": 7.822263, "south": 45.549765, "east": 10.802305, @@ -184,7 +184,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "10.802305,45.549765,13.782348,48.40094", "source_region_id": "alps", - "source_size_bytes": 2301582947, + "source_size_bytes": 2301259383, "west": 10.802305, "south": 45.549765, "east": 13.782348, @@ -200,7 +200,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "13.782348,45.549765,16.76239,48.40094", "source_region_id": "alps", - "source_size_bytes": 2301582947, + "source_size_bytes": 2301259383, "west": 13.782348, "south": 45.549765, "east": 16.76239, @@ -360,7 +360,7 @@ "pbf_url": "https://download.geofabrik.de/south-america/argentina-latest.osm.pbf", "extract_bbox": "", "source_region_id": "argentina", - "source_size_bytes": 425708514, + "source_size_bytes": 425652792, "west": -73.61453, "south": -55.68296, "east": -53.63534, @@ -376,7 +376,7 @@ "pbf_url": "https://download.geofabrik.de/asia/armenia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "armenia", - "source_size_bytes": 52788402, + "source_size_bytes": 52786892, "west": 43.43821, "south": 38.83743, "east": 46.64262, @@ -488,7 +488,7 @@ "pbf_url": "https://download.geofabrik.de/europe/azores-latest.osm.pbf", "extract_bbox": "", "source_region_id": "azores", - "source_size_bytes": 17613112, + "source_size_bytes": 17592642, "west": -31.57293, "south": 35.67791, "east": -23.71814, @@ -632,7 +632,7 @@ "pbf_url": "https://download.geofabrik.de/africa/benin-latest.osm.pbf", "extract_bbox": "", "source_region_id": "benin", - "source_size_bytes": 47896339, + "source_size_bytes": 47892309, "west": 0.761489, "south": 5.984817, "east": 3.861694, @@ -648,7 +648,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/berkshire-latest.osm.pbf", "extract_bbox": "", "source_region_id": "berkshire", - "source_size_bytes": 22362897, + "source_size_bytes": 22374970, "west": -1.589073, "south": 51.32802, "east": -0.489118, @@ -664,7 +664,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/berlin-latest.osm.pbf", "extract_bbox": "", "source_region_id": "berlin", - "source_size_bytes": 98734204, + "source_size_bytes": 98726406, "west": 13.08283, "south": 52.33446, "east": 13.76225, @@ -728,7 +728,7 @@ "pbf_url": "https://download.geofabrik.de/europe/bosnia-herzegovina-latest.osm.pbf", "extract_bbox": "", "source_region_id": "bosnia-herzegovina", - "source_size_bytes": 159506546, + "source_size_bytes": 159485783, "west": 15.7156, "south": 42.55239, "east": 19.62639, @@ -744,7 +744,7 @@ "pbf_url": "https://download.geofabrik.de/africa/botswana-latest.osm.pbf", "extract_bbox": "", "source_region_id": "botswana", - "source_size_bytes": 87939248, + "source_size_bytes": 87944390, "west": 19.98745, "south": -26.91539, "east": 29.38549, @@ -792,7 +792,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/bremen-latest.osm.pbf", "extract_bbox": "", "source_region_id": "bremen", - "source_size_bytes": 21092996, + "source_size_bytes": 21091815, "west": 8.480959, "south": 53.01034, "east": 8.991268, @@ -1016,7 +1016,7 @@ "pbf_url": "https://download.geofabrik.de/africa/burkina-faso-latest.osm.pbf", "extract_bbox": "", "source_region_id": "burkina-faso", - "source_size_bytes": 84445676, + "source_size_bytes": 84446099, "west": -5.527409, "south": 9.384107, "east": 2.412529, @@ -1064,7 +1064,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/cambridgeshire-latest.osm.pbf", "extract_bbox": "", "source_region_id": "cambridgeshire", - "source_size_bytes": 34369442, + "source_size_bytes": 34371849, "west": -0.502126, "south": 52.00517, "east": 0.516191, @@ -1128,7 +1128,7 @@ "pbf_url": "https://download.geofabrik.de/africa/cape-verde-latest.osm.pbf", "extract_bbox": "", "source_region_id": "cape-verde", - "source_size_bytes": 11677233, + "source_size_bytes": 11677832, "west": -26.32379, "south": 14.00485, "east": -21.39096, @@ -1208,7 +1208,7 @@ "pbf_url": "https://download.geofabrik.de/russia/central-fed-district-latest.osm.pbf", "extract_bbox": "30.69976,49.50446,39.184995,54.57888", "source_region_id": "central-fed-district", - "source_size_bytes": 870533571, + "source_size_bytes": 870430847, "west": 30.69976, "south": 49.50446, "east": 39.184995, @@ -1224,7 +1224,7 @@ "pbf_url": "https://download.geofabrik.de/russia/central-fed-district-latest.osm.pbf", "extract_bbox": "39.184995,49.50446,47.67023,54.57888", "source_region_id": "central-fed-district", - "source_size_bytes": 870533571, + "source_size_bytes": 870430847, "west": 39.184995, "south": 49.50446, "east": 47.67023, @@ -1240,7 +1240,7 @@ "pbf_url": "https://download.geofabrik.de/russia/central-fed-district-latest.osm.pbf", "extract_bbox": "30.69976,54.57888,39.184995,59.6533", "source_region_id": "central-fed-district", - "source_size_bytes": 870533571, + "source_size_bytes": 870430847, "west": 30.69976, "south": 54.57888, "east": 39.184995, @@ -1256,7 +1256,7 @@ "pbf_url": "https://download.geofabrik.de/russia/central-fed-district-latest.osm.pbf", "extract_bbox": "39.184995,54.57888,47.67023,59.6533", "source_region_id": "central-fed-district", - "source_size_bytes": 870533571, + "source_size_bytes": 870430847, "west": 39.184995, "south": 54.57888, "east": 47.67023, @@ -1320,7 +1320,7 @@ "pbf_url": "https://download.geofabrik.de/south-america/brazil/centro-oeste-latest.osm.pbf", "extract_bbox": "", "source_region_id": "centro-oeste", - "source_size_bytes": 200581415, + "source_size_bytes": 200593773, "west": -61.66496, "south": -24.18381, "east": -45.87758, @@ -1368,7 +1368,7 @@ "pbf_url": "https://download.geofabrik.de/europe/france/champagne-ardenne-latest.osm.pbf", "extract_bbox": "", "source_region_id": "champagne-ardenne", - "source_size_bytes": 104717330, + "source_size_bytes": 104725196, "west": 3.382419, "south": 47.57553, "east": 5.892182, @@ -1384,7 +1384,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/cheshire-latest.osm.pbf", "extract_bbox": "", "source_region_id": "cheshire", - "source_size_bytes": 37822711, + "source_size_bytes": 37801628, "west": -3.129775, "south": 52.94553, "east": -1.973135, @@ -1448,7 +1448,7 @@ "pbf_url": "https://download.geofabrik.de/asia/japan/chubu-latest.osm.pbf", "extract_bbox": "", "source_region_id": "chubu", - "source_size_bytes": 506670748, + "source_size_bytes": 506593040, "west": 135.4393, "south": 34.26649, "east": 139.909, @@ -1496,7 +1496,7 @@ "pbf_url": "https://download.geofabrik.de/south-america/colombia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "colombia", - "source_size_bytes": 322793836, + "source_size_bytes": 322749077, "west": -83.23104, "south": -4.25732, "east": -66.81472, @@ -1528,7 +1528,7 @@ "pbf_url": "https://download.geofabrik.de/africa/congo-brazzaville-latest.osm.pbf", "extract_bbox": "", "source_region_id": "congo-brazzaville", - "source_size_bytes": 32335080, + "source_size_bytes": 32335490, "west": 10.94417, "south": -5.195885, "east": 18.66783, @@ -1592,7 +1592,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/cornwall-latest.osm.pbf", "extract_bbox": "", "source_region_id": "cornwall", - "source_size_bytes": 33716091, + "source_size_bytes": 33715125, "west": -6.820424, "south": 49.57808, "east": -4.146631, @@ -1688,7 +1688,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/cumbria-latest.osm.pbf", "extract_bbox": "", "source_region_id": "cumbria", - "source_size_bytes": 45213361, + "source_size_bytes": 45212265, "west": -3.907471, "south": 53.90063, "east": -2.159588, @@ -1704,7 +1704,7 @@ "pbf_url": "https://download.geofabrik.de/europe/cyprus-latest.osm.pbf", "extract_bbox": "", "source_region_id": "cyprus", - "source_size_bytes": 36839113, + "source_size_bytes": 36844483, "west": 31.95244, "south": 34.23374, "east": 34.96147, @@ -2248,7 +2248,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/nordrhein-westfalen/duesseldorf-regbez-latest.osm.pbf", "extract_bbox": "", "source_region_id": "duesseldorf-regbez", - "source_size_bytes": 214774184, + "source_size_bytes": 214790289, "west": 5.941466, "south": 51.01422, "east": 7.314306, @@ -2440,7 +2440,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/essex-latest.osm.pbf", "extract_bbox": "", "source_region_id": "essex", - "source_size_bytes": 49300987, + "source_size_bytes": 49301894, "west": -0.019651, "south": 51.45008, "east": 1.307251, @@ -2488,7 +2488,7 @@ "pbf_url": "https://download.geofabrik.de/europe/spain/extremadura-latest.osm.pbf", "extract_bbox": "", "source_region_id": "extremadura", - "source_size_bytes": 39531871, + "source_size_bytes": 39532056, "west": -7.54369, "south": 37.93851, "east": -4.64241, @@ -2520,7 +2520,7 @@ "pbf_url": "https://download.geofabrik.de/russia/far-eastern-fed-district-latest.osm.pbf", "extract_bbox": "", "source_region_id": "far-eastern-fed-district", - "source_size_bytes": 382626201, + "source_size_bytes": 382594244, "west": 105.4219, "south": 37.34659, "east": -168.6841, @@ -2584,7 +2584,7 @@ "pbf_url": "https://download.geofabrik.de/europe/netherlands/flevoland-latest.osm.pbf", "extract_bbox": "", "source_region_id": "flevoland", - "source_size_bytes": 34428527, + "source_size_bytes": 34451765, "west": 5.059593, "south": 52.24826, "east": 6.018276, @@ -2632,7 +2632,7 @@ "pbf_url": "https://download.geofabrik.de/europe/netherlands/friesland-latest.osm.pbf", "extract_bbox": "", "source_region_id": "friesland", - "source_size_bytes": 88191021, + "source_size_bytes": 88184294, "west": 4.597294, "south": 52.76362, "east": 6.428358, @@ -2712,7 +2712,7 @@ "pbf_url": "https://download.geofabrik.de/asia/gcc-states-latest.osm.pbf", "extract_bbox": "", "source_region_id": "gcc-states", - "source_size_bytes": 251836057, + "source_size_bytes": 251841991, "west": 34.43489, "south": 15.24752, "east": 60.94748, @@ -2760,7 +2760,7 @@ "pbf_url": "https://download.geofabrik.de/africa/ghana-latest.osm.pbf", "extract_bbox": "", "source_region_id": "ghana", - "source_size_bytes": 114709460, + "source_size_bytes": 114501039, "west": -3.807399, "south": 3.704056, "east": 1.394038, @@ -2984,7 +2984,7 @@ "pbf_url": "https://download.geofabrik.de/europe/netherlands/groningen-latest.osm.pbf", "extract_bbox": "", "source_region_id": "groningen", - "source_size_bytes": 56284438, + "source_size_bytes": 56283884, "west": 6.166463, "south": 52.83734, "east": 7.230455, @@ -3080,7 +3080,7 @@ "pbf_url": "https://download.geofabrik.de/africa/guinea-latest.osm.pbf", "extract_bbox": "", "source_region_id": "guinea", - "source_size_bytes": 117338034, + "source_size_bytes": 117349976, "west": -16.85708, "south": 7.183332, "east": -7.627259, @@ -3144,7 +3144,7 @@ "pbf_url": "https://download.geofabrik.de/europe/france/guyane-latest.osm.pbf", "extract_bbox": "", "source_region_id": "guyane", - "source_size_bytes": 14337520, + "source_size_bytes": 14337782, "west": -54.62299, "south": 2.093117, "east": -50.8667, @@ -3192,7 +3192,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/hamburg-latest.osm.pbf", "extract_bbox": "", "source_region_id": "hamburg", - "source_size_bytes": 53553680, + "source_size_bytes": 53492242, "west": 7.967833, "south": 53.39183, "east": 10.33196, @@ -3304,7 +3304,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/herefordshire-latest.osm.pbf", "extract_bbox": "", "source_region_id": "herefordshire", - "source_size_bytes": 11121011, + "source_size_bytes": 11121021, "west": -3.142889, "south": 51.82618, "east": -2.338434, @@ -3336,7 +3336,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/hessen-latest.osm.pbf", "extract_bbox": "", "source_region_id": "hessen", - "source_size_bytes": 342389830, + "source_size_bytes": 342331550, "west": 7.768021, "south": 49.39321, "east": 10.24595, @@ -3384,7 +3384,7 @@ "pbf_url": "https://download.geofabrik.de/asia/china/hong-kong-latest.osm.pbf", "extract_bbox": "", "source_region_id": "hong-kong", - "source_size_bytes": 37355659, + "source_size_bytes": 37360296, "west": 113.813, "south": 22.13041, "east": 114.506, @@ -3512,7 +3512,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/british-columbia/interior-admreg-latest.osm.pbf", "extract_bbox": "", "source_region_id": "interior-admreg", - "source_size_bytes": 162474320, + "source_size_bytes": 162475009, "west": -128.8637, "south": 49.60359, "east": -118.7691, @@ -3576,7 +3576,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/british-columbia/island-admreg-latest.osm.pbf", "extract_bbox": "", "source_region_id": "island-admreg", - "source_size_bytes": 109519480, + "source_size_bytes": 109522211, "west": -129.3393, "south": 48.12648, "east": -122.9789, @@ -3640,7 +3640,7 @@ "pbf_url": "https://download.geofabrik.de/europe/italy/isole-latest.osm.pbf", "extract_bbox": "", "source_region_id": "isole", - "source_size_bytes": 213240103, + "source_size_bytes": 213229780, "west": 7.718453, "south": 35.07638, "east": 15.70887, @@ -3960,7 +3960,7 @@ "pbf_url": "https://download.geofabrik.de/europe/czech-republic/karlovarsky-latest.osm.pbf", "extract_bbox": "", "source_region_id": "karlovarsky", - "source_size_bytes": 30292505, + "source_size_bytes": 30287218, "west": 12.08477, "south": 49.88988, "east": 13.30247, @@ -4312,7 +4312,7 @@ "pbf_url": "https://download.geofabrik.de/africa/lesotho-latest.osm.pbf", "extract_bbox": "", "source_region_id": "lesotho", - "source_size_bytes": 126378278, + "source_size_bytes": 126377986, "west": 27.0092, "south": -30.68472, "east": 29.46393, @@ -4456,7 +4456,7 @@ "pbf_url": "https://download.geofabrik.de/europe/lithuania-latest.osm.pbf", "extract_bbox": "", "source_region_id": "lithuania", - "source_size_bytes": 221678623, + "source_size_bytes": 221700139, "west": 20.61859, "south": 53.89221, "east": 26.83873, @@ -4504,7 +4504,7 @@ "pbf_url": "https://download.geofabrik.de/europe/poland/lubelskie-latest.osm.pbf", "extract_bbox": "", "source_region_id": "lubelskie", - "source_size_bytes": 138015871, + "source_size_bytes": 137999252, "west": 21.60285, "south": 50.23654, "east": 24.16102, @@ -4616,7 +4616,7 @@ "pbf_url": "https://download.geofabrik.de/africa/malawi-latest.osm.pbf", "extract_bbox": "", "source_region_id": "malawi", - "source_size_bytes": 154350694, + "source_size_bytes": 154351369, "west": 32.66441, "south": -17.13324, "east": 35.92941, @@ -4664,7 +4664,7 @@ "pbf_url": "https://download.geofabrik.de/africa/mali-latest.osm.pbf", "extract_bbox": "", "source_region_id": "mali", - "source_size_bytes": 172864915, + "source_size_bytes": 172832349, "west": -12.24701, "south": 10.1176, "east": 4.330257, @@ -4696,7 +4696,7 @@ "pbf_url": "https://download.geofabrik.de/europe/malta-latest.osm.pbf", "extract_bbox": "", "source_region_id": "malta", - "source_size_bytes": 8833574, + "source_size_bytes": 8830250, "west": 14, "south": 35.51985, "east": 14.8561, @@ -4728,7 +4728,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/manitoba-latest.osm.pbf", "extract_bbox": "", "source_region_id": "manitoba", - "source_size_bytes": 206223487, + "source_size_bytes": 206226306, "west": -102.014, "south": 48.99056, "east": -88.12183, @@ -4872,7 +4872,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/merseyside-latest.osm.pbf", "extract_bbox": "", "source_region_id": "merseyside", - "source_size_bytes": 24840534, + "source_size_bytes": 24875188, "west": -3.342781, "south": 53.2854, "east": -2.575686, @@ -4888,7 +4888,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/mexico-latest.osm.pbf", "extract_bbox": "", "source_region_id": "mexico", - "source_size_bytes": 640418757, + "source_size_bytes": 640111576, "west": -132.4952, "south": 9.456709, "east": -85.49087, @@ -4904,7 +4904,7 @@ "pbf_url": "https://download.geofabrik.de/australia-oceania/micronesia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "micronesia", - "source_size_bytes": 1983794, + "source_size_bytes": 1983855, "west": 135.3124, "south": -1.147444, "east": 165.6345, @@ -4920,7 +4920,7 @@ "pbf_url": "https://download.geofabrik.de/europe/france/midi-pyrenees-latest.osm.pbf", "extract_bbox": "", "source_region_id": "midi-pyrenees", - "source_size_bytes": 359360321, + "source_size_bytes": 359373598, "west": -0.327537, "south": 42.56793, "east": 3.453264, @@ -4984,7 +4984,7 @@ "pbf_url": "https://download.geofabrik.de/asia/mongolia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "mongolia", - "source_size_bytes": 61836771, + "source_size_bytes": 61824423, "west": 87.70255, "south": 41.50035, "east": 120.0201, @@ -5032,7 +5032,7 @@ "pbf_url": "https://download.geofabrik.de/africa/morocco-latest.osm.pbf", "extract_bbox": "", "source_region_id": "morocco", - "source_size_bytes": 243013433, + "source_size_bytes": 243009765, "west": -18.1835, "south": 20.40373, "east": -0.993576, @@ -5048,7 +5048,7 @@ "pbf_url": "https://download.geofabrik.de/africa/mozambique-latest.osm.pbf", "extract_bbox": "", "source_region_id": "mozambique", - "source_size_bytes": 254690794, + "source_size_bytes": 254644299, "west": 30.20742, "south": -26.93837, "east": 42.53489, @@ -5144,7 +5144,7 @@ "pbf_url": "https://download.geofabrik.de/europe/spain/navarra-latest.osm.pbf", "extract_bbox": "", "source_region_id": "navarra", - "source_size_bytes": 37150781, + "source_size_bytes": 37148539, "west": -2.502308, "south": 41.90611, "east": -0.716515, @@ -5208,7 +5208,7 @@ "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/new-south-wales-latest.osm.pbf", "extract_bbox": "", "source_region_id": "new-south-wales", - "source_size_bytes": 265040388, + "source_size_bytes": 265069908, "west": 140.9948, "south": -37.75984, "east": 160.0747, @@ -5240,7 +5240,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/newfoundland-and-labrador-latest.osm.pbf", "extract_bbox": "", "source_region_id": "newfoundland-and-labrador", - "source_size_bytes": 259096612, + "source_size_bytes": 259095996, "west": -67.87079, "south": 44.45787, "east": -44.17684, @@ -5304,7 +5304,7 @@ "pbf_url": "https://download.geofabrik.de/africa/niger-latest.osm.pbf", "extract_bbox": "", "source_region_id": "niger", - "source_size_bytes": 76258977, + "source_size_bytes": 76255025, "west": 0.119721, "south": 11.68684, "east": 16.05605, @@ -5320,7 +5320,7 @@ "pbf_url": "https://download.geofabrik.de/africa/nigeria-latest.osm.pbf", "extract_bbox": "", "source_region_id": "nigeria", - "source_size_bytes": 711326092, + "source_size_bytes": 711343875, "west": 2.664528, "south": 2.674022, "east": 14.68057, @@ -5368,7 +5368,7 @@ "pbf_url": "https://download.geofabrik.de/europe/netherlands/noord-brabant-latest.osm.pbf", "extract_bbox": "", "source_region_id": "noord-brabant", - "source_size_bytes": 206300729, + "source_size_bytes": 206293093, "west": 4.189152, "south": 51.21808, "east": 6.049354, @@ -5432,7 +5432,7 @@ "pbf_url": "https://download.geofabrik.de/europe/norway/nord-norge-latest.osm.pbf", "extract_bbox": "", "source_region_id": "nord-norge", - "source_size_bytes": 405319114, + "source_size_bytes": 405321962, "west": 7.840204, "south": 64.93917, "east": 33.63965, @@ -5496,7 +5496,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/norfolk-latest.osm.pbf", "extract_bbox": "", "source_region_id": "norfolk", - "source_size_bytes": 46586050, + "source_size_bytes": 46587557, "west": 0.15447, "south": 52.35478, "east": 1.992789, @@ -5688,7 +5688,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/northwest-territories-latest.osm.pbf", "extract_bbox": "", "source_region_id": "northwest-territories", - "source_size_bytes": 425522084, + "source_size_bytes": 425522681, "west": -136.6974, "south": 59.9896, "east": -101.976, @@ -5768,7 +5768,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/bayern/oberbayern-latest.osm.pbf", "extract_bbox": "", "source_region_id": "oberbayern", - "source_size_bytes": 255587391, + "source_size_bytes": 255614859, "west": 10.71268, "south": 47.3913, "east": 13.10973, @@ -5832,7 +5832,7 @@ "pbf_url": "https://download.geofabrik.de/europe/czech-republic/olomoucky-latest.osm.pbf", "extract_bbox": "", "source_region_id": "olomoucky", - "source_size_bytes": 57314056, + "source_size_bytes": 57299678, "west": 16.70909, "south": 49.26735, "east": 17.92035, @@ -5848,7 +5848,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/ontario-latest.osm.pbf", "extract_bbox": "-95.15965,41.66009,-84.734815,49.584175", "source_region_id": "ontario", - "source_size_bytes": 966741555, + "source_size_bytes": 966871523, "west": -95.15965, "south": 41.66009, "east": -84.734815, @@ -5864,7 +5864,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/ontario-latest.osm.pbf", "extract_bbox": "-84.734815,41.66009,-74.30998,49.584175", "source_region_id": "ontario", - "source_size_bytes": 966741555, + "source_size_bytes": 966871523, "west": -84.734815, "south": 41.66009, "east": -74.30998, @@ -5880,7 +5880,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/ontario-latest.osm.pbf", "extract_bbox": "-95.15965,49.584175,-84.734815,57.50826", "source_region_id": "ontario", - "source_size_bytes": 966741555, + "source_size_bytes": 966871523, "west": -95.15965, "south": 49.584175, "east": -84.734815, @@ -5896,7 +5896,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/ontario-latest.osm.pbf", "extract_bbox": "-84.734815,49.584175,-74.30998,57.50826", "source_region_id": "ontario", - "source_size_bytes": 966741555, + "source_size_bytes": 966871523, "west": -84.734815, "south": 49.584175, "east": -74.30998, @@ -5912,7 +5912,7 @@ "pbf_url": "https://download.geofabrik.de/europe/poland/opolskie-latest.osm.pbf", "extract_bbox": "", "source_region_id": "opolskie", - "source_size_bytes": 54141566, + "source_size_bytes": 54146638, "west": 16.9015, "south": 49.95766, "east": 18.70219, @@ -5960,7 +5960,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/oxfordshire-latest.osm.pbf", "extract_bbox": "", "source_region_id": "oxfordshire", - "source_size_bytes": 27695965, + "source_size_bytes": 27699378, "west": -1.719533, "south": 51.46057, "east": -0.86985, @@ -6072,7 +6072,7 @@ "pbf_url": "https://download.geofabrik.de/south-america/paraguay-latest.osm.pbf", "extract_bbox": "", "source_region_id": "paraguay", - "source_size_bytes": 154077137, + "source_size_bytes": 154074362, "west": -62.69475, "south": -27.65675, "east": -54.20176, @@ -6120,7 +6120,7 @@ "pbf_url": "https://download.geofabrik.de/south-america/peru-latest.osm.pbf", "extract_bbox": "", "source_region_id": "peru", - "source_size_bytes": 254406256, + "source_size_bytes": 254384773, "west": -86.02509, "south": -20.30552, "east": -68.55439, @@ -6184,7 +6184,7 @@ "pbf_url": "https://download.geofabrik.de/europe/czech-republic/plzensky-latest.osm.pbf", "extract_bbox": "", "source_region_id": "plzensky", - "source_size_bytes": 70891823, + "source_size_bytes": 70900853, "west": 12.38887, "south": 48.93387, "east": 13.84247, @@ -6232,7 +6232,7 @@ "pbf_url": "https://download.geofabrik.de/europe/france/poitou-charentes-latest.osm.pbf", "extract_bbox": "", "source_region_id": "poitou-charentes", - "source_size_bytes": 230224542, + "source_size_bytes": 230217105, "west": -1.898565, "south": 45.0868, "east": 1.214991, @@ -6440,7 +6440,7 @@ "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/queensland-latest.osm.pbf", "extract_bbox": "", "source_region_id": "queensland", - "source_size_bytes": 196417783, + "source_size_bytes": 196390507, "west": 137.9902, "south": -29.1831, "east": 154.2005, @@ -6584,7 +6584,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/sachsen-anhalt-latest.osm.pbf", "extract_bbox": "", "source_region_id": "sachsen-anhalt", - "source_size_bytes": 173104810, + "source_size_bytes": 173061268, "west": 10.54725, "south": 50.92887, "east": 13.21268, @@ -6696,7 +6696,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/scotland-latest.osm.pbf", "extract_bbox": "", "source_region_id": "scotland", - "source_size_bytes": 323319923, + "source_size_bytes": 323264992, "west": -14.86155, "south": 54.54001, "east": 0.216055, @@ -6712,7 +6712,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "90.65133,-11.60655,100.725404,1.78722", "source_region_id": "sea", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "west": 90.65133, "south": -11.60655, "east": 100.725404, @@ -6728,7 +6728,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "100.725404,-11.60655,110.799478,1.78722", "source_region_id": "sea", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "west": 100.725404, "south": -11.60655, "east": 110.799478, @@ -6744,7 +6744,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "110.799478,-11.60655,120.873552,1.78722", "source_region_id": "sea", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "west": 110.799478, "south": -11.60655, "east": 120.873552, @@ -6760,7 +6760,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "120.873552,-11.60655,130.947626,1.78722", "source_region_id": "sea", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "west": 120.873552, "south": -11.60655, "east": 130.947626, @@ -6776,7 +6776,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "130.947626,-11.60655,141.0217,1.78722", "source_region_id": "sea", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "west": 130.947626, "south": -11.60655, "east": 141.0217, @@ -6792,7 +6792,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "90.65133,1.78722,100.725404,15.18099", "source_region_id": "sea", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "west": 90.65133, "south": 1.78722, "east": 100.725404, @@ -6808,7 +6808,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "100.725404,1.78722,110.799478,15.18099", "source_region_id": "sea", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "west": 100.725404, "south": 1.78722, "east": 110.799478, @@ -6824,7 +6824,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "110.799478,1.78722,120.873552,15.18099", "source_region_id": "sea", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "west": 110.799478, "south": 1.78722, "east": 120.873552, @@ -6840,7 +6840,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "120.873552,1.78722,130.947626,15.18099", "source_region_id": "sea", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "west": 120.873552, "south": 1.78722, "east": 130.947626, @@ -6856,7 +6856,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "130.947626,1.78722,141.0217,15.18099", "source_region_id": "sea", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "west": 130.947626, "south": 1.78722, "east": 141.0217, @@ -6872,7 +6872,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "90.65133,15.18099,100.725404,28.57476", "source_region_id": "sea", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "west": 90.65133, "south": 15.18099, "east": 100.725404, @@ -6888,7 +6888,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "100.725404,15.18099,110.799478,28.57476", "source_region_id": "sea", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "west": 100.725404, "south": 15.18099, "east": 110.799478, @@ -6904,7 +6904,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "110.799478,15.18099,120.873552,28.57476", "source_region_id": "sea", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "west": 110.799478, "south": 15.18099, "east": 120.873552, @@ -6920,7 +6920,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "120.873552,15.18099,130.947626,28.57476", "source_region_id": "sea", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "west": 120.873552, "south": 15.18099, "east": 130.947626, @@ -6936,7 +6936,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "130.947626,15.18099,141.0217,28.57476", "source_region_id": "sea", - "source_size_bytes": 3634443322, + "source_size_bytes": 3634737562, "west": 130.947626, "south": 15.18099, "east": 141.0217, @@ -6952,7 +6952,7 @@ "pbf_url": "https://download.geofabrik.de/africa/senegal-and-gambia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "senegal-and-gambia", - "source_size_bytes": 105020650, + "source_size_bytes": 105020105, "west": -19.85623, "south": 12.01511, "east": -11.33595, @@ -6984,7 +6984,7 @@ "pbf_url": "https://download.geofabrik.de/africa/seychelles-latest.osm.pbf", "extract_bbox": "", "source_region_id": "seychelles", - "source_size_bytes": 2755473, + "source_size_bytes": 2755525, "west": 45.68495, "south": -12.55844, "east": 57.57433, @@ -7080,7 +7080,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/shropshire-latest.osm.pbf", "extract_bbox": "", "source_region_id": "shropshire", - "source_size_bytes": 24965044, + "source_size_bytes": 24968736, "west": -3.235577, "south": 52.30616, "east": -2.23354, @@ -7336,7 +7336,7 @@ "pbf_url": "https://download.geofabrik.de/asia/south-korea-latest.osm.pbf", "extract_bbox": "", "source_region_id": "south-korea", - "source_size_bytes": 284036989, + "source_size_bytes": 283988295, "west": 124.3188, "south": 32.36076, "east": 132.3386, @@ -7352,7 +7352,7 @@ "pbf_url": "https://download.geofabrik.de/africa/south-sudan-latest.osm.pbf", "extract_bbox": "", "source_region_id": "south-sudan", - "source_size_bytes": 138105431, + "source_size_bytes": 138119208, "west": 23.42491, "south": 3.461547, "east": 35.96298, @@ -7368,7 +7368,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/south-yorkshire-latest.osm.pbf", "extract_bbox": "", "source_region_id": "south-yorkshire", - "source_size_bytes": 29796720, + "source_size_bytes": 29780898, "west": -1.825872, "south": 53.29889, "east": -0.852889, @@ -7448,7 +7448,7 @@ "pbf_url": "https://download.geofabrik.de/europe/czech-republic/stredocesky-latest.osm.pbf", "extract_bbox": "", "source_region_id": "stredocesky", - "source_size_bytes": 179937601, + "source_size_bytes": 179906050, "west": 13.39579, "south": 49.50088, "east": 15.53613, @@ -7704,7 +7704,7 @@ "pbf_url": "https://download.geofabrik.de/europe/norway/svalbard-janmayen-latest.osm.pbf", "extract_bbox": "", "source_region_id": "svalbard-janmayen", - "source_size_bytes": 2721428, + "source_size_bytes": 2724974, "west": -10.49539, "south": 70.26127, "east": 35.34074, @@ -7720,7 +7720,7 @@ "pbf_url": "https://download.geofabrik.de/africa/swaziland-latest.osm.pbf", "extract_bbox": "", "source_region_id": "swaziland", - "source_size_bytes": 30568840, + "source_size_bytes": 30568908, "west": 30.78575, "south": -27.31826, "east": 32.13698, @@ -7816,7 +7816,7 @@ "pbf_url": "https://download.geofabrik.de/asia/tajikistan-latest.osm.pbf", "extract_bbox": "", "source_region_id": "tajikistan", - "source_size_bytes": 47980031, + "source_size_bytes": 47991472, "west": 67.3201, "south": 36.66374, "east": 75.16571, @@ -7880,7 +7880,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/thueringen-latest.osm.pbf", "extract_bbox": "", "source_region_id": "thueringen", - "source_size_bytes": 158829798, + "source_size_bytes": 158836284, "west": 9.863176, "south": 50.19971, "east": 12.66106, @@ -7992,7 +7992,7 @@ "pbf_url": "https://download.geofabrik.de/europe/norway/trondelag-latest.osm.pbf", "extract_bbox": "", "source_region_id": "trondelag", - "source_size_bytes": 182830123, + "source_size_bytes": 182831545, "west": 5.790873, "south": 62.25533, "east": 14.33543, @@ -8008,7 +8008,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/baden-wuerttemberg/tuebingen-regbez-latest.osm.pbf", "extract_bbox": "", "source_region_id": "tuebingen-regbez", - "source_size_bytes": 124954116, + "source_size_bytes": 124939937, "west": 8.645593, "south": 47.53246, "east": 10.27309, @@ -8024,7 +8024,7 @@ "pbf_url": "https://download.geofabrik.de/africa/tunisia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "tunisia", - "source_size_bytes": 83889516, + "source_size_bytes": 83896888, "west": 7.513961, "south": 30.20864, "east": 12.068, @@ -8120,7 +8120,7 @@ "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", "extract_bbox": "22.13264,44.00862,28.167797,48.19756", "source_region_id": "ukraine", - "source_size_bytes": 870676344, + "source_size_bytes": 870539197, "west": 22.13264, "south": 44.00862, "east": 28.167797, @@ -8136,7 +8136,7 @@ "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", "extract_bbox": "28.167797,44.00862,34.202953,48.19756", "source_region_id": "ukraine", - "source_size_bytes": 870676344, + "source_size_bytes": 870539197, "west": 28.167797, "south": 44.00862, "east": 34.202953, @@ -8152,7 +8152,7 @@ "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", "extract_bbox": "34.202953,44.00862,40.23811,48.19756", "source_region_id": "ukraine", - "source_size_bytes": 870676344, + "source_size_bytes": 870539197, "west": 34.202953, "south": 44.00862, "east": 40.23811, @@ -8168,7 +8168,7 @@ "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", "extract_bbox": "22.13264,48.19756,28.167797,52.3865", "source_region_id": "ukraine", - "source_size_bytes": 870676344, + "source_size_bytes": 870539197, "west": 22.13264, "south": 48.19756, "east": 28.167797, @@ -8184,7 +8184,7 @@ "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", "extract_bbox": "28.167797,48.19756,34.202953,52.3865", "source_region_id": "ukraine", - "source_size_bytes": 870676344, + "source_size_bytes": 870539197, "west": 28.167797, "south": 48.19756, "east": 34.202953, @@ -8200,7 +8200,7 @@ "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", "extract_bbox": "34.202953,48.19756,40.23811,52.3865", "source_region_id": "ukraine", - "source_size_bytes": 870676344, + "source_size_bytes": 870539197, "west": 34.202953, "south": 48.19756, "east": 40.23811, @@ -8264,7 +8264,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "170.9033,15.92097,180,30.18784", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": 170.9033, "south": 15.92097, "east": 180, @@ -8280,7 +8280,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-180,15.92097,-171.636566,30.18784", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -180, "south": 15.92097, "east": -171.636566, @@ -8296,7 +8296,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-171.636566,15.92097,-154.176431,30.18784", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -171.636566, "south": 15.92097, "east": -154.176431, @@ -8312,7 +8312,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-154.176431,15.92097,-136.716297,30.18784", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -154.176431, "south": 15.92097, "east": -136.716297, @@ -8328,7 +8328,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-136.716297,15.92097,-119.256163,30.18784", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -136.716297, "south": 15.92097, "east": -119.256163, @@ -8344,7 +8344,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-119.256163,15.92097,-101.796029,30.18784", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -119.256163, "south": 15.92097, "east": -101.796029, @@ -8360,7 +8360,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-101.796029,15.92097,-84.335894,30.18784", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -101.796029, "south": 15.92097, "east": -84.335894, @@ -8376,7 +8376,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-84.335894,15.92097,-66.87576,30.18784", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -84.335894, "south": 15.92097, "east": -66.87576, @@ -8392,7 +8392,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "170.9033,30.18784,180,44.45471", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": 170.9033, "south": 30.18784, "east": 180, @@ -8408,7 +8408,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-180,30.18784,-171.636566,44.45471", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -180, "south": 30.18784, "east": -171.636566, @@ -8424,7 +8424,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-171.636566,30.18784,-154.176431,44.45471", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -171.636566, "south": 30.18784, "east": -154.176431, @@ -8440,7 +8440,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-154.176431,30.18784,-136.716297,44.45471", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -154.176431, "south": 30.18784, "east": -136.716297, @@ -8456,7 +8456,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-136.716297,30.18784,-119.256163,44.45471", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -136.716297, "south": 30.18784, "east": -119.256163, @@ -8472,7 +8472,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-119.256163,30.18784,-101.796029,44.45471", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -119.256163, "south": 30.18784, "east": -101.796029, @@ -8488,7 +8488,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-101.796029,30.18784,-84.335894,44.45471", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -101.796029, "south": 30.18784, "east": -84.335894, @@ -8504,7 +8504,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-84.335894,30.18784,-66.87576,44.45471", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -84.335894, "south": 30.18784, "east": -66.87576, @@ -8520,7 +8520,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "170.9033,44.45471,180,58.72158", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": 170.9033, "south": 44.45471, "east": 180, @@ -8536,7 +8536,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-180,44.45471,-171.636566,58.72158", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -180, "south": 44.45471, "east": -171.636566, @@ -8552,7 +8552,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-171.636566,44.45471,-154.176431,58.72158", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -171.636566, "south": 44.45471, "east": -154.176431, @@ -8568,7 +8568,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-154.176431,44.45471,-136.716297,58.72158", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -154.176431, "south": 44.45471, "east": -136.716297, @@ -8584,7 +8584,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-136.716297,44.45471,-119.256163,58.72158", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -136.716297, "south": 44.45471, "east": -119.256163, @@ -8600,7 +8600,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-119.256163,44.45471,-101.796029,58.72158", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -119.256163, "south": 44.45471, "east": -101.796029, @@ -8616,7 +8616,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-101.796029,44.45471,-84.335894,58.72158", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -101.796029, "south": 44.45471, "east": -84.335894, @@ -8632,7 +8632,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-84.335894,44.45471,-66.87576,58.72158", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -84.335894, "south": 44.45471, "east": -66.87576, @@ -8648,7 +8648,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "170.9033,58.72158,180,72.98845", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": 170.9033, "south": 58.72158, "east": 180, @@ -8664,7 +8664,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-180,58.72158,-171.636566,72.98845", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -180, "south": 58.72158, "east": -171.636566, @@ -8680,7 +8680,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-171.636566,58.72158,-154.176431,72.98845", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -171.636566, "south": 58.72158, "east": -154.176431, @@ -8696,7 +8696,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-154.176431,58.72158,-136.716297,72.98845", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -154.176431, "south": 58.72158, "east": -136.716297, @@ -8712,7 +8712,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-136.716297,58.72158,-119.256163,72.98845", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -136.716297, "south": 58.72158, "east": -119.256163, @@ -8728,7 +8728,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-119.256163,58.72158,-101.796029,72.98845", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -119.256163, "south": 58.72158, "east": -101.796029, @@ -8744,7 +8744,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-101.796029,58.72158,-84.335894,72.98845", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -101.796029, "south": 58.72158, "east": -84.335894, @@ -8760,7 +8760,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-latest.osm.pbf", "extract_bbox": "-84.335894,58.72158,-66.87576,72.98845", "source_region_id": "us", - "source_size_bytes": 12048136856, + "source_size_bytes": 12049130025, "west": -84.335894, "south": 58.72158, "east": -66.87576, @@ -8776,7 +8776,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-104.0588,35.98507,-98.170403,40.459093", "source_region_id": "us-midwest", - "source_size_bytes": 2474364429, + "source_size_bytes": 2474124802, "west": -104.0588, "south": 35.98507, "east": -98.170403, @@ -8792,7 +8792,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-98.170403,35.98507,-92.282005,40.459093", "source_region_id": "us-midwest", - "source_size_bytes": 2474364429, + "source_size_bytes": 2474124802, "west": -98.170403, "south": 35.98507, "east": -92.282005, @@ -8808,7 +8808,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-92.282005,35.98507,-86.393608,40.459093", "source_region_id": "us-midwest", - "source_size_bytes": 2474364429, + "source_size_bytes": 2474124802, "west": -92.282005, "south": 35.98507, "east": -86.393608, @@ -8824,7 +8824,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-86.393608,35.98507,-80.50521,40.459093", "source_region_id": "us-midwest", - "source_size_bytes": 2474364429, + "source_size_bytes": 2474124802, "west": -86.393608, "south": 35.98507, "east": -80.50521, @@ -8840,7 +8840,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-104.0588,40.459093,-98.170403,44.933117", "source_region_id": "us-midwest", - "source_size_bytes": 2474364429, + "source_size_bytes": 2474124802, "west": -104.0588, "south": 40.459093, "east": -98.170403, @@ -8856,7 +8856,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-98.170403,40.459093,-92.282005,44.933117", "source_region_id": "us-midwest", - "source_size_bytes": 2474364429, + "source_size_bytes": 2474124802, "west": -98.170403, "south": 40.459093, "east": -92.282005, @@ -8872,7 +8872,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-92.282005,40.459093,-86.393608,44.933117", "source_region_id": "us-midwest", - "source_size_bytes": 2474364429, + "source_size_bytes": 2474124802, "west": -92.282005, "south": 40.459093, "east": -86.393608, @@ -8888,7 +8888,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-86.393608,40.459093,-80.50521,44.933117", "source_region_id": "us-midwest", - "source_size_bytes": 2474364429, + "source_size_bytes": 2474124802, "west": -86.393608, "south": 40.459093, "east": -80.50521, @@ -8904,7 +8904,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-104.0588,44.933117,-98.170403,49.40714", "source_region_id": "us-midwest", - "source_size_bytes": 2474364429, + "source_size_bytes": 2474124802, "west": -104.0588, "south": 44.933117, "east": -98.170403, @@ -8920,7 +8920,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-98.170403,44.933117,-92.282005,49.40714", "source_region_id": "us-midwest", - "source_size_bytes": 2474364429, + "source_size_bytes": 2474124802, "west": -98.170403, "south": 44.933117, "east": -92.282005, @@ -8936,7 +8936,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-92.282005,44.933117,-86.393608,49.40714", "source_region_id": "us-midwest", - "source_size_bytes": 2474364429, + "source_size_bytes": 2474124802, "west": -92.282005, "south": 44.933117, "east": -86.393608, @@ -8952,7 +8952,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-86.393608,44.933117,-80.50521,49.40714", "source_region_id": "us-midwest", - "source_size_bytes": 2474364429, + "source_size_bytes": 2474124802, "west": -86.393608, "south": 44.933117, "east": -80.50521, @@ -9064,7 +9064,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-pacific-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us-pacific", - "source_size_bytes": 170656727, + "source_size_bytes": 170650983, "west": 170.9912, "south": 15.92097, "east": -129.7998, @@ -9080,7 +9080,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-106.6494,24.20031,-100.792802,29.682327", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -106.6494, "south": 24.20031, "east": -100.792802, @@ -9096,7 +9096,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-100.792802,24.20031,-94.936203,29.682327", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -100.792802, "south": 24.20031, "east": -94.936203, @@ -9112,7 +9112,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-94.936203,24.20031,-89.079605,29.682327", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -94.936203, "south": 24.20031, "east": -89.079605, @@ -9128,7 +9128,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-89.079605,24.20031,-83.223007,29.682327", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -89.079605, "south": 24.20031, "east": -83.223007, @@ -9144,7 +9144,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-83.223007,24.20031,-77.366408,29.682327", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -83.223007, "south": 24.20031, "east": -77.366408, @@ -9160,7 +9160,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-77.366408,24.20031,-71.50981,29.682327", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -77.366408, "south": 24.20031, "east": -71.50981, @@ -9176,7 +9176,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-106.6494,29.682327,-100.792802,35.164343", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -106.6494, "south": 29.682327, "east": -100.792802, @@ -9192,7 +9192,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-100.792802,29.682327,-94.936203,35.164343", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -100.792802, "south": 29.682327, "east": -94.936203, @@ -9208,7 +9208,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-94.936203,29.682327,-89.079605,35.164343", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -94.936203, "south": 29.682327, "east": -89.079605, @@ -9224,7 +9224,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-89.079605,29.682327,-83.223007,35.164343", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -89.079605, "south": 29.682327, "east": -83.223007, @@ -9240,7 +9240,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-83.223007,29.682327,-77.366408,35.164343", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -83.223007, "south": 29.682327, "east": -77.366408, @@ -9256,7 +9256,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-77.366408,29.682327,-71.50981,35.164343", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -77.366408, "south": 29.682327, "east": -71.50981, @@ -9272,7 +9272,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-106.6494,35.164343,-100.792802,40.64636", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -106.6494, "south": 35.164343, "east": -100.792802, @@ -9288,7 +9288,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-100.792802,35.164343,-94.936203,40.64636", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -100.792802, "south": 35.164343, "east": -94.936203, @@ -9304,7 +9304,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-94.936203,35.164343,-89.079605,40.64636", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -94.936203, "south": 35.164343, "east": -89.079605, @@ -9320,7 +9320,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-89.079605,35.164343,-83.223007,40.64636", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -89.079605, "south": 35.164343, "east": -83.223007, @@ -9336,7 +9336,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-83.223007,35.164343,-77.366408,40.64636", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -83.223007, "south": 35.164343, "east": -77.366408, @@ -9352,7 +9352,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-south-latest.osm.pbf", "extract_bbox": "-77.366408,35.164343,-71.50981,40.64636", "source_region_id": "us-south", - "source_size_bytes": 4093737233, + "source_size_bytes": 4093292386, "west": -77.366408, "south": 35.164343, "east": -71.50981, @@ -9560,7 +9560,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/alabama-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/alabama", - "source_size_bytes": 146832440, + "source_size_bytes": 146815388, "west": -88.48389, "south": 29.95494, "east": -84.88336, @@ -9672,7 +9672,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/district-of-columbia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/district-of-columbia", - "source_size_bytes": 20904984, + "source_size_bytes": 20905068, "west": -77.1201, "south": 38.79099, "east": -76.90906, @@ -9688,7 +9688,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/florida-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/florida", - "source_size_bytes": 653296219, + "source_size_bytes": 653234035, "west": -88.46896, "south": 24.20031, "east": -79.43702, @@ -9720,7 +9720,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/hawaii-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/hawaii", - "source_size_bytes": 26483966, + "source_size_bytes": 26489887, "west": -179.5994, "south": 15.92097, "east": -142.6511, @@ -9768,7 +9768,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/indiana-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/indiana", - "source_size_bytes": 196397277, + "source_size_bytes": 196374308, "west": -88.10327, "south": 37.76911, "east": -84.78042, @@ -9832,7 +9832,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/louisiana-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/louisiana", - "source_size_bytes": 145337159, + "source_size_bytes": 145346974, "west": -94.04376, "south": 28.14452, "east": -88.66684, @@ -9848,7 +9848,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/maine-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/maine", - "source_size_bytes": 90385082, + "source_size_bytes": 90382561, "west": -71.08891, "south": 42.85443, "east": -66.87164, @@ -9880,7 +9880,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/massachusetts-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/massachusetts", - "source_size_bytes": 308857402, + "source_size_bytes": 308879781, "west": -73.51096, "south": 40.88291, "east": -68.73438, @@ -9896,7 +9896,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/michigan-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/michigan", - "source_size_bytes": 310142499, + "source_size_bytes": 310162098, "west": -90.41981, "south": 41.69439, "east": -82.06913, @@ -9960,7 +9960,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/montana-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/montana", - "source_size_bytes": 99483376, + "source_size_bytes": 99483103, "west": -116.0518, "south": 44.35556, "east": -104.0355, @@ -10008,7 +10008,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/new-hampshire-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/new-hampshire", - "source_size_bytes": 70718398, + "source_size_bytes": 70722377, "west": -72.5588, "south": 42.69669, "east": -70.48692, @@ -10056,7 +10056,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/new-york-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/new-york", - "source_size_bytes": 494029499, + "source_size_bytes": 494066404, "west": -79.76483, "south": 40.43922, "east": -71.6608, @@ -10088,7 +10088,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/north-dakota-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/north-dakota", - "source_size_bytes": 127107036, + "source_size_bytes": 127113855, "west": -104.053, "south": 45.93448, "east": -96.55292, @@ -10104,7 +10104,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/ohio-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/ohio", - "source_size_bytes": 320387909, + "source_size_bytes": 320415349, "west": -84.8219, "south": 38.40076, "east": -80.50521, @@ -10152,7 +10152,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/pennsylvania-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/pennsylvania", - "source_size_bytes": 343253730, + "source_size_bytes": 343211456, "west": -80.52275, "south": 39.6644, "east": -74.68761, @@ -10184,7 +10184,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/rhode-island-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/rhode-island", - "source_size_bytes": 51800671, + "source_size_bytes": 51806151, "west": -71.91456, "south": 40.9992, "east": -71.06369, @@ -10232,7 +10232,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/tennessee-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/tennessee", - "source_size_bytes": 186730083, + "source_size_bytes": 186694392, "west": -90.31329, "south": 34.98269, "east": -81.64416, @@ -10264,7 +10264,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/us-virgin-islands-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/us-virgin-islands", - "source_size_bytes": 3114441, + "source_size_bytes": 3114437, "west": -65.17502, "south": 17.28246, "east": -63.95554, @@ -10312,7 +10312,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/virginia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/virginia", - "source_size_bytes": 425797998, + "source_size_bytes": 425819810, "west": -83.67841, "south": 36.53798, "east": -74.29751, @@ -10328,7 +10328,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/washington-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/washington", - "source_size_bytes": 359544747, + "source_size_bytes": 359484790, "west": -126.7423, "south": 45.53882, "east": -116.9115, @@ -10376,7 +10376,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/wyoming-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/wyoming", - "source_size_bytes": 92610064, + "source_size_bytes": 92632160, "west": -111.0576, "south": 40.98339, "east": -103.9413, @@ -10392,7 +10392,7 @@ "pbf_url": "https://download.geofabrik.de/europe/czech-republic/ustecky-latest.osm.pbf", "extract_bbox": "", "source_region_id": "ustecky", - "source_size_bytes": 111230937, + "source_size_bytes": 111254267, "west": 12.93716, "south": 50.07552, "east": 14.66589, @@ -10408,7 +10408,7 @@ "pbf_url": "https://download.geofabrik.de/europe/netherlands/utrecht-latest.osm.pbf", "extract_bbox": "", "source_region_id": "utrecht", - "source_size_bytes": 97970933, + "source_size_bytes": 97984204, "west": 4.790849, "south": 51.85615, "east": 5.62829, @@ -10488,7 +10488,7 @@ "pbf_url": "https://download.geofabrik.de/europe/norway/vestlandet-latest.osm.pbf", "extract_bbox": "", "source_region_id": "vestlandet", - "source_size_bytes": 256496198, + "source_size_bytes": 256509989, "west": 2.32908, "south": 57.63122, "east": 9.374655, @@ -10504,7 +10504,7 @@ "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/victoria-latest.osm.pbf", "extract_bbox": "", "source_region_id": "victoria", - "source_size_bytes": 238877854, + "source_size_bytes": 238943402, "west": 140.9574, "south": -39.23224, "east": 150.4683, @@ -10552,7 +10552,7 @@ "pbf_url": "https://download.geofabrik.de/europe/czech-republic/vysocina-latest.osm.pbf", "extract_bbox": "", "source_region_id": "vysocina", - "source_size_bytes": 72975464, + "source_size_bytes": 72965446, "west": 14.88686, "south": 48.9362, "east": 16.41962, @@ -10568,7 +10568,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/wales-latest.osm.pbf", "extract_bbox": "", "source_region_id": "wales", - "source_size_bytes": 145556615, + "source_size_bytes": 145537357, "west": -6.183241, "south": 51.03997, "east": -2.648042, @@ -10600,7 +10600,7 @@ "pbf_url": "https://download.geofabrik.de/europe/poland/warminsko-mazurskie-latest.osm.pbf", "extract_bbox": "", "source_region_id": "warminsko-mazurskie", - "source_size_bytes": 84144635, + "source_size_bytes": 84145995, "west": 19.11666, "south": 53.12575, "east": 22.82058, @@ -10616,7 +10616,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/warwickshire-latest.osm.pbf", "extract_bbox": "", "source_region_id": "warwickshire", - "source_size_bytes": 24184472, + "source_size_bytes": 24184077, "west": -1.963, "south": 51.95471, "east": -1.17115, @@ -10648,7 +10648,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/west-sussex-latest.osm.pbf", "extract_bbox": "", "source_region_id": "west-sussex", - "source_size_bytes": 48927707, + "source_size_bytes": 48942746, "west": -0.956244, "south": 50.70685, "east": 0.041342, @@ -10664,7 +10664,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/west-yorkshire-latest.osm.pbf", "extract_bbox": "", "source_region_id": "west-yorkshire", - "source_size_bytes": 53005752, + "source_size_bytes": 53028092, "west": -2.175545, "south": 53.51822, "east": -1.196, @@ -10696,7 +10696,7 @@ "pbf_url": "https://download.geofabrik.de/asia/india/western-zone-latest.osm.pbf", "extract_bbox": "", "source_region_id": "western-zone", - "source_size_bytes": 218524741, + "source_size_bytes": 218493679, "west": 67.67457, "south": 14.38929, "east": 80.91362, @@ -10728,7 +10728,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/wiltshire-latest.osm.pbf", "extract_bbox": "", "source_region_id": "wiltshire", - "source_size_bytes": 33892258, + "source_size_bytes": 33891991, "west": -2.363253, "south": 50.9465, "east": -1.488811, @@ -10792,7 +10792,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/yukon-latest.osm.pbf", "extract_bbox": "", "source_region_id": "yukon", - "source_size_bytes": 74086339, + "source_size_bytes": 74086344, "west": -141.2389, "south": 59.99739, "east": -123.8021, @@ -10920,7 +10920,7 @@ "pbf_url": "https://download.geofabrik.de/europe/netherlands/zuid-holland-latest.osm.pbf", "extract_bbox": "", "source_region_id": "zuid-holland", - "source_size_bytes": 209967074, + "source_size_bytes": 210004796, "west": 3.345328, "south": 51.64252, "east": 5.032393, From fc88891d6a0f21720de320f061ed94e9e66476a2 Mon Sep 17 00:00:00 2001 From: Occumed79 Date: Wed, 29 Jul 2026 00:01:49 -0700 Subject: [PATCH 6/8] Audit published split release assets --- scripts/report-published-split-assets.mjs | 87 +++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 scripts/report-published-split-assets.mjs diff --git a/scripts/report-published-split-assets.mjs b/scripts/report-published-split-assets.mjs new file mode 100644 index 00000000..3ca00bd6 --- /dev/null +++ b/scripts/report-published-split-assets.mjs @@ -0,0 +1,87 @@ +#!/usr/bin/env node + +import fs from 'node:fs/promises'; + +const [repository = process.env.GITHUB_REPOSITORY, tag = 'occumed-world-v1', jsonOutput = 'audit/published-split-assets.json', markdownOutput = 'audit/published-split-assets.md'] = process.argv.slice(2); +if (!repository) throw new Error('Repository is required.'); + +const token = process.env.GITHUB_TOKEN || ''; +const headers = { + Accept: 'application/vnd.github+json', + 'X-GitHub-Api-Version': '2022-11-28', + ...(token ? { Authorization: `Bearer ${token}` } : {}) +}; + +async function githubJson(url) { + const response = await fetch(url, { headers }); + if (!response.ok) throw new Error(`GitHub API ${response.status}: ${await response.text()}`); + return response.json(); +} + +const release = await githubJson(`https://api.github.com/repos/${repository}/releases/tags/${encodeURIComponent(tag)}`); +const assets = []; +for (let page = 1; ; page += 1) { + const batch = await githubJson(`https://api.github.com/repos/${repository}/releases/${release.id}/assets?per_page=100&page=${page}`); + assets.push(...batch); + if (batch.length < 100) break; +} + +const splitPattern = /^occumed-(.+)--r\d+-c\d+(?:-s\d+)?\.pmtiles$/; +const families = new Map(); +for (const asset of assets) { + const match = asset.name.match(splitPattern); + if (!match) continue; + const parent = match[1]; + const family = families.get(parent) || { parent, assets: [], totalBytes: 0 }; + family.assets.push({ name: asset.name, size: Number(asset.size || 0), state: asset.state, downloadCount: asset.download_count }); + family.totalBytes += Number(asset.size || 0); + families.set(parent, family); +} + +const rows = [...families.values()] + .map((family) => ({ + ...family, + assetCount: family.assets.length, + assets: family.assets.sort((a, b) => a.name.localeCompare(b.name)) + })) + .sort((a, b) => b.assetCount - a.assetCount || a.parent.localeCompare(b.parent)); + +const result = { + generatedAt: new Date().toISOString(), + repository, + releaseTag: tag, + releaseId: release.id, + releaseName: release.name, + totalReleaseAssets: assets.length, + splitFamilyCount: rows.length, + splitAssetCount: rows.reduce((sum, row) => sum + row.assetCount, 0), + families: rows +}; + +const gib = (bytes) => (bytes / 1024 ** 3).toFixed(2); +const markdown = [ + '# Published Forced-Split Assets', + '', + `Generated: ${result.generatedAt}`, + '', + `- Release: \`${tag}\``, + `- Total release assets: **${assets.length}**`, + `- Published split families: **${rows.length}**`, + `- Published split PMTiles assets: **${result.splitAssetCount}**`, + '', + '| Parent name inferred from published asset | Published children | Combined size |', + '|---|---:|---:|', + ...rows.map((row) => `| \`${row.parent}\` | ${row.assetCount} | ${gib(row.totalBytes)} GiB |`), + '', + ...rows.flatMap((row) => [ + `## ${row.parent}`, + '', + ...row.assets.map((asset) => `- \`${asset.name}\` — ${(asset.size / 1024 ** 2).toFixed(2)} MiB — ${asset.state}`), + '' + ]) +].join('\n'); + +await fs.mkdir(jsonOutput.split('/').slice(0, -1).join('/') || '.', { recursive: true }); +await fs.writeFile(jsonOutput, `${JSON.stringify(result, null, 2)}\n`); +await fs.writeFile(markdownOutput, `${markdown}\n`); +console.log(markdown); From a28965b014d82d58ae247848a31a2af30a27bc6e Mon Sep 17 00:00:00 2001 From: Occumed79 Date: Wed, 29 Jul 2026 00:02:23 -0700 Subject: [PATCH 7/8] Cross-check published split release assets --- .../workflows/audit-forced-split-regions.yml | 24 +++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/.github/workflows/audit-forced-split-regions.yml b/.github/workflows/audit-forced-split-regions.yml index f691c5fd..66f13cae 100644 --- a/.github/workflows/audit-forced-split-regions.yml +++ b/.github/workflows/audit-forced-split-regions.yml @@ -8,6 +8,8 @@ on: - audit/forced-split-regions.json - audit/forced-split-regions.md - audit/world-plan.json + - audit/published-split-assets.json + - audit/published-split-assets.md pull_request: branches: - main @@ -34,7 +36,7 @@ jobs: mkdir -p audit node scripts/plan-world-shards.mjs --scope all > audit/world-plan.json - - name: Identify forced grid-split families + - name: Identify forced grid-split families in current plan run: | node scripts/report-forced-split-regions.mjs \ audit/world-plan.json \ @@ -42,12 +44,28 @@ jobs: audit/forced-split-regions.md cat audit/forced-split-regions.md + - name: Identify split families actually published in release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + node scripts/report-published-split-assets.mjs \ + "$GITHUB_REPOSITORY" \ + occumed-world-v1 \ + audit/published-split-assets.json \ + audit/published-split-assets.md + cat audit/published-split-assets.md + - name: Commit audit results if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' run: | git config user.name "github-actions[bot]" git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add audit/world-plan.json audit/forced-split-regions.json audit/forced-split-regions.md + git add \ + audit/world-plan.json \ + audit/forced-split-regions.json \ + audit/forced-split-regions.md \ + audit/published-split-assets.json \ + audit/published-split-assets.md if git diff --cached --quiet; then echo "Audit results unchanged." else @@ -62,4 +80,6 @@ jobs: audit/forced-split-regions.json audit/forced-split-regions.md audit/world-plan.json + audit/published-split-assets.json + audit/published-split-assets.md retention-days: 30 From ad9c3e9edfa444dd0b847b5f2275c291524bb9e3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 07:04:57 +0000 Subject: [PATCH 8/8] Record forced split region audit --- audit/forced-split-regions.json | 18 +- audit/forced-split-regions.md | 6 +- audit/published-split-assets.json | 1941 +++++++++++++++++++++++++++++ audit/published-split-assets.md | 478 +++++++ audit/world-plan.json | 400 +++--- 5 files changed, 2631 insertions(+), 212 deletions(-) create mode 100644 audit/published-split-assets.json create mode 100644 audit/published-split-assets.md diff --git a/audit/forced-split-regions.json b/audit/forced-split-regions.json index 44f77e27..7b402ce8 100644 --- a/audit/forced-split-regions.json +++ b/audit/forced-split-regions.json @@ -1,5 +1,5 @@ { - "generated_at": "2026-07-29T06:26:09.634Z", + "generated_at": "2026-07-29T07:04:54.416Z", "direct_split_limit_bytes": 850000000, "forced_split_family_count": 16, "forced_split_child_count": 176, @@ -367,7 +367,7 @@ { "source_region_id": "dach", "continent": "europe", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "child_count": 25, "children": [ { @@ -856,7 +856,7 @@ { "source_region_id": "sea", "continent": "asia", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "child_count": 15, "children": [ { @@ -1029,7 +1029,7 @@ { "source_region_id": "us-west", "continent": "north-america", - "source_size_bytes": 3374891428, + "source_size_bytes": 3375200481, "child_count": 12, "children": [ { @@ -1276,7 +1276,7 @@ { "source_region_id": "us-midwest", "continent": "north-america", - "source_size_bytes": 2474124802, + "source_size_bytes": 2474364429, "child_count": 12, "children": [ { @@ -1416,7 +1416,7 @@ { "source_region_id": "alps", "continent": "europe", - "source_size_bytes": 2301259383, + "source_size_bytes": 2301582947, "child_count": 8, "children": [ { @@ -1745,7 +1745,7 @@ { "source_region_id": "ontario", "continent": "north-america", - "source_size_bytes": 966871523, + "source_size_bytes": 966741555, "child_count": 4, "children": [ { @@ -1797,7 +1797,7 @@ { "source_region_id": "java", "continent": "asia", - "source_size_bytes": 894918961, + "source_size_bytes": 894892987, "child_count": 6, "children": [ { @@ -1871,7 +1871,7 @@ { "source_region_id": "ukraine", "continent": "europe", - "source_size_bytes": 870539197, + "source_size_bytes": 870676344, "child_count": 6, "children": [ { diff --git a/audit/forced-split-regions.md b/audit/forced-split-regions.md index 1db615ab..2509ddfb 100644 --- a/audit/forced-split-regions.md +++ b/audit/forced-split-regions.md @@ -1,6 +1,6 @@ # Forced Grid-Split Region Audit -Generated: 2026-07-29T06:26:09.634Z +Generated: 2026-07-29T07:04:54.416Z - Forced-split parent families: **16** - Generated child archives: **176** @@ -11,7 +11,7 @@ Generated: 2026-07-29T06:26:09.634Z | `us` | north-america | 11.22 GiB | 32 | | `dach` | europe | 5.76 GiB | 25 | | `us-south` | north-america | 3.81 GiB | 18 | -| `sea` | asia | 3.39 GiB | 15 | +| `sea` | asia | 3.38 GiB | 15 | | `us-west` | north-america | 3.14 GiB | 12 | | `britain-and-ireland` | europe | 2.41 GiB | 9 | | `us-midwest` | north-america | 2.30 GiB | 12 | @@ -122,7 +122,7 @@ Children: 18 ### sea -Source size: 3.39 GiB +Source size: 3.38 GiB Children: 15 - `occumed-sea--r1-c1.pmtiles` — bbox `90.65133,-11.60655,100.725404,1.78722` diff --git a/audit/published-split-assets.json b/audit/published-split-assets.json new file mode 100644 index 00000000..cd959489 --- /dev/null +++ b/audit/published-split-assets.json @@ -0,0 +1,1941 @@ +{ + "generatedAt": "2026-07-29T07:04:57.645Z", + "repository": "Occumed79/Map", + "releaseTag": "occumed-world-v1", + "releaseId": 359982973, + "releaseName": "Occu-Med Worldwide PMTiles v1", + "totalReleaseAssets": 758, + "splitFamilyCount": 51, + "splitAssetCount": 262, + "families": [ + { + "parent": "austria", + "assets": [ + { + "name": "occumed-austria--r1-c1.pmtiles", + "size": 218677278, + "state": "uploaded", + "downloadCount": 80 + }, + { + "name": "occumed-austria--r1-c2.pmtiles", + "size": 374476041, + "state": "uploaded", + "downloadCount": 78 + }, + { + "name": "occumed-austria--r1-c3.pmtiles", + "size": 404662517, + "state": "uploaded", + "downloadCount": 78 + }, + { + "name": "occumed-austria--r2-c1.pmtiles", + "size": 172534, + "state": "uploaded", + "downloadCount": 91 + }, + { + "name": "occumed-austria--r2-c2.pmtiles", + "size": 342214553, + "state": "uploaded", + "downloadCount": 86 + }, + { + "name": "occumed-austria--r2-c3.pmtiles", + "size": 568753470, + "state": "uploaded", + "downloadCount": 88 + } + ], + "totalBytes": 1908956393, + "assetCount": 6 + }, + { + "parent": "belgium", + "assets": [ + { + "name": "occumed-belgium--r1-c1.pmtiles", + "size": 10934490, + "state": "uploaded", + "downloadCount": 74 + }, + { + "name": "occumed-belgium--r1-c2.pmtiles", + "size": 199226572, + "state": "uploaded", + "downloadCount": 73 + }, + { + "name": "occumed-belgium--r1-c3.pmtiles", + "size": 169288251, + "state": "uploaded", + "downloadCount": 83 + }, + { + "name": "occumed-belgium--r2-c1.pmtiles", + "size": 310222580, + "state": "uploaded", + "downloadCount": 77 + }, + { + "name": "occumed-belgium--r2-c2.pmtiles", + "size": 585752939, + "state": "uploaded", + "downloadCount": 76 + }, + { + "name": "occumed-belgium--r2-c3.pmtiles", + "size": 264851520, + "state": "uploaded", + "downloadCount": 90 + } + ], + "totalBytes": 1540276352, + "assetCount": 6 + }, + { + "parent": "congo-democratic-republic", + "assets": [ + { + "name": "occumed-congo-democratic-republic--r1-c1.pmtiles", + "size": 132677433, + "state": "uploaded", + "downloadCount": 49 + }, + { + "name": "occumed-congo-democratic-republic--r1-c2.pmtiles", + "size": 159413055, + "state": "uploaded", + "downloadCount": 52 + }, + { + "name": "occumed-congo-democratic-republic--r1-c3.pmtiles", + "size": 224522290, + "state": "uploaded", + "downloadCount": 50 + }, + { + "name": "occumed-congo-democratic-republic--r2-c1.pmtiles", + "size": 45624999, + "state": "uploaded", + "downloadCount": 51 + }, + { + "name": "occumed-congo-democratic-republic--r2-c2.pmtiles", + "size": 200154842, + "state": "uploaded", + "downloadCount": 53 + }, + { + "name": "occumed-congo-democratic-republic--r2-c3.pmtiles", + "size": 728280726, + "state": "uploaded", + "downloadCount": 47 + } + ], + "totalBytes": 1490673345, + "assetCount": 6 + }, + { + "parent": "denmark", + "assets": [ + { + "name": "occumed-denmark--r1-c1.pmtiles", + "size": 422432638, + "state": "uploaded", + "downloadCount": 81 + }, + { + "name": "occumed-denmark--r1-c2.pmtiles", + "size": 439926482, + "state": "uploaded", + "downloadCount": 85 + }, + { + "name": "occumed-denmark--r1-c3.pmtiles", + "size": 26074393, + "state": "uploaded", + "downloadCount": 72 + }, + { + "name": "occumed-denmark--r2-c1.pmtiles", + "size": 303663384, + "state": "uploaded", + "downloadCount": 46 + }, + { + "name": "occumed-denmark--r2-c2.pmtiles", + "size": 48684592, + "state": "uploaded", + "downloadCount": 49 + }, + { + "name": "occumed-denmark--r2-c3.pmtiles", + "size": 16732, + "state": "uploaded", + "downloadCount": 41 + } + ], + "totalBytes": 1240798221, + "assetCount": 6 + }, + { + "parent": "java", + "assets": [ + { + "name": "occumed-java--r1-c1.pmtiles", + "size": 300269154, + "state": "uploaded", + "downloadCount": 50 + }, + { + "name": "occumed-java--r1-c2.pmtiles", + "size": 942926582, + "state": "uploaded", + "downloadCount": 50 + }, + { + "name": "occumed-java--r1-c3.pmtiles", + "size": 327977724, + "state": "uploaded", + "downloadCount": 51 + }, + { + "name": "occumed-java--r2-c1.pmtiles", + "size": 489882362, + "state": "uploaded", + "downloadCount": 55 + }, + { + "name": "occumed-java--r2-c2.pmtiles", + "size": 56948293, + "state": "uploaded", + "downloadCount": 51 + }, + { + "name": "occumed-java--r2-c3.pmtiles", + "size": 6279835, + "state": "uploaded", + "downloadCount": 50 + } + ], + "totalBytes": 2124283950, + "assetCount": 6 + }, + { + "parent": "kanto", + "assets": [ + { + "name": "occumed-kanto--r1-c1.pmtiles", + "size": 261656, + "state": "uploaded", + "downloadCount": 49 + }, + { + "name": "occumed-kanto--r1-c2.pmtiles", + "size": 1967497, + "state": "uploaded", + "downloadCount": 49 + }, + { + "name": "occumed-kanto--r1-c3.pmtiles", + "size": 16732, + "state": "uploaded", + "downloadCount": 40 + }, + { + "name": "occumed-kanto--r2-c1.pmtiles", + "size": 1038301083, + "state": "uploaded", + "downloadCount": 61 + }, + { + "name": "occumed-kanto--r2-c2.pmtiles", + "size": 16732, + "state": "uploaded", + "downloadCount": 40 + }, + { + "name": "occumed-kanto--r2-c3.pmtiles", + "size": 16732, + "state": "uploaded", + "downloadCount": 40 + } + ], + "totalBytes": 1040580432, + "assetCount": 6 + }, + { + "parent": "kitikmeot", + "assets": [ + { + "name": "occumed-kitikmeot--r1-c1.pmtiles", + "size": 264006853, + "state": "uploaded", + "downloadCount": 43 + }, + { + "name": "occumed-kitikmeot--r1-c2.pmtiles", + "size": 478328852, + "state": "uploaded", + "downloadCount": 43 + }, + { + "name": "occumed-kitikmeot--r1-c3.pmtiles", + "size": 334220933, + "state": "uploaded", + "downloadCount": 43 + }, + { + "name": "occumed-kitikmeot--r2-c1.pmtiles", + "size": 108011358, + "state": "uploaded", + "downloadCount": 44 + }, + { + "name": "occumed-kitikmeot--r2-c2.pmtiles", + "size": 558692200, + "state": "uploaded", + "downloadCount": 44 + }, + { + "name": "occumed-kitikmeot--r2-c3.pmtiles", + "size": 249315399, + "state": "uploaded", + "downloadCount": 44 + } + ], + "totalBytes": 1992575595, + "assetCount": 6 + }, + { + "parent": "kivalliq", + "assets": [ + { + "name": "occumed-kivalliq--r1-c1.pmtiles", + "size": 260318539, + "state": "uploaded", + "downloadCount": 43 + }, + { + "name": "occumed-kivalliq--r1-c2.pmtiles", + "size": 165400943, + "state": "uploaded", + "downloadCount": 43 + }, + { + "name": "occumed-kivalliq--r1-c3.pmtiles", + "size": 16732, + "state": "uploaded", + "downloadCount": 40 + }, + { + "name": "occumed-kivalliq--r2-c1.pmtiles", + "size": 628476627, + "state": "uploaded", + "downloadCount": 44 + }, + { + "name": "occumed-kivalliq--r2-c2.pmtiles", + "size": 665168093, + "state": "uploaded", + "downloadCount": 44 + }, + { + "name": "occumed-kivalliq--r2-c3.pmtiles", + "size": 291947354, + "state": "uploaded", + "downloadCount": 44 + } + ], + "totalBytes": 2011328288, + "assetCount": 6 + }, + { + "parent": "mexico", + "assets": [ + { + "name": "occumed-mexico--r1-c1.pmtiles", + "size": 487817, + "state": "uploaded", + "downloadCount": 44 + }, + { + "name": "occumed-mexico--r1-c2.pmtiles", + "size": 270278155, + "state": "uploaded", + "downloadCount": 42 + }, + { + "name": "occumed-mexico--r1-c3.pmtiles", + "size": 1097520242, + "state": "uploaded", + "downloadCount": 48 + }, + { + "name": "occumed-mexico--r2-c1.pmtiles", + "size": 77635174, + "state": "uploaded", + "downloadCount": 60 + }, + { + "name": "occumed-mexico--r2-c2.pmtiles", + "size": 792632896, + "state": "uploaded", + "downloadCount": 85 + }, + { + "name": "occumed-mexico--r2-c3.pmtiles", + "size": 303751738, + "state": "uploaded", + "downloadCount": 66 + } + ], + "totalBytes": 2542306022, + "assetCount": 6 + }, + { + "parent": "nepal", + "assets": [ + { + "name": "occumed-nepal--r1-c1.pmtiles", + "size": 77967264, + "state": "uploaded", + "downloadCount": 47 + }, + { + "name": "occumed-nepal--r1-c2.pmtiles", + "size": 393150721, + "state": "uploaded", + "downloadCount": 52 + }, + { + "name": "occumed-nepal--r1-c3.pmtiles", + "size": 420716547, + "state": "uploaded", + "downloadCount": 49 + }, + { + "name": "occumed-nepal--r2-c1.pmtiles", + "size": 215348556, + "state": "uploaded", + "downloadCount": 52 + }, + { + "name": "occumed-nepal--r2-c2.pmtiles", + "size": 32792643, + "state": "uploaded", + "downloadCount": 56 + }, + { + "name": "occumed-nepal--r2-c3.pmtiles", + "size": 174663, + "state": "uploaded", + "downloadCount": 47 + } + ], + "totalBytes": 1140150394, + "assetCount": 6 + }, + { + "parent": "new-zealand", + "assets": [ + { + "name": "occumed-new-zealand--r1-c1.pmtiles", + "size": 400130643, + "state": "uploaded", + "downloadCount": 49 + }, + { + "name": "occumed-new-zealand--r1-c2-s1.pmtiles", + "size": 718406, + "state": "uploaded", + "downloadCount": 47 + }, + { + "name": "occumed-new-zealand--r1-c2-s2.pmtiles", + "size": 3837590, + "state": "uploaded", + "downloadCount": 39 + }, + { + "name": "occumed-new-zealand--r2-c1.pmtiles", + "size": 184645495, + "state": "uploaded", + "downloadCount": 49 + }, + { + "name": "occumed-new-zealand--r2-c2-s1.pmtiles", + "size": 595270020, + "state": "uploaded", + "downloadCount": 50 + }, + { + "name": "occumed-new-zealand--r2-c2-s2.pmtiles", + "size": 946882, + "state": "uploaded", + "downloadCount": 39 + } + ], + "totalBytes": 1185549036, + "assetCount": 6 + }, + { + "parent": "niedersachsen", + "assets": [ + { + "name": "occumed-niedersachsen--r1-c1.pmtiles", + "size": 126166861, + "state": "uploaded", + "downloadCount": 80 + }, + { + "name": "occumed-niedersachsen--r1-c2.pmtiles", + "size": 283802615, + "state": "uploaded", + "downloadCount": 83 + }, + { + "name": "occumed-niedersachsen--r1-c3.pmtiles", + "size": 278014098, + "state": "uploaded", + "downloadCount": 93 + }, + { + "name": "occumed-niedersachsen--r2-c1.pmtiles", + "size": 177999767, + "state": "uploaded", + "downloadCount": 74 + }, + { + "name": "occumed-niedersachsen--r2-c2.pmtiles", + "size": 347752986, + "state": "uploaded", + "downloadCount": 73 + }, + { + "name": "occumed-niedersachsen--r2-c3.pmtiles", + "size": 120727258, + "state": "uploaded", + "downloadCount": 75 + } + ], + "totalBytes": 1334463585, + "assetCount": 6 + }, + { + "parent": "nigeria", + "assets": [ + { + "name": "occumed-nigeria--r1-c1.pmtiles", + "size": 590917628, + "state": "uploaded", + "downloadCount": 50 + }, + { + "name": "occumed-nigeria--r1-c2.pmtiles", + "size": 337086709, + "state": "uploaded", + "downloadCount": 51 + }, + { + "name": "occumed-nigeria--r1-c3.pmtiles", + "size": 17939570, + "state": "uploaded", + "downloadCount": 52 + }, + { + "name": "occumed-nigeria--r2-c1.pmtiles", + "size": 346016473, + "state": "uploaded", + "downloadCount": 56 + }, + { + "name": "occumed-nigeria--r2-c2.pmtiles", + "size": 462597847, + "state": "uploaded", + "downloadCount": 55 + }, + { + "name": "occumed-nigeria--r2-c3.pmtiles", + "size": 264443352, + "state": "uploaded", + "downloadCount": 55 + } + ], + "totalBytes": 2019001579, + "assetCount": 6 + }, + { + "parent": "norcal", + "assets": [ + { + "name": "occumed-norcal--r1-c1.pmtiles", + "size": 91991736, + "state": "uploaded", + "downloadCount": 53 + }, + { + "name": "occumed-norcal--r1-c2.pmtiles", + "size": 909262639, + "state": "uploaded", + "downloadCount": 86 + }, + { + "name": "occumed-norcal--r1-c3.pmtiles", + "size": 88601899, + "state": "uploaded", + "downloadCount": 76 + }, + { + "name": "occumed-norcal--r2-c1.pmtiles", + "size": 179288818, + "state": "uploaded", + "downloadCount": 54 + }, + { + "name": "occumed-norcal--r2-c2.pmtiles", + "size": 279451647, + "state": "uploaded", + "downloadCount": 55 + }, + { + "name": "occumed-norcal--r2-c3.pmtiles", + "size": 16732, + "state": "uploaded", + "downloadCount": 48 + } + ], + "totalBytes": 1548613471, + "assetCount": 6 + }, + { + "parent": "nord-norge", + "assets": [ + { + "name": "occumed-nord-norge--r1-c1.pmtiles", + "size": 458668591, + "state": "uploaded", + "downloadCount": 45 + }, + { + "name": "occumed-nord-norge--r1-c2.pmtiles", + "size": 74310608, + "state": "uploaded", + "downloadCount": 47 + }, + { + "name": "occumed-nord-norge--r1-c3.pmtiles", + "size": 392183, + "state": "uploaded", + "downloadCount": 44 + }, + { + "name": "occumed-nord-norge--r2-c1.pmtiles", + "size": 37509044, + "state": "uploaded", + "downloadCount": 45 + }, + { + "name": "occumed-nord-norge--r2-c2.pmtiles", + "size": 511767172, + "state": "uploaded", + "downloadCount": 50 + }, + { + "name": "occumed-nord-norge--r2-c3.pmtiles", + "size": 312787292, + "state": "uploaded", + "downloadCount": 48 + } + ], + "totalBytes": 1395434890, + "assetCount": 6 + }, + { + "parent": "nord-ovest", + "assets": [ + { + "name": "occumed-nord-ovest--r1-c1.pmtiles", + "size": 248086757, + "state": "uploaded", + "downloadCount": 45 + }, + { + "name": "occumed-nord-ovest--r1-c2.pmtiles", + "size": 208497687, + "state": "uploaded", + "downloadCount": 44 + }, + { + "name": "occumed-nord-ovest--r1-c3.pmtiles", + "size": 31522654, + "state": "uploaded", + "downloadCount": 47 + }, + { + "name": "occumed-nord-ovest--r2-c1.pmtiles", + "size": 181030535, + "state": "uploaded", + "downloadCount": 73 + }, + { + "name": "occumed-nord-ovest--r2-c2.pmtiles", + "size": 517971977, + "state": "uploaded", + "downloadCount": 73 + }, + { + "name": "occumed-nord-ovest--r2-c3.pmtiles", + "size": 204533285, + "state": "uploaded", + "downloadCount": 74 + } + ], + "totalBytes": 1391642895, + "assetCount": 6 + }, + { + "parent": "north-admreg", + "assets": [ + { + "name": "occumed-north-admreg--r1-c1.pmtiles", + "size": 356568, + "state": "uploaded", + "downloadCount": 39 + }, + { + "name": "occumed-north-admreg--r1-c2.pmtiles", + "size": 338056146, + "state": "uploaded", + "downloadCount": 43 + }, + { + "name": "occumed-north-admreg--r1-c3.pmtiles", + "size": 331543175, + "state": "uploaded", + "downloadCount": 45 + }, + { + "name": "occumed-north-admreg--r2-c1.pmtiles", + "size": 66909299, + "state": "uploaded", + "downloadCount": 42 + }, + { + "name": "occumed-north-admreg--r2-c2.pmtiles", + "size": 662946406, + "state": "uploaded", + "downloadCount": 43 + }, + { + "name": "occumed-north-admreg--r2-c3.pmtiles", + "size": 530154501, + "state": "uploaded", + "downloadCount": 46 + } + ], + "totalBytes": 1929966095, + "assetCount": 6 + }, + { + "parent": "portugal", + "assets": [ + { + "name": "occumed-portugal--r1-c1.pmtiles", + "size": 1933521, + "state": "uploaded", + "downloadCount": 42 + }, + { + "name": "occumed-portugal--r1-c2.pmtiles", + "size": 27803949, + "state": "uploaded", + "downloadCount": 45 + }, + { + "name": "occumed-portugal--r1-c3.pmtiles", + "size": 10831754, + "state": "uploaded", + "downloadCount": 50 + }, + { + "name": "occumed-portugal--r2-c1.pmtiles", + "size": 45325490, + "state": "uploaded", + "downloadCount": 43 + }, + { + "name": "occumed-portugal--r2-c2.pmtiles", + "size": 16732, + "state": "uploaded", + "downloadCount": 39 + }, + { + "name": "occumed-portugal--r2-c3.pmtiles", + "size": 1029737437, + "state": "uploaded", + "downloadCount": 59 + } + ], + "totalBytes": 1115648883, + "assetCount": 6 + }, + { + "parent": "quebec", + "assets": [ + { + "name": "occumed-quebec--r1-c1.pmtiles", + "size": 1700104936, + "state": "uploaded", + "downloadCount": 46 + }, + { + "name": "occumed-quebec--r1-c2.pmtiles", + "size": 271606446, + "state": "uploaded", + "downloadCount": 46 + }, + { + "name": "occumed-quebec--r2-c1.pmtiles", + "size": 788850608, + "state": "uploaded", + "downloadCount": 46 + }, + { + "name": "occumed-quebec--r2-c2.pmtiles", + "size": 342831081, + "state": "uploaded", + "downloadCount": 43 + }, + { + "name": "occumed-quebec--r3-c1.pmtiles", + "size": 1122306964, + "state": "uploaded", + "downloadCount": 43 + }, + { + "name": "occumed-quebec--r3-c2.pmtiles", + "size": 178915707, + "state": "uploaded", + "downloadCount": 43 + } + ], + "totalBytes": 4404615742, + "assetCount": 6 + }, + { + "parent": "rhone-alpes", + "assets": [ + { + "name": "occumed-rhone-alpes--r1-c1.pmtiles", + "size": 142698850, + "state": "uploaded", + "downloadCount": 70 + }, + { + "name": "occumed-rhone-alpes--r1-c2.pmtiles", + "size": 199483653, + "state": "uploaded", + "downloadCount": 72 + }, + { + "name": "occumed-rhone-alpes--r1-c3.pmtiles", + "size": 29751508, + "state": "uploaded", + "downloadCount": 73 + }, + { + "name": "occumed-rhone-alpes--r2-c1.pmtiles", + "size": 257741227, + "state": "uploaded", + "downloadCount": 70 + }, + { + "name": "occumed-rhone-alpes--r2-c2.pmtiles", + "size": 304626930, + "state": "uploaded", + "downloadCount": 75 + }, + { + "name": "occumed-rhone-alpes--r2-c3.pmtiles", + "size": 203482852, + "state": "uploaded", + "downloadCount": 77 + } + ], + "totalBytes": 1137785020, + "assetCount": 6 + }, + { + "parent": "socal", + "assets": [ + { + "name": "occumed-socal--r1-c1.pmtiles", + "size": 4504102, + "state": "uploaded", + "downloadCount": 43 + }, + { + "name": "occumed-socal--r1-c2.pmtiles", + "size": 756182046, + "state": "uploaded", + "downloadCount": 68 + }, + { + "name": "occumed-socal--r1-c3.pmtiles", + "size": 64929269, + "state": "uploaded", + "downloadCount": 71 + }, + { + "name": "occumed-socal--r2-c1.pmtiles", + "size": 158223577, + "state": "uploaded", + "downloadCount": 49 + }, + { + "name": "occumed-socal--r2-c2.pmtiles", + "size": 279373854, + "state": "uploaded", + "downloadCount": 73 + }, + { + "name": "occumed-socal--r2-c3.pmtiles", + "size": 28656781, + "state": "uploaded", + "downloadCount": 72 + } + ], + "totalBytes": 1291869629, + "assetCount": 6 + }, + { + "parent": "southern-zone", + "assets": [ + { + "name": "occumed-southern-zone--r1-c1.pmtiles", + "size": 714053706, + "state": "uploaded", + "downloadCount": 51 + }, + { + "name": "occumed-southern-zone--r1-c2.pmtiles", + "size": 155267626, + "state": "uploaded", + "downloadCount": 51 + }, + { + "name": "occumed-southern-zone--r1-c3.pmtiles", + "size": 11483833, + "state": "uploaded", + "downloadCount": 49 + }, + { + "name": "occumed-southern-zone--r2-c1.pmtiles", + "size": 526429201, + "state": "uploaded", + "downloadCount": 48 + }, + { + "name": "occumed-southern-zone--r2-c2.pmtiles", + "size": 474932877, + "state": "uploaded", + "downloadCount": 50 + }, + { + "name": "occumed-southern-zone--r2-c3.pmtiles", + "size": 2540619, + "state": "uploaded", + "downloadCount": 48 + } + ], + "totalBytes": 1884707862, + "assetCount": 6 + }, + { + "parent": "sudeste", + "assets": [ + { + "name": "occumed-sudeste--r1-c1.pmtiles", + "size": 1242341802, + "state": "uploaded", + "downloadCount": 43 + }, + { + "name": "occumed-sudeste--r1-c2.pmtiles", + "size": 660697451, + "state": "uploaded", + "downloadCount": 44 + }, + { + "name": "occumed-sudeste--r1-c3.pmtiles", + "size": 3223369, + "state": "uploaded", + "downloadCount": 43 + }, + { + "name": "occumed-sudeste--r2-c1.pmtiles", + "size": 261881489, + "state": "uploaded", + "downloadCount": 55 + }, + { + "name": "occumed-sudeste--r2-c2.pmtiles", + "size": 487630430, + "state": "uploaded", + "downloadCount": 46 + }, + { + "name": "occumed-sudeste--r2-c3.pmtiles", + "size": 2670406, + "state": "uploaded", + "downloadCount": 42 + } + ], + "totalBytes": 2658444947, + "assetCount": 6 + }, + { + "parent": "switzerland", + "assets": [ + { + "name": "occumed-switzerland--r1-c1.pmtiles", + "size": 205694980, + "state": "uploaded", + "downloadCount": 74 + }, + { + "name": "occumed-switzerland--r1-c2.pmtiles", + "size": 135570876, + "state": "uploaded", + "downloadCount": 73 + }, + { + "name": "occumed-switzerland--r1-c3.pmtiles", + "size": 68624180, + "state": "uploaded", + "downloadCount": 72 + }, + { + "name": "occumed-switzerland--r2-c1.pmtiles", + "size": 110409352, + "state": "uploaded", + "downloadCount": 75 + }, + { + "name": "occumed-switzerland--r2-c2.pmtiles", + "size": 421365858, + "state": "uploaded", + "downloadCount": 76 + }, + { + "name": "occumed-switzerland--r2-c3.pmtiles", + "size": 135798950, + "state": "uploaded", + "downloadCount": 77 + } + ], + "totalBytes": 1077464196, + "assetCount": 6 + }, + { + "parent": "tanzania", + "assets": [ + { + "name": "occumed-tanzania--r1-c1.pmtiles", + "size": 82937409, + "state": "uploaded", + "downloadCount": 52 + }, + { + "name": "occumed-tanzania--r1-c2.pmtiles", + "size": 236635139, + "state": "uploaded", + "downloadCount": 55 + }, + { + "name": "occumed-tanzania--r1-c3.pmtiles", + "size": 265406651, + "state": "uploaded", + "downloadCount": 51 + }, + { + "name": "occumed-tanzania--r2-c1.pmtiles", + "size": 380932835, + "state": "uploaded", + "downloadCount": 54 + }, + { + "name": "occumed-tanzania--r2-c2.pmtiles", + "size": 521077980, + "state": "uploaded", + "downloadCount": 58 + }, + { + "name": "occumed-tanzania--r2-c3.pmtiles", + "size": 199190421, + "state": "uploaded", + "downloadCount": 53 + } + ], + "totalBytes": 1686180435, + "assetCount": 6 + }, + { + "parent": "turkey", + "assets": [ + { + "name": "occumed-turkey--r1-c1.pmtiles", + "size": 424453997, + "state": "uploaded", + "downloadCount": 48 + }, + { + "name": "occumed-turkey--r1-c2.pmtiles", + "size": 568916649, + "state": "uploaded", + "downloadCount": 58 + }, + { + "name": "occumed-turkey--r1-c3.pmtiles", + "size": 289202056, + "state": "uploaded", + "downloadCount": 59 + }, + { + "name": "occumed-turkey--r2-c1.pmtiles", + "size": 579581245, + "state": "uploaded", + "downloadCount": 53 + }, + { + "name": "occumed-turkey--r2-c2.pmtiles", + "size": 394187233, + "state": "uploaded", + "downloadCount": 57 + }, + { + "name": "occumed-turkey--r2-c3.pmtiles", + "size": 194939583, + "state": "uploaded", + "downloadCount": 60 + } + ], + "totalBytes": 2451280763, + "assetCount": 6 + }, + { + "parent": "ukraine", + "assets": [ + { + "name": "occumed-ukraine--r1-c1.pmtiles", + "size": 88193506, + "state": "uploaded", + "downloadCount": 85 + }, + { + "name": "occumed-ukraine--r1-c2.pmtiles", + "size": 522656919, + "state": "uploaded", + "downloadCount": 67 + }, + { + "name": "occumed-ukraine--r1-c3.pmtiles", + "size": 369568044, + "state": "uploaded", + "downloadCount": 56 + }, + { + "name": "occumed-ukraine--r2-c1.pmtiles", + "size": 960467825, + "state": "uploaded", + "downloadCount": 87 + }, + { + "name": "occumed-ukraine--r2-c2.pmtiles", + "size": 981527512, + "state": "uploaded", + "downloadCount": 75 + }, + { + "name": "occumed-ukraine--r2-c3.pmtiles", + "size": 653239266, + "state": "uploaded", + "downloadCount": 56 + } + ], + "totalBytes": 3575653072, + "assetCount": 6 + }, + { + "parent": "us--florida", + "assets": [ + { + "name": "occumed-us--florida--r1-c1.pmtiles", + "size": 16732, + "state": "uploaded", + "downloadCount": 39 + }, + { + "name": "occumed-us--florida--r1-c2.pmtiles", + "size": 26245325, + "state": "uploaded", + "downloadCount": 42 + }, + { + "name": "occumed-us--florida--r1-c3.pmtiles", + "size": 545085809, + "state": "uploaded", + "downloadCount": 43 + }, + { + "name": "occumed-us--florida--r2-c1.pmtiles", + "size": 167365951, + "state": "uploaded", + "downloadCount": 41 + }, + { + "name": "occumed-us--florida--r2-c2.pmtiles", + "size": 419983682, + "state": "uploaded", + "downloadCount": 46 + }, + { + "name": "occumed-us--florida--r2-c3.pmtiles", + "size": 720828372, + "state": "uploaded", + "downloadCount": 50 + } + ], + "totalBytes": 1879525871, + "assetCount": 6 + }, + { + "parent": "us--new-york", + "assets": [ + { + "name": "occumed-us--new-york--r1-c1.pmtiles", + "size": 93175302, + "state": "uploaded", + "downloadCount": 46 + }, + { + "name": "occumed-us--new-york--r1-c2.pmtiles", + "size": 132967298, + "state": "uploaded", + "downloadCount": 47 + }, + { + "name": "occumed-us--new-york--r1-c3.pmtiles", + "size": 538980853, + "state": "uploaded", + "downloadCount": 49 + }, + { + "name": "occumed-us--new-york--r2-c1.pmtiles", + "size": 133257720, + "state": "uploaded", + "downloadCount": 48 + }, + { + "name": "occumed-us--new-york--r2-c2.pmtiles", + "size": 199116940, + "state": "uploaded", + "downloadCount": 46 + }, + { + "name": "occumed-us--new-york--r2-c3.pmtiles", + "size": 117044681, + "state": "uploaded", + "downloadCount": 46 + } + ], + "totalBytes": 1214542794, + "assetCount": 6 + }, + { + "parent": "us--texas", + "assets": [ + { + "name": "occumed-us--texas--r1-c1.pmtiles", + "size": 48621809, + "state": "uploaded", + "downloadCount": 75 + }, + { + "name": "occumed-us--texas--r1-c2.pmtiles", + "size": 512401330, + "state": "uploaded", + "downloadCount": 76 + }, + { + "name": "occumed-us--texas--r1-c3.pmtiles", + "size": 521032702, + "state": "uploaded", + "downloadCount": 57 + }, + { + "name": "occumed-us--texas--r2-c1.pmtiles", + "size": 123750835, + "state": "uploaded", + "downloadCount": 75 + }, + { + "name": "occumed-us--texas--r2-c2.pmtiles", + "size": 352474837, + "state": "uploaded", + "downloadCount": 84 + }, + { + "name": "occumed-us--texas--r2-c3.pmtiles", + "size": 687874289, + "state": "uploaded", + "downloadCount": 65 + } + ], + "totalBytes": 2246155802, + "assetCount": 6 + }, + { + "parent": "argentina", + "assets": [ + { + "name": "occumed-argentina--r1-c1.pmtiles", + "size": 494017218, + "state": "uploaded", + "downloadCount": 46 + }, + { + "name": "occumed-argentina--r1-c2.pmtiles", + "size": 43994446, + "state": "uploaded", + "downloadCount": 47 + }, + { + "name": "occumed-argentina--r2-c1.pmtiles", + "size": 708652049, + "state": "uploaded", + "downloadCount": 47 + }, + { + "name": "occumed-argentina--r2-c2.pmtiles", + "size": 1101912183, + "state": "uploaded", + "downloadCount": 48 + } + ], + "totalBytes": 2348575896, + "assetCount": 4 + }, + { + "parent": "central-fed-district", + "assets": [ + { + "name": "occumed-central-fed-district--r1-c1.pmtiles", + "size": 968010742, + "state": "uploaded", + "downloadCount": 65 + }, + { + "name": "occumed-central-fed-district--r1-c2.pmtiles", + "size": 543404423, + "state": "uploaded", + "downloadCount": 50 + }, + { + "name": "occumed-central-fed-district--r2-c1.pmtiles", + "size": 1362404889, + "state": "uploaded", + "downloadCount": 62 + }, + { + "name": "occumed-central-fed-district--r2-c2.pmtiles", + "size": 623131423, + "state": "uploaded", + "downloadCount": 52 + } + ], + "totalBytes": 3496951477, + "assetCount": 4 + }, + { + "parent": "chubu", + "assets": [ + { + "name": "occumed-chubu--r1-c1.pmtiles", + "size": 494208569, + "state": "uploaded", + "downloadCount": 61 + }, + { + "name": "occumed-chubu--r1-c2.pmtiles", + "size": 384550417, + "state": "uploaded", + "downloadCount": 61 + }, + { + "name": "occumed-chubu--r2-c1.pmtiles", + "size": 96054826, + "state": "uploaded", + "downloadCount": 61 + }, + { + "name": "occumed-chubu--r2-c2.pmtiles", + "size": 184814398, + "state": "uploaded", + "downloadCount": 61 + } + ], + "totalBytes": 1159628210, + "assetCount": 4 + }, + { + "parent": "finland", + "assets": [ + { + "name": "occumed-finland--r1-c1.pmtiles", + "size": 1252280200, + "state": "uploaded", + "downloadCount": 46 + }, + { + "name": "occumed-finland--r1-c2.pmtiles", + "size": 1242034349, + "state": "uploaded", + "downloadCount": 49 + }, + { + "name": "occumed-finland--r2-c1.pmtiles", + "size": 204259001, + "state": "uploaded", + "downloadCount": 48 + }, + { + "name": "occumed-finland--r2-c2.pmtiles", + "size": 455403081, + "state": "uploaded", + "downloadCount": 51 + } + ], + "totalBytes": 3153976631, + "assetCount": 4 + }, + { + "parent": "ireland-and-northern-ireland", + "assets": [ + { + "name": "occumed-ireland-and-northern-ireland--r1-c1.pmtiles", + "size": 19231092, + "state": "uploaded", + "downloadCount": 54 + }, + { + "name": "occumed-ireland-and-northern-ireland--r1-c2.pmtiles", + "size": 377634183, + "state": "uploaded", + "downloadCount": 61 + }, + { + "name": "occumed-ireland-and-northern-ireland--r2-c1.pmtiles", + "size": 19565312, + "state": "uploaded", + "downloadCount": 56 + }, + { + "name": "occumed-ireland-and-northern-ireland--r2-c2.pmtiles", + "size": 686760910, + "state": "uploaded", + "downloadCount": 58 + } + ], + "totalBytes": 1103191497, + "assetCount": 4 + }, + { + "parent": "nord-est", + "assets": [ + { + "name": "occumed-nord-est--r1-c1.pmtiles", + "size": 365347824, + "state": "uploaded", + "downloadCount": 88 + }, + { + "name": "occumed-nord-est--r1-c2.pmtiles", + "size": 259286934, + "state": "uploaded", + "downloadCount": 87 + }, + { + "name": "occumed-nord-est--r2-c1.pmtiles", + "size": 291797120, + "state": "uploaded", + "downloadCount": 90 + }, + { + "name": "occumed-nord-est--r2-c2.pmtiles", + "size": 550566772, + "state": "uploaded", + "downloadCount": 74 + } + ], + "totalBytes": 1466998650, + "assetCount": 4 + }, + { + "parent": "nordeste", + "assets": [ + { + "name": "occumed-nordeste--r1-c1.pmtiles", + "size": 607078524, + "state": "uploaded", + "downloadCount": 48 + }, + { + "name": "occumed-nordeste--r1-c2.pmtiles", + "size": 294905764, + "state": "uploaded", + "downloadCount": 48 + }, + { + "name": "occumed-nordeste--r2-c1.pmtiles", + "size": 558513128, + "state": "uploaded", + "downloadCount": 50 + }, + { + "name": "occumed-nordeste--r2-c2.pmtiles", + "size": 339890107, + "state": "uploaded", + "downloadCount": 50 + } + ], + "totalBytes": 1800387523, + "assetCount": 4 + }, + { + "parent": "northwest-territories", + "assets": [ + { + "name": "occumed-northwest-territories--r1-c1.pmtiles", + "size": 876295249, + "state": "uploaded", + "downloadCount": 43 + }, + { + "name": "occumed-northwest-territories--r1-c2.pmtiles", + "size": 981382153, + "state": "uploaded", + "downloadCount": 46 + }, + { + "name": "occumed-northwest-territories--r2-c1.pmtiles", + "size": 335246443, + "state": "uploaded", + "downloadCount": 40 + }, + { + "name": "occumed-northwest-territories--r2-c2.pmtiles", + "size": 415206238, + "state": "uploaded", + "downloadCount": 43 + } + ], + "totalBytes": 2608130083, + "assetCount": 4 + }, + { + "parent": "ontario", + "assets": [ + { + "name": "occumed-ontario--r1-c1.pmtiles", + "size": 260334640, + "state": "uploaded", + "downloadCount": 45 + }, + { + "name": "occumed-ontario--r1-c2.pmtiles", + "size": 1738658478, + "state": "uploaded", + "downloadCount": 42 + }, + { + "name": "occumed-ontario--r2-c1.pmtiles", + "size": 806753374, + "state": "uploaded", + "downloadCount": 44 + }, + { + "name": "occumed-ontario--r2-c2.pmtiles", + "size": 238712132, + "state": "uploaded", + "downloadCount": 43 + } + ], + "totalBytes": 3044458624, + "assetCount": 4 + }, + { + "parent": "ostlandet", + "assets": [ + { + "name": "occumed-ostlandet--r1-c1.pmtiles", + "size": 403051659, + "state": "uploaded", + "downloadCount": 48 + }, + { + "name": "occumed-ostlandet--r1-c2.pmtiles", + "size": 503372673, + "state": "uploaded", + "downloadCount": 48 + }, + { + "name": "occumed-ostlandet--r2-c1.pmtiles", + "size": 214043701, + "state": "uploaded", + "downloadCount": 45 + }, + { + "name": "occumed-ostlandet--r2-c2.pmtiles", + "size": 355012942, + "state": "uploaded", + "downloadCount": 49 + } + ], + "totalBytes": 1475480975, + "assetCount": 4 + }, + { + "parent": "philippines", + "assets": [ + { + "name": "occumed-philippines--r1-c1.pmtiles", + "size": 32993660, + "state": "uploaded", + "downloadCount": 49 + }, + { + "name": "occumed-philippines--r1-c2.pmtiles", + "size": 710563302, + "state": "uploaded", + "downloadCount": 50 + }, + { + "name": "occumed-philippines--r2-c1.pmtiles", + "size": 3965100, + "state": "uploaded", + "downloadCount": 50 + }, + { + "name": "occumed-philippines--r2-c2.pmtiles", + "size": 800402318, + "state": "uploaded", + "downloadCount": 52 + } + ], + "totalBytes": 1547924380, + "assetCount": 4 + }, + { + "parent": "qikiqtaaluk", + "assets": [ + { + "name": "occumed-qikiqtaaluk--r1-c1.pmtiles", + "size": 97673773, + "state": "uploaded", + "downloadCount": 44 + }, + { + "name": "occumed-qikiqtaaluk--r1-c2.pmtiles", + "size": 829226013, + "state": "uploaded", + "downloadCount": 44 + }, + { + "name": "occumed-qikiqtaaluk--r2-c1.pmtiles", + "size": 1225828852, + "state": "uploaded", + "downloadCount": 45 + }, + { + "name": "occumed-qikiqtaaluk--r2-c2.pmtiles", + "size": 1122153641, + "state": "uploaded", + "downloadCount": 45 + } + ], + "totalBytes": 3274882279, + "assetCount": 4 + }, + { + "parent": "south-africa", + "assets": [ + { + "name": "occumed-south-africa--r1-c1.pmtiles", + "size": 1494589, + "state": "uploaded", + "downloadCount": 48 + }, + { + "name": "occumed-south-africa--r1-c2.pmtiles", + "size": 1889758, + "state": "uploaded", + "downloadCount": 46 + }, + { + "name": "occumed-south-africa--r2-c1.pmtiles", + "size": 686554066, + "state": "uploaded", + "downloadCount": 46 + }, + { + "name": "occumed-south-africa--r2-c2.pmtiles", + "size": 917318784, + "state": "uploaded", + "downloadCount": 49 + } + ], + "totalBytes": 1607257197, + "assetCount": 4 + }, + { + "parent": "sud", + "assets": [ + { + "name": "occumed-sud--r1-c1.pmtiles", + "size": 79350277, + "state": "uploaded", + "downloadCount": 46 + }, + { + "name": "occumed-sud--r1-c2.pmtiles", + "size": 201527631, + "state": "uploaded", + "downloadCount": 53 + }, + { + "name": "occumed-sud--r2-c1.pmtiles", + "size": 575398790, + "state": "uploaded", + "downloadCount": 54 + }, + { + "name": "occumed-sud--r2-c2.pmtiles", + "size": 193910753, + "state": "uploaded", + "downloadCount": 55 + } + ], + "totalBytes": 1050187451, + "assetCount": 4 + }, + { + "parent": "sul", + "assets": [ + { + "name": "occumed-sul--r1-c1.pmtiles", + "size": 373454709, + "state": "uploaded", + "downloadCount": 44 + }, + { + "name": "occumed-sul--r1-c2.pmtiles", + "size": 72730061, + "state": "uploaded", + "downloadCount": 45 + }, + { + "name": "occumed-sul--r2-c1.pmtiles", + "size": 587802099, + "state": "uploaded", + "downloadCount": 45 + }, + { + "name": "occumed-sul--r2-c2.pmtiles", + "size": 496193715, + "state": "uploaded", + "downloadCount": 48 + } + ], + "totalBytes": 1530180584, + "assetCount": 4 + }, + { + "parent": "sweden", + "assets": [ + { + "name": "occumed-sweden--r1-c1.pmtiles", + "size": 1998884296, + "state": "uploaded", + "downloadCount": 84 + }, + { + "name": "occumed-sweden--r1-c2.pmtiles", + "size": 299483298, + "state": "uploaded", + "downloadCount": 83 + }, + { + "name": "occumed-sweden--r2-c1.pmtiles", + "size": 581761912, + "state": "uploaded", + "downloadCount": 47 + }, + { + "name": "occumed-sweden--r2-c2.pmtiles", + "size": 534777651, + "state": "uploaded", + "downloadCount": 54 + } + ], + "totalBytes": 3414907157, + "assetCount": 4 + }, + { + "parent": "us--north-carolina", + "assets": [ + { + "name": "occumed-us--north-carolina--r1-c1.pmtiles", + "size": 174306636, + "state": "uploaded", + "downloadCount": 52 + }, + { + "name": "occumed-us--north-carolina--r1-c2.pmtiles", + "size": 508544244, + "state": "uploaded", + "downloadCount": 51 + }, + { + "name": "occumed-us--north-carolina--r1-c3.pmtiles", + "size": 440529649, + "state": "uploaded", + "downloadCount": 55 + }, + { + "name": "occumed-us--north-carolina--r1-c4.pmtiles", + "size": 33062935, + "state": "uploaded", + "downloadCount": 50 + } + ], + "totalBytes": 1156443464, + "assetCount": 4 + }, + { + "parent": "us--virginia", + "assets": [ + { + "name": "occumed-us--virginia--r1-c1.pmtiles", + "size": 61889105, + "state": "uploaded", + "downloadCount": 55 + }, + { + "name": "occumed-us--virginia--r1-c2.pmtiles", + "size": 224913044, + "state": "uploaded", + "downloadCount": 55 + }, + { + "name": "occumed-us--virginia--r1-c3.pmtiles", + "size": 596751788, + "state": "uploaded", + "downloadCount": 60 + }, + { + "name": "occumed-us--virginia--r1-c4.pmtiles", + "size": 153087038, + "state": "uploaded", + "downloadCount": 53 + } + ], + "totalBytes": 1036640975, + "assetCount": 4 + }, + { + "parent": "volga-fed-district", + "assets": [ + { + "name": "occumed-volga-fed-district--r1-c1.pmtiles", + "size": 1137521375, + "state": "uploaded", + "downloadCount": 51 + }, + { + "name": "occumed-volga-fed-district--r1-c2.pmtiles", + "size": 790755676, + "state": "uploaded", + "downloadCount": 48 + }, + { + "name": "occumed-volga-fed-district--r2-c1.pmtiles", + "size": 1017072919, + "state": "uploaded", + "downloadCount": 54 + }, + { + "name": "occumed-volga-fed-district--r2-c2.pmtiles", + "size": 822851804, + "state": "uploaded", + "downloadCount": 49 + } + ], + "totalBytes": 3768201774, + "assetCount": 4 + }, + { + "parent": "northwestern-fed-district", + "assets": [ + { + "name": "occumed-northwestern-fed-district--r1-c2.pmtiles", + "size": 733294869, + "state": "uploaded", + "downloadCount": 50 + }, + { + "name": "occumed-northwestern-fed-district--r2-c1.pmtiles", + "size": 143324765, + "state": "uploaded", + "downloadCount": 54 + }, + { + "name": "occumed-northwestern-fed-district--r2-c2.pmtiles", + "size": 89971002, + "state": "uploaded", + "downloadCount": 49 + } + ], + "totalBytes": 966590636, + "assetCount": 3 + }, + { + "parent": "siberian-fed-district", + "assets": [ + { + "name": "occumed-siberian-fed-district--r1-c2.pmtiles", + "size": 333767491, + "state": "uploaded", + "downloadCount": 54 + }, + { + "name": "occumed-siberian-fed-district--r2-c1.pmtiles", + "size": 505943394, + "state": "uploaded", + "downloadCount": 52 + }, + { + "name": "occumed-siberian-fed-district--r2-c2.pmtiles", + "size": 29538650, + "state": "uploaded", + "downloadCount": 52 + } + ], + "totalBytes": 869249535, + "assetCount": 3 + } + ] +} diff --git a/audit/published-split-assets.md b/audit/published-split-assets.md new file mode 100644 index 00000000..33b4e920 --- /dev/null +++ b/audit/published-split-assets.md @@ -0,0 +1,478 @@ +# Published Forced-Split Assets + +Generated: 2026-07-29T07:04:57.645Z + +- Release: `occumed-world-v1` +- Total release assets: **758** +- Published split families: **51** +- Published split PMTiles assets: **262** + +| Parent name inferred from published asset | Published children | Combined size | +|---|---:|---:| +| `austria` | 6 | 1.78 GiB | +| `belgium` | 6 | 1.43 GiB | +| `congo-democratic-republic` | 6 | 1.39 GiB | +| `denmark` | 6 | 1.16 GiB | +| `java` | 6 | 1.98 GiB | +| `kanto` | 6 | 0.97 GiB | +| `kitikmeot` | 6 | 1.86 GiB | +| `kivalliq` | 6 | 1.87 GiB | +| `mexico` | 6 | 2.37 GiB | +| `nepal` | 6 | 1.06 GiB | +| `new-zealand` | 6 | 1.10 GiB | +| `niedersachsen` | 6 | 1.24 GiB | +| `nigeria` | 6 | 1.88 GiB | +| `norcal` | 6 | 1.44 GiB | +| `nord-norge` | 6 | 1.30 GiB | +| `nord-ovest` | 6 | 1.30 GiB | +| `north-admreg` | 6 | 1.80 GiB | +| `portugal` | 6 | 1.04 GiB | +| `quebec` | 6 | 4.10 GiB | +| `rhone-alpes` | 6 | 1.06 GiB | +| `socal` | 6 | 1.20 GiB | +| `southern-zone` | 6 | 1.76 GiB | +| `sudeste` | 6 | 2.48 GiB | +| `switzerland` | 6 | 1.00 GiB | +| `tanzania` | 6 | 1.57 GiB | +| `turkey` | 6 | 2.28 GiB | +| `ukraine` | 6 | 3.33 GiB | +| `us--florida` | 6 | 1.75 GiB | +| `us--new-york` | 6 | 1.13 GiB | +| `us--texas` | 6 | 2.09 GiB | +| `argentina` | 4 | 2.19 GiB | +| `central-fed-district` | 4 | 3.26 GiB | +| `chubu` | 4 | 1.08 GiB | +| `finland` | 4 | 2.94 GiB | +| `ireland-and-northern-ireland` | 4 | 1.03 GiB | +| `nord-est` | 4 | 1.37 GiB | +| `nordeste` | 4 | 1.68 GiB | +| `northwest-territories` | 4 | 2.43 GiB | +| `ontario` | 4 | 2.84 GiB | +| `ostlandet` | 4 | 1.37 GiB | +| `philippines` | 4 | 1.44 GiB | +| `qikiqtaaluk` | 4 | 3.05 GiB | +| `south-africa` | 4 | 1.50 GiB | +| `sud` | 4 | 0.98 GiB | +| `sul` | 4 | 1.43 GiB | +| `sweden` | 4 | 3.18 GiB | +| `us--north-carolina` | 4 | 1.08 GiB | +| `us--virginia` | 4 | 0.97 GiB | +| `volga-fed-district` | 4 | 3.51 GiB | +| `northwestern-fed-district` | 3 | 0.90 GiB | +| `siberian-fed-district` | 3 | 0.81 GiB | + +## austria + +- `occumed-austria--r1-c1.pmtiles` — 208.55 MiB — uploaded +- `occumed-austria--r1-c2.pmtiles` — 357.13 MiB — uploaded +- `occumed-austria--r1-c3.pmtiles` — 385.92 MiB — uploaded +- `occumed-austria--r2-c1.pmtiles` — 0.16 MiB — uploaded +- `occumed-austria--r2-c2.pmtiles` — 326.36 MiB — uploaded +- `occumed-austria--r2-c3.pmtiles` — 542.41 MiB — uploaded + +## belgium + +- `occumed-belgium--r1-c1.pmtiles` — 10.43 MiB — uploaded +- `occumed-belgium--r1-c2.pmtiles` — 190.00 MiB — uploaded +- `occumed-belgium--r1-c3.pmtiles` — 161.45 MiB — uploaded +- `occumed-belgium--r2-c1.pmtiles` — 295.85 MiB — uploaded +- `occumed-belgium--r2-c2.pmtiles` — 558.62 MiB — uploaded +- `occumed-belgium--r2-c3.pmtiles` — 252.58 MiB — uploaded + +## congo-democratic-republic + +- `occumed-congo-democratic-republic--r1-c1.pmtiles` — 126.53 MiB — uploaded +- `occumed-congo-democratic-republic--r1-c2.pmtiles` — 152.03 MiB — uploaded +- `occumed-congo-democratic-republic--r1-c3.pmtiles` — 214.12 MiB — uploaded +- `occumed-congo-democratic-republic--r2-c1.pmtiles` — 43.51 MiB — uploaded +- `occumed-congo-democratic-republic--r2-c2.pmtiles` — 190.88 MiB — uploaded +- `occumed-congo-democratic-republic--r2-c3.pmtiles` — 694.54 MiB — uploaded + +## denmark + +- `occumed-denmark--r1-c1.pmtiles` — 402.86 MiB — uploaded +- `occumed-denmark--r1-c2.pmtiles` — 419.55 MiB — uploaded +- `occumed-denmark--r1-c3.pmtiles` — 24.87 MiB — uploaded +- `occumed-denmark--r2-c1.pmtiles` — 289.60 MiB — uploaded +- `occumed-denmark--r2-c2.pmtiles` — 46.43 MiB — uploaded +- `occumed-denmark--r2-c3.pmtiles` — 0.02 MiB — uploaded + +## java + +- `occumed-java--r1-c1.pmtiles` — 286.36 MiB — uploaded +- `occumed-java--r1-c2.pmtiles` — 899.24 MiB — uploaded +- `occumed-java--r1-c3.pmtiles` — 312.78 MiB — uploaded +- `occumed-java--r2-c1.pmtiles` — 467.19 MiB — uploaded +- `occumed-java--r2-c2.pmtiles` — 54.31 MiB — uploaded +- `occumed-java--r2-c3.pmtiles` — 5.99 MiB — uploaded + +## kanto + +- `occumed-kanto--r1-c1.pmtiles` — 0.25 MiB — uploaded +- `occumed-kanto--r1-c2.pmtiles` — 1.88 MiB — uploaded +- `occumed-kanto--r1-c3.pmtiles` — 0.02 MiB — uploaded +- `occumed-kanto--r2-c1.pmtiles` — 990.20 MiB — uploaded +- `occumed-kanto--r2-c2.pmtiles` — 0.02 MiB — uploaded +- `occumed-kanto--r2-c3.pmtiles` — 0.02 MiB — uploaded + +## kitikmeot + +- `occumed-kitikmeot--r1-c1.pmtiles` — 251.78 MiB — uploaded +- `occumed-kitikmeot--r1-c2.pmtiles` — 456.17 MiB — uploaded +- `occumed-kitikmeot--r1-c3.pmtiles` — 318.74 MiB — uploaded +- `occumed-kitikmeot--r2-c1.pmtiles` — 103.01 MiB — uploaded +- `occumed-kitikmeot--r2-c2.pmtiles` — 532.81 MiB — uploaded +- `occumed-kitikmeot--r2-c3.pmtiles` — 237.77 MiB — uploaded + +## kivalliq + +- `occumed-kivalliq--r1-c1.pmtiles` — 248.26 MiB — uploaded +- `occumed-kivalliq--r1-c2.pmtiles` — 157.74 MiB — uploaded +- `occumed-kivalliq--r1-c3.pmtiles` — 0.02 MiB — uploaded +- `occumed-kivalliq--r2-c1.pmtiles` — 599.36 MiB — uploaded +- `occumed-kivalliq--r2-c2.pmtiles` — 634.35 MiB — uploaded +- `occumed-kivalliq--r2-c3.pmtiles` — 278.42 MiB — uploaded + +## mexico + +- `occumed-mexico--r1-c1.pmtiles` — 0.47 MiB — uploaded +- `occumed-mexico--r1-c2.pmtiles` — 257.76 MiB — uploaded +- `occumed-mexico--r1-c3.pmtiles` — 1046.68 MiB — uploaded +- `occumed-mexico--r2-c1.pmtiles` — 74.04 MiB — uploaded +- `occumed-mexico--r2-c2.pmtiles` — 755.91 MiB — uploaded +- `occumed-mexico--r2-c3.pmtiles` — 289.68 MiB — uploaded + +## nepal + +- `occumed-nepal--r1-c1.pmtiles` — 74.36 MiB — uploaded +- `occumed-nepal--r1-c2.pmtiles` — 374.94 MiB — uploaded +- `occumed-nepal--r1-c3.pmtiles` — 401.23 MiB — uploaded +- `occumed-nepal--r2-c1.pmtiles` — 205.37 MiB — uploaded +- `occumed-nepal--r2-c2.pmtiles` — 31.27 MiB — uploaded +- `occumed-nepal--r2-c3.pmtiles` — 0.17 MiB — uploaded + +## new-zealand + +- `occumed-new-zealand--r1-c1.pmtiles` — 381.59 MiB — uploaded +- `occumed-new-zealand--r1-c2-s1.pmtiles` — 0.69 MiB — uploaded +- `occumed-new-zealand--r1-c2-s2.pmtiles` — 3.66 MiB — uploaded +- `occumed-new-zealand--r2-c1.pmtiles` — 176.09 MiB — uploaded +- `occumed-new-zealand--r2-c2-s1.pmtiles` — 567.69 MiB — uploaded +- `occumed-new-zealand--r2-c2-s2.pmtiles` — 0.90 MiB — uploaded + +## niedersachsen + +- `occumed-niedersachsen--r1-c1.pmtiles` — 120.32 MiB — uploaded +- `occumed-niedersachsen--r1-c2.pmtiles` — 270.66 MiB — uploaded +- `occumed-niedersachsen--r1-c3.pmtiles` — 265.13 MiB — uploaded +- `occumed-niedersachsen--r2-c1.pmtiles` — 169.75 MiB — uploaded +- `occumed-niedersachsen--r2-c2.pmtiles` — 331.64 MiB — uploaded +- `occumed-niedersachsen--r2-c3.pmtiles` — 115.13 MiB — uploaded + +## nigeria + +- `occumed-nigeria--r1-c1.pmtiles` — 563.54 MiB — uploaded +- `occumed-nigeria--r1-c2.pmtiles` — 321.47 MiB — uploaded +- `occumed-nigeria--r1-c3.pmtiles` — 17.11 MiB — uploaded +- `occumed-nigeria--r2-c1.pmtiles` — 329.99 MiB — uploaded +- `occumed-nigeria--r2-c2.pmtiles` — 441.17 MiB — uploaded +- `occumed-nigeria--r2-c3.pmtiles` — 252.19 MiB — uploaded + +## norcal + +- `occumed-norcal--r1-c1.pmtiles` — 87.73 MiB — uploaded +- `occumed-norcal--r1-c2.pmtiles` — 867.14 MiB — uploaded +- `occumed-norcal--r1-c3.pmtiles` — 84.50 MiB — uploaded +- `occumed-norcal--r2-c1.pmtiles` — 170.98 MiB — uploaded +- `occumed-norcal--r2-c2.pmtiles` — 266.51 MiB — uploaded +- `occumed-norcal--r2-c3.pmtiles` — 0.02 MiB — uploaded + +## nord-norge + +- `occumed-nord-norge--r1-c1.pmtiles` — 437.42 MiB — uploaded +- `occumed-nord-norge--r1-c2.pmtiles` — 70.87 MiB — uploaded +- `occumed-nord-norge--r1-c3.pmtiles` — 0.37 MiB — uploaded +- `occumed-nord-norge--r2-c1.pmtiles` — 35.77 MiB — uploaded +- `occumed-nord-norge--r2-c2.pmtiles` — 488.06 MiB — uploaded +- `occumed-nord-norge--r2-c3.pmtiles` — 298.30 MiB — uploaded + +## nord-ovest + +- `occumed-nord-ovest--r1-c1.pmtiles` — 236.59 MiB — uploaded +- `occumed-nord-ovest--r1-c2.pmtiles` — 198.84 MiB — uploaded +- `occumed-nord-ovest--r1-c3.pmtiles` — 30.06 MiB — uploaded +- `occumed-nord-ovest--r2-c1.pmtiles` — 172.64 MiB — uploaded +- `occumed-nord-ovest--r2-c2.pmtiles` — 493.98 MiB — uploaded +- `occumed-nord-ovest--r2-c3.pmtiles` — 195.06 MiB — uploaded + +## north-admreg + +- `occumed-north-admreg--r1-c1.pmtiles` — 0.34 MiB — uploaded +- `occumed-north-admreg--r1-c2.pmtiles` — 322.40 MiB — uploaded +- `occumed-north-admreg--r1-c3.pmtiles` — 316.18 MiB — uploaded +- `occumed-north-admreg--r2-c1.pmtiles` — 63.81 MiB — uploaded +- `occumed-north-admreg--r2-c2.pmtiles` — 632.23 MiB — uploaded +- `occumed-north-admreg--r2-c3.pmtiles` — 505.59 MiB — uploaded + +## portugal + +- `occumed-portugal--r1-c1.pmtiles` — 1.84 MiB — uploaded +- `occumed-portugal--r1-c2.pmtiles` — 26.52 MiB — uploaded +- `occumed-portugal--r1-c3.pmtiles` — 10.33 MiB — uploaded +- `occumed-portugal--r2-c1.pmtiles` — 43.23 MiB — uploaded +- `occumed-portugal--r2-c2.pmtiles` — 0.02 MiB — uploaded +- `occumed-portugal--r2-c3.pmtiles` — 982.03 MiB — uploaded + +## quebec + +- `occumed-quebec--r1-c1.pmtiles` — 1621.35 MiB — uploaded +- `occumed-quebec--r1-c2.pmtiles` — 259.02 MiB — uploaded +- `occumed-quebec--r2-c1.pmtiles` — 752.31 MiB — uploaded +- `occumed-quebec--r2-c2.pmtiles` — 326.95 MiB — uploaded +- `occumed-quebec--r3-c1.pmtiles` — 1070.32 MiB — uploaded +- `occumed-quebec--r3-c2.pmtiles` — 170.63 MiB — uploaded + +## rhone-alpes + +- `occumed-rhone-alpes--r1-c1.pmtiles` — 136.09 MiB — uploaded +- `occumed-rhone-alpes--r1-c2.pmtiles` — 190.24 MiB — uploaded +- `occumed-rhone-alpes--r1-c3.pmtiles` — 28.37 MiB — uploaded +- `occumed-rhone-alpes--r2-c1.pmtiles` — 245.80 MiB — uploaded +- `occumed-rhone-alpes--r2-c2.pmtiles` — 290.51 MiB — uploaded +- `occumed-rhone-alpes--r2-c3.pmtiles` — 194.06 MiB — uploaded + +## socal + +- `occumed-socal--r1-c1.pmtiles` — 4.30 MiB — uploaded +- `occumed-socal--r1-c2.pmtiles` — 721.15 MiB — uploaded +- `occumed-socal--r1-c3.pmtiles` — 61.92 MiB — uploaded +- `occumed-socal--r2-c1.pmtiles` — 150.89 MiB — uploaded +- `occumed-socal--r2-c2.pmtiles` — 266.43 MiB — uploaded +- `occumed-socal--r2-c3.pmtiles` — 27.33 MiB — uploaded + +## southern-zone + +- `occumed-southern-zone--r1-c1.pmtiles` — 680.97 MiB — uploaded +- `occumed-southern-zone--r1-c2.pmtiles` — 148.07 MiB — uploaded +- `occumed-southern-zone--r1-c3.pmtiles` — 10.95 MiB — uploaded +- `occumed-southern-zone--r2-c1.pmtiles` — 502.04 MiB — uploaded +- `occumed-southern-zone--r2-c2.pmtiles` — 452.93 MiB — uploaded +- `occumed-southern-zone--r2-c3.pmtiles` — 2.42 MiB — uploaded + +## sudeste + +- `occumed-sudeste--r1-c1.pmtiles` — 1184.79 MiB — uploaded +- `occumed-sudeste--r1-c2.pmtiles` — 630.09 MiB — uploaded +- `occumed-sudeste--r1-c3.pmtiles` — 3.07 MiB — uploaded +- `occumed-sudeste--r2-c1.pmtiles` — 249.75 MiB — uploaded +- `occumed-sudeste--r2-c2.pmtiles` — 465.04 MiB — uploaded +- `occumed-sudeste--r2-c3.pmtiles` — 2.55 MiB — uploaded + +## switzerland + +- `occumed-switzerland--r1-c1.pmtiles` — 196.17 MiB — uploaded +- `occumed-switzerland--r1-c2.pmtiles` — 129.29 MiB — uploaded +- `occumed-switzerland--r1-c3.pmtiles` — 65.45 MiB — uploaded +- `occumed-switzerland--r2-c1.pmtiles` — 105.29 MiB — uploaded +- `occumed-switzerland--r2-c2.pmtiles` — 401.85 MiB — uploaded +- `occumed-switzerland--r2-c3.pmtiles` — 129.51 MiB — uploaded + +## tanzania + +- `occumed-tanzania--r1-c1.pmtiles` — 79.10 MiB — uploaded +- `occumed-tanzania--r1-c2.pmtiles` — 225.67 MiB — uploaded +- `occumed-tanzania--r1-c3.pmtiles` — 253.11 MiB — uploaded +- `occumed-tanzania--r2-c1.pmtiles` — 363.29 MiB — uploaded +- `occumed-tanzania--r2-c2.pmtiles` — 496.94 MiB — uploaded +- `occumed-tanzania--r2-c3.pmtiles` — 189.96 MiB — uploaded + +## turkey + +- `occumed-turkey--r1-c1.pmtiles` — 404.79 MiB — uploaded +- `occumed-turkey--r1-c2.pmtiles` — 542.56 MiB — uploaded +- `occumed-turkey--r1-c3.pmtiles` — 275.80 MiB — uploaded +- `occumed-turkey--r2-c1.pmtiles` — 552.73 MiB — uploaded +- `occumed-turkey--r2-c2.pmtiles` — 375.93 MiB — uploaded +- `occumed-turkey--r2-c3.pmtiles` — 185.91 MiB — uploaded + +## ukraine + +- `occumed-ukraine--r1-c1.pmtiles` — 84.11 MiB — uploaded +- `occumed-ukraine--r1-c2.pmtiles` — 498.44 MiB — uploaded +- `occumed-ukraine--r1-c3.pmtiles` — 352.45 MiB — uploaded +- `occumed-ukraine--r2-c1.pmtiles` — 915.97 MiB — uploaded +- `occumed-ukraine--r2-c2.pmtiles` — 936.06 MiB — uploaded +- `occumed-ukraine--r2-c3.pmtiles` — 622.98 MiB — uploaded + +## us--florida + +- `occumed-us--florida--r1-c1.pmtiles` — 0.02 MiB — uploaded +- `occumed-us--florida--r1-c2.pmtiles` — 25.03 MiB — uploaded +- `occumed-us--florida--r1-c3.pmtiles` — 519.83 MiB — uploaded +- `occumed-us--florida--r2-c1.pmtiles` — 159.61 MiB — uploaded +- `occumed-us--florida--r2-c2.pmtiles` — 400.53 MiB — uploaded +- `occumed-us--florida--r2-c3.pmtiles` — 687.44 MiB — uploaded + +## us--new-york + +- `occumed-us--new-york--r1-c1.pmtiles` — 88.86 MiB — uploaded +- `occumed-us--new-york--r1-c2.pmtiles` — 126.81 MiB — uploaded +- `occumed-us--new-york--r1-c3.pmtiles` — 514.01 MiB — uploaded +- `occumed-us--new-york--r2-c1.pmtiles` — 127.08 MiB — uploaded +- `occumed-us--new-york--r2-c2.pmtiles` — 189.89 MiB — uploaded +- `occumed-us--new-york--r2-c3.pmtiles` — 111.62 MiB — uploaded + +## us--texas + +- `occumed-us--texas--r1-c1.pmtiles` — 46.37 MiB — uploaded +- `occumed-us--texas--r1-c2.pmtiles` — 488.66 MiB — uploaded +- `occumed-us--texas--r1-c3.pmtiles` — 496.90 MiB — uploaded +- `occumed-us--texas--r2-c1.pmtiles` — 118.02 MiB — uploaded +- `occumed-us--texas--r2-c2.pmtiles` — 336.15 MiB — uploaded +- `occumed-us--texas--r2-c3.pmtiles` — 656.01 MiB — uploaded + +## argentina + +- `occumed-argentina--r1-c1.pmtiles` — 471.13 MiB — uploaded +- `occumed-argentina--r1-c2.pmtiles` — 41.96 MiB — uploaded +- `occumed-argentina--r2-c1.pmtiles` — 675.82 MiB — uploaded +- `occumed-argentina--r2-c2.pmtiles` — 1050.87 MiB — uploaded + +## central-fed-district + +- `occumed-central-fed-district--r1-c1.pmtiles` — 923.17 MiB — uploaded +- `occumed-central-fed-district--r1-c2.pmtiles` — 518.23 MiB — uploaded +- `occumed-central-fed-district--r2-c1.pmtiles` — 1299.29 MiB — uploaded +- `occumed-central-fed-district--r2-c2.pmtiles` — 594.26 MiB — uploaded + +## chubu + +- `occumed-chubu--r1-c1.pmtiles` — 471.31 MiB — uploaded +- `occumed-chubu--r1-c2.pmtiles` — 366.74 MiB — uploaded +- `occumed-chubu--r2-c1.pmtiles` — 91.61 MiB — uploaded +- `occumed-chubu--r2-c2.pmtiles` — 176.25 MiB — uploaded + +## finland + +- `occumed-finland--r1-c1.pmtiles` — 1194.27 MiB — uploaded +- `occumed-finland--r1-c2.pmtiles` — 1184.50 MiB — uploaded +- `occumed-finland--r2-c1.pmtiles` — 194.80 MiB — uploaded +- `occumed-finland--r2-c2.pmtiles` — 434.31 MiB — uploaded + +## ireland-and-northern-ireland + +- `occumed-ireland-and-northern-ireland--r1-c1.pmtiles` — 18.34 MiB — uploaded +- `occumed-ireland-and-northern-ireland--r1-c2.pmtiles` — 360.14 MiB — uploaded +- `occumed-ireland-and-northern-ireland--r2-c1.pmtiles` — 18.66 MiB — uploaded +- `occumed-ireland-and-northern-ireland--r2-c2.pmtiles` — 654.95 MiB — uploaded + +## nord-est + +- `occumed-nord-est--r1-c1.pmtiles` — 348.42 MiB — uploaded +- `occumed-nord-est--r1-c2.pmtiles` — 247.28 MiB — uploaded +- `occumed-nord-est--r2-c1.pmtiles` — 278.28 MiB — uploaded +- `occumed-nord-est--r2-c2.pmtiles` — 525.06 MiB — uploaded + +## nordeste + +- `occumed-nordeste--r1-c1.pmtiles` — 578.96 MiB — uploaded +- `occumed-nordeste--r1-c2.pmtiles` — 281.24 MiB — uploaded +- `occumed-nordeste--r2-c1.pmtiles` — 532.64 MiB — uploaded +- `occumed-nordeste--r2-c2.pmtiles` — 324.14 MiB — uploaded + +## northwest-territories + +- `occumed-northwest-territories--r1-c1.pmtiles` — 835.70 MiB — uploaded +- `occumed-northwest-territories--r1-c2.pmtiles` — 935.92 MiB — uploaded +- `occumed-northwest-territories--r2-c1.pmtiles` — 319.72 MiB — uploaded +- `occumed-northwest-territories--r2-c2.pmtiles` — 395.97 MiB — uploaded + +## ontario + +- `occumed-ontario--r1-c1.pmtiles` — 248.27 MiB — uploaded +- `occumed-ontario--r1-c2.pmtiles` — 1658.11 MiB — uploaded +- `occumed-ontario--r2-c1.pmtiles` — 769.38 MiB — uploaded +- `occumed-ontario--r2-c2.pmtiles` — 227.65 MiB — uploaded + +## ostlandet + +- `occumed-ostlandet--r1-c1.pmtiles` — 384.38 MiB — uploaded +- `occumed-ostlandet--r1-c2.pmtiles` — 480.05 MiB — uploaded +- `occumed-ostlandet--r2-c1.pmtiles` — 204.13 MiB — uploaded +- `occumed-ostlandet--r2-c2.pmtiles` — 338.57 MiB — uploaded + +## philippines + +- `occumed-philippines--r1-c1.pmtiles` — 31.47 MiB — uploaded +- `occumed-philippines--r1-c2.pmtiles` — 677.65 MiB — uploaded +- `occumed-philippines--r2-c1.pmtiles` — 3.78 MiB — uploaded +- `occumed-philippines--r2-c2.pmtiles` — 763.32 MiB — uploaded + +## qikiqtaaluk + +- `occumed-qikiqtaaluk--r1-c1.pmtiles` — 93.15 MiB — uploaded +- `occumed-qikiqtaaluk--r1-c2.pmtiles` — 790.81 MiB — uploaded +- `occumed-qikiqtaaluk--r2-c1.pmtiles` — 1169.04 MiB — uploaded +- `occumed-qikiqtaaluk--r2-c2.pmtiles` — 1070.17 MiB — uploaded + +## south-africa + +- `occumed-south-africa--r1-c1.pmtiles` — 1.43 MiB — uploaded +- `occumed-south-africa--r1-c2.pmtiles` — 1.80 MiB — uploaded +- `occumed-south-africa--r2-c1.pmtiles` — 654.75 MiB — uploaded +- `occumed-south-africa--r2-c2.pmtiles` — 874.82 MiB — uploaded + +## sud + +- `occumed-sud--r1-c1.pmtiles` — 75.67 MiB — uploaded +- `occumed-sud--r1-c2.pmtiles` — 192.19 MiB — uploaded +- `occumed-sud--r2-c1.pmtiles` — 548.74 MiB — uploaded +- `occumed-sud--r2-c2.pmtiles` — 184.93 MiB — uploaded + +## sul + +- `occumed-sul--r1-c1.pmtiles` — 356.15 MiB — uploaded +- `occumed-sul--r1-c2.pmtiles` — 69.36 MiB — uploaded +- `occumed-sul--r2-c1.pmtiles` — 560.57 MiB — uploaded +- `occumed-sul--r2-c2.pmtiles` — 473.21 MiB — uploaded + +## sweden + +- `occumed-sweden--r1-c1.pmtiles` — 1906.28 MiB — uploaded +- `occumed-sweden--r1-c2.pmtiles` — 285.61 MiB — uploaded +- `occumed-sweden--r2-c1.pmtiles` — 554.81 MiB — uploaded +- `occumed-sweden--r2-c2.pmtiles` — 510.00 MiB — uploaded + +## us--north-carolina + +- `occumed-us--north-carolina--r1-c1.pmtiles` — 166.23 MiB — uploaded +- `occumed-us--north-carolina--r1-c2.pmtiles` — 484.99 MiB — uploaded +- `occumed-us--north-carolina--r1-c3.pmtiles` — 420.12 MiB — uploaded +- `occumed-us--north-carolina--r1-c4.pmtiles` — 31.53 MiB — uploaded + +## us--virginia + +- `occumed-us--virginia--r1-c1.pmtiles` — 59.02 MiB — uploaded +- `occumed-us--virginia--r1-c2.pmtiles` — 214.49 MiB — uploaded +- `occumed-us--virginia--r1-c3.pmtiles` — 569.11 MiB — uploaded +- `occumed-us--virginia--r1-c4.pmtiles` — 146.00 MiB — uploaded + +## volga-fed-district + +- `occumed-volga-fed-district--r1-c1.pmtiles` — 1084.82 MiB — uploaded +- `occumed-volga-fed-district--r1-c2.pmtiles` — 754.12 MiB — uploaded +- `occumed-volga-fed-district--r2-c1.pmtiles` — 969.96 MiB — uploaded +- `occumed-volga-fed-district--r2-c2.pmtiles` — 784.73 MiB — uploaded + +## northwestern-fed-district + +- `occumed-northwestern-fed-district--r1-c2.pmtiles` — 699.32 MiB — uploaded +- `occumed-northwestern-fed-district--r2-c1.pmtiles` — 136.69 MiB — uploaded +- `occumed-northwestern-fed-district--r2-c2.pmtiles` — 85.80 MiB — uploaded + +## siberian-fed-district + +- `occumed-siberian-fed-district--r1-c2.pmtiles` — 318.31 MiB — uploaded +- `occumed-siberian-fed-district--r2-c1.pmtiles` — 482.51 MiB — uploaded +- `occumed-siberian-fed-district--r2-c2.pmtiles` — 28.17 MiB — uploaded + diff --git a/audit/world-plan.json b/audit/world-plan.json index f1de7fc4..9ad05324 100644 --- a/audit/world-plan.json +++ b/audit/world-plan.json @@ -88,7 +88,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "4.842221,42.69859,7.822263,45.549765", "source_region_id": "alps", - "source_size_bytes": 2301259383, + "source_size_bytes": 2301582947, "west": 4.842221, "south": 42.69859, "east": 7.822263, @@ -104,7 +104,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "7.822263,42.69859,10.802305,45.549765", "source_region_id": "alps", - "source_size_bytes": 2301259383, + "source_size_bytes": 2301582947, "west": 7.822263, "south": 42.69859, "east": 10.802305, @@ -120,7 +120,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "10.802305,42.69859,13.782348,45.549765", "source_region_id": "alps", - "source_size_bytes": 2301259383, + "source_size_bytes": 2301582947, "west": 10.802305, "south": 42.69859, "east": 13.782348, @@ -136,7 +136,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "13.782348,42.69859,16.76239,45.549765", "source_region_id": "alps", - "source_size_bytes": 2301259383, + "source_size_bytes": 2301582947, "west": 13.782348, "south": 42.69859, "east": 16.76239, @@ -152,7 +152,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "4.842221,45.549765,7.822263,48.40094", "source_region_id": "alps", - "source_size_bytes": 2301259383, + "source_size_bytes": 2301582947, "west": 4.842221, "south": 45.549765, "east": 7.822263, @@ -168,7 +168,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "7.822263,45.549765,10.802305,48.40094", "source_region_id": "alps", - "source_size_bytes": 2301259383, + "source_size_bytes": 2301582947, "west": 7.822263, "south": 45.549765, "east": 10.802305, @@ -184,7 +184,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "10.802305,45.549765,13.782348,48.40094", "source_region_id": "alps", - "source_size_bytes": 2301259383, + "source_size_bytes": 2301582947, "west": 10.802305, "south": 45.549765, "east": 13.782348, @@ -200,7 +200,7 @@ "pbf_url": "https://download.geofabrik.de/europe/alps-latest.osm.pbf", "extract_bbox": "13.782348,45.549765,16.76239,48.40094", "source_region_id": "alps", - "source_size_bytes": 2301259383, + "source_size_bytes": 2301582947, "west": 13.782348, "south": 45.549765, "east": 16.76239, @@ -328,7 +328,7 @@ "pbf_url": "https://download.geofabrik.de/europe/france/aquitaine-latest.osm.pbf", "extract_bbox": "", "source_region_id": "aquitaine", - "source_size_bytes": 294080736, + "source_size_bytes": 294103848, "west": -1.842771, "south": 42.77334, "east": 1.450577, @@ -360,7 +360,7 @@ "pbf_url": "https://download.geofabrik.de/south-america/argentina-latest.osm.pbf", "extract_bbox": "", "source_region_id": "argentina", - "source_size_bytes": 425652792, + "source_size_bytes": 425708514, "west": -73.61453, "south": -55.68296, "east": -53.63534, @@ -456,7 +456,7 @@ "pbf_url": "https://download.geofabrik.de/europe/france/auvergne-latest.osm.pbf", "extract_bbox": "", "source_region_id": "auvergne", - "source_size_bytes": 153829928, + "source_size_bytes": 153870319, "west": 2.060519, "south": 44.6146, "east": 4.492907, @@ -728,7 +728,7 @@ "pbf_url": "https://download.geofabrik.de/europe/bosnia-herzegovina-latest.osm.pbf", "extract_bbox": "", "source_region_id": "bosnia-herzegovina", - "source_size_bytes": 159485783, + "source_size_bytes": 159506546, "west": 15.7156, "south": 42.55239, "east": 19.62639, @@ -808,7 +808,7 @@ "pbf_url": "https://download.geofabrik.de/europe/france/bretagne-latest.osm.pbf", "extract_bbox": "", "source_region_id": "bretagne", - "source_size_bytes": 326731713, + "source_size_bytes": 326801624, "west": -5.848854, "south": 47.07722, "east": -1.014538, @@ -824,7 +824,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/bristol-latest.osm.pbf", "extract_bbox": "", "source_region_id": "bristol", - "source_size_bytes": 13190773, + "source_size_bytes": 13208431, "west": -2.734665, "south": 51.39611, "east": -2.509528, @@ -1064,7 +1064,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/cambridgeshire-latest.osm.pbf", "extract_bbox": "", "source_region_id": "cambridgeshire", - "source_size_bytes": 34371849, + "source_size_bytes": 34369442, "west": -0.502126, "south": 52.00517, "east": 0.516191, @@ -1096,7 +1096,7 @@ "pbf_url": "https://download.geofabrik.de/africa/canary-islands-latest.osm.pbf", "extract_bbox": "", "source_region_id": "canary-islands", - "source_size_bytes": 59584660, + "source_size_bytes": 59580218, "west": -18.92352, "south": 26.36117, "east": -12.47875, @@ -1112,7 +1112,7 @@ "pbf_url": "https://download.geofabrik.de/europe/spain/cantabria-latest.osm.pbf", "extract_bbox": "", "source_region_id": "cantabria", - "source_size_bytes": 35214059, + "source_size_bytes": 35219386, "west": -4.861622, "south": 42.75458, "east": -3.144983, @@ -1368,7 +1368,7 @@ "pbf_url": "https://download.geofabrik.de/europe/france/champagne-ardenne-latest.osm.pbf", "extract_bbox": "", "source_region_id": "champagne-ardenne", - "source_size_bytes": 104725196, + "source_size_bytes": 104717330, "west": 3.382419, "south": 47.57553, "east": 5.892182, @@ -1400,7 +1400,7 @@ "pbf_url": "https://download.geofabrik.de/south-america/chile-latest.osm.pbf", "extract_bbox": "", "source_region_id": "chile", - "source_size_bytes": 345289641, + "source_size_bytes": 345314707, "west": -113.2233, "south": -58.45195, "east": -65.5141, @@ -1592,7 +1592,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/cornwall-latest.osm.pbf", "extract_bbox": "", "source_region_id": "cornwall", - "source_size_bytes": 33715125, + "source_size_bytes": 33716091, "west": -6.820424, "south": 49.57808, "east": -4.146631, @@ -1704,7 +1704,7 @@ "pbf_url": "https://download.geofabrik.de/europe/cyprus-latest.osm.pbf", "extract_bbox": "", "source_region_id": "cyprus", - "source_size_bytes": 36844483, + "source_size_bytes": 36839113, "west": 31.95244, "south": 34.23374, "east": 34.96147, @@ -1720,7 +1720,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "5.864417,45.81617,8.12408,47.68249", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 5.864417, "south": 45.81617, "east": 8.12408, @@ -1736,7 +1736,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "8.12408,45.81617,10.383742,47.68249", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 8.12408, "south": 45.81617, "east": 10.383742, @@ -1752,7 +1752,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "10.383742,45.81617,12.643405,47.68249", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 10.383742, "south": 45.81617, "east": 12.643405, @@ -1768,7 +1768,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "12.643405,45.81617,14.903067,47.68249", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 12.643405, "south": 45.81617, "east": 14.903067, @@ -1784,7 +1784,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "14.903067,45.81617,17.16273,47.68249", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 14.903067, "south": 45.81617, "east": 17.16273, @@ -1800,7 +1800,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "5.864417,47.68249,8.12408,49.54881", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 5.864417, "south": 47.68249, "east": 8.12408, @@ -1816,7 +1816,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "8.12408,47.68249,10.383742,49.54881", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 8.12408, "south": 47.68249, "east": 10.383742, @@ -1832,7 +1832,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "10.383742,47.68249,12.643405,49.54881", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 10.383742, "south": 47.68249, "east": 12.643405, @@ -1848,7 +1848,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "12.643405,47.68249,14.903067,49.54881", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 12.643405, "south": 47.68249, "east": 14.903067, @@ -1864,7 +1864,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "14.903067,47.68249,17.16273,49.54881", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 14.903067, "south": 47.68249, "east": 17.16273, @@ -1880,7 +1880,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "5.864417,49.54881,8.12408,51.41513", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 5.864417, "south": 49.54881, "east": 8.12408, @@ -1896,7 +1896,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "8.12408,49.54881,10.383742,51.41513", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 8.12408, "south": 49.54881, "east": 10.383742, @@ -1912,7 +1912,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "10.383742,49.54881,12.643405,51.41513", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 10.383742, "south": 49.54881, "east": 12.643405, @@ -1928,7 +1928,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "12.643405,49.54881,14.903067,51.41513", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 12.643405, "south": 49.54881, "east": 14.903067, @@ -1944,7 +1944,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "14.903067,49.54881,17.16273,51.41513", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 14.903067, "south": 49.54881, "east": 17.16273, @@ -1960,7 +1960,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "5.864417,51.41513,8.12408,53.28145", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 5.864417, "south": 51.41513, "east": 8.12408, @@ -1976,7 +1976,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "8.12408,51.41513,10.383742,53.28145", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 8.12408, "south": 51.41513, "east": 10.383742, @@ -1992,7 +1992,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "10.383742,51.41513,12.643405,53.28145", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 10.383742, "south": 51.41513, "east": 12.643405, @@ -2008,7 +2008,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "12.643405,51.41513,14.903067,53.28145", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 12.643405, "south": 51.41513, "east": 14.903067, @@ -2024,7 +2024,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "14.903067,51.41513,17.16273,53.28145", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 14.903067, "south": 51.41513, "east": 17.16273, @@ -2040,7 +2040,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "5.864417,53.28145,8.12408,55.14777", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 5.864417, "south": 53.28145, "east": 8.12408, @@ -2056,7 +2056,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "8.12408,53.28145,10.383742,55.14777", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 8.12408, "south": 53.28145, "east": 10.383742, @@ -2072,7 +2072,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "10.383742,53.28145,12.643405,55.14777", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 10.383742, "south": 53.28145, "east": 12.643405, @@ -2088,7 +2088,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "12.643405,53.28145,14.903067,55.14777", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 12.643405, "south": 53.28145, "east": 14.903067, @@ -2104,7 +2104,7 @@ "pbf_url": "https://download.geofabrik.de/europe/dach-latest.osm.pbf", "extract_bbox": "14.903067,53.28145,17.16273,55.14777", "source_region_id": "dach", - "source_size_bytes": 6183091366, + "source_size_bytes": 6182252887, "west": 14.903067, "south": 53.28145, "east": 17.16273, @@ -2136,7 +2136,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/derbyshire-latest.osm.pbf", "extract_bbox": "", "source_region_id": "derbyshire", - "source_size_bytes": 43481367, + "source_size_bytes": 43478515, "west": -2.035756, "south": 52.6955, "east": -1.164792, @@ -2152,7 +2152,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/nordrhein-westfalen/detmold-regbez-latest.osm.pbf", "extract_bbox": "", "source_region_id": "detmold-regbez", - "source_size_bytes": 135459383, + "source_size_bytes": 135443470, "west": 8.074053, "south": 51.4369, "east": 9.468311, @@ -2216,7 +2216,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/dorset-latest.osm.pbf", "extract_bbox": "", "source_region_id": "dorset", - "source_size_bytes": 29961066, + "source_size_bytes": 29960707, "west": -2.962969, "south": 50.49829, "east": -1.680036, @@ -2280,7 +2280,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/east-sussex-latest.osm.pbf", "extract_bbox": "", "source_region_id": "east-sussex", - "source_size_bytes": 21103547, + "source_size_bytes": 21112725, "west": -0.136786, "south": 50.69996, "east": 0.869466, @@ -2312,7 +2312,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/east-yorkshire-with-hull-latest.osm.pbf", "extract_bbox": "", "source_region_id": "east-yorkshire-with-hull", - "source_size_bytes": 19209722, + "source_size_bytes": 19211473, "west": -1.105174, "south": 53.55447, "east": 0.48944, @@ -2456,7 +2456,7 @@ "pbf_url": "https://download.geofabrik.de/europe/estonia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "estonia", - "source_size_bytes": 121675703, + "source_size_bytes": 121669164, "west": 20.85166, "south": 57.49764, "east": 28.21426, @@ -2520,7 +2520,7 @@ "pbf_url": "https://download.geofabrik.de/russia/far-eastern-fed-district-latest.osm.pbf", "extract_bbox": "", "source_region_id": "far-eastern-fed-district", - "source_size_bytes": 382594244, + "source_size_bytes": 382626201, "west": 105.4219, "south": 37.34659, "east": -168.6841, @@ -2584,7 +2584,7 @@ "pbf_url": "https://download.geofabrik.de/europe/netherlands/flevoland-latest.osm.pbf", "extract_bbox": "", "source_region_id": "flevoland", - "source_size_bytes": 34451765, + "source_size_bytes": 34428527, "west": 5.059593, "south": 52.24826, "east": 6.018276, @@ -2632,7 +2632,7 @@ "pbf_url": "https://download.geofabrik.de/europe/netherlands/friesland-latest.osm.pbf", "extract_bbox": "", "source_region_id": "friesland", - "source_size_bytes": 88184294, + "source_size_bytes": 88191021, "west": 4.597294, "south": 52.76362, "east": 6.428358, @@ -2680,7 +2680,7 @@ "pbf_url": "https://download.geofabrik.de/europe/spain/galicia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "galicia", - "source_size_bytes": 110201073, + "source_size_bytes": 110180618, "west": -9.779014, "south": 41.80443, "east": -6.727066, @@ -2712,7 +2712,7 @@ "pbf_url": "https://download.geofabrik.de/asia/gcc-states-latest.osm.pbf", "extract_bbox": "", "source_region_id": "gcc-states", - "source_size_bytes": 251841991, + "source_size_bytes": 251836057, "west": 34.43489, "south": 15.24752, "east": 60.94748, @@ -2744,7 +2744,7 @@ "pbf_url": "https://download.geofabrik.de/europe/georgia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "georgia", - "source_size_bytes": 100441173, + "source_size_bytes": 100404459, "west": 39.88093, "south": 41.05117, "east": 46.73959, @@ -2760,7 +2760,7 @@ "pbf_url": "https://download.geofabrik.de/africa/ghana-latest.osm.pbf", "extract_bbox": "", "source_region_id": "ghana", - "source_size_bytes": 114501039, + "source_size_bytes": 114709460, "west": -3.807399, "south": 3.704056, "east": 1.394038, @@ -2776,7 +2776,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/gloucestershire-latest.osm.pbf", "extract_bbox": "", "source_region_id": "gloucestershire", - "source_size_bytes": 40552613, + "source_size_bytes": 40544065, "west": -2.711909, "south": 51.41465, "east": -1.612605, @@ -2984,7 +2984,7 @@ "pbf_url": "https://download.geofabrik.de/europe/netherlands/groningen-latest.osm.pbf", "extract_bbox": "", "source_region_id": "groningen", - "source_size_bytes": 56283884, + "source_size_bytes": 56284438, "west": 6.166463, "south": 52.83734, "east": 7.230455, @@ -3096,7 +3096,7 @@ "pbf_url": "https://download.geofabrik.de/africa/guinea-bissau-latest.osm.pbf", "extract_bbox": "", "source_region_id": "guinea-bissau", - "source_size_bytes": 11147104, + "source_size_bytes": 11147146, "west": -16.96427, "south": 10.14494, "east": -13.62923, @@ -3144,7 +3144,7 @@ "pbf_url": "https://download.geofabrik.de/europe/france/guyane-latest.osm.pbf", "extract_bbox": "", "source_region_id": "guyane", - "source_size_bytes": 14337782, + "source_size_bytes": 14337520, "west": -54.62299, "south": 2.093117, "east": -50.8667, @@ -3336,7 +3336,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/hessen-latest.osm.pbf", "extract_bbox": "", "source_region_id": "hessen", - "source_size_bytes": 342331550, + "source_size_bytes": 342389830, "west": 7.768021, "south": 49.39321, "east": 10.24595, @@ -3384,7 +3384,7 @@ "pbf_url": "https://download.geofabrik.de/asia/china/hong-kong-latest.osm.pbf", "extract_bbox": "", "source_region_id": "hong-kong", - "source_size_bytes": 37360296, + "source_size_bytes": 37355659, "west": 113.813, "south": 22.13041, "east": 114.506, @@ -3480,7 +3480,7 @@ "pbf_url": "https://download.geofabrik.de/europe/france/ile-de-france-latest.osm.pbf", "extract_bbox": "", "source_region_id": "ile-de-france", - "source_size_bytes": 335797629, + "source_size_bytes": 335775153, "west": 1.445097, "south": 48.11918, "east": 3.560409, @@ -3640,7 +3640,7 @@ "pbf_url": "https://download.geofabrik.de/europe/italy/isole-latest.osm.pbf", "extract_bbox": "", "source_region_id": "isole", - "source_size_bytes": 213229780, + "source_size_bytes": 213240103, "west": 7.718453, "south": 35.07638, "east": 15.70887, @@ -3704,7 +3704,7 @@ "pbf_url": "https://download.geofabrik.de/asia/indonesia/java-latest.osm.pbf", "extract_bbox": "104.1394,-9.541155,108.286733,-6.746545", "source_region_id": "java", - "source_size_bytes": 894918961, + "source_size_bytes": 894892987, "west": 104.1394, "south": -9.541155, "east": 108.286733, @@ -3720,7 +3720,7 @@ "pbf_url": "https://download.geofabrik.de/asia/indonesia/java-latest.osm.pbf", "extract_bbox": "108.286733,-9.541155,112.434067,-6.746545", "source_region_id": "java", - "source_size_bytes": 894918961, + "source_size_bytes": 894892987, "west": 108.286733, "south": -9.541155, "east": 112.434067, @@ -3736,7 +3736,7 @@ "pbf_url": "https://download.geofabrik.de/asia/indonesia/java-latest.osm.pbf", "extract_bbox": "112.434067,-9.541155,116.5814,-6.746545", "source_region_id": "java", - "source_size_bytes": 894918961, + "source_size_bytes": 894892987, "west": 112.434067, "south": -9.541155, "east": 116.5814, @@ -3752,7 +3752,7 @@ "pbf_url": "https://download.geofabrik.de/asia/indonesia/java-latest.osm.pbf", "extract_bbox": "104.1394,-6.746545,108.286733,-3.951935", "source_region_id": "java", - "source_size_bytes": 894918961, + "source_size_bytes": 894892987, "west": 104.1394, "south": -6.746545, "east": 108.286733, @@ -3768,7 +3768,7 @@ "pbf_url": "https://download.geofabrik.de/asia/indonesia/java-latest.osm.pbf", "extract_bbox": "108.286733,-6.746545,112.434067,-3.951935", "source_region_id": "java", - "source_size_bytes": 894918961, + "source_size_bytes": 894892987, "west": 108.286733, "south": -6.746545, "east": 112.434067, @@ -3784,7 +3784,7 @@ "pbf_url": "https://download.geofabrik.de/asia/indonesia/java-latest.osm.pbf", "extract_bbox": "112.434067,-6.746545,116.5814,-3.951935", "source_region_id": "java", - "source_size_bytes": 894918961, + "source_size_bytes": 894892987, "west": 112.434067, "south": -6.746545, "east": 116.5814, @@ -3960,7 +3960,7 @@ "pbf_url": "https://download.geofabrik.de/europe/czech-republic/karlovarsky-latest.osm.pbf", "extract_bbox": "", "source_region_id": "karlovarsky", - "source_size_bytes": 30287218, + "source_size_bytes": 30292505, "west": 12.08477, "south": 49.88988, "east": 13.30247, @@ -4504,7 +4504,7 @@ "pbf_url": "https://download.geofabrik.de/europe/poland/lubelskie-latest.osm.pbf", "extract_bbox": "", "source_region_id": "lubelskie", - "source_size_bytes": 137999252, + "source_size_bytes": 138015871, "west": 21.60285, "south": 50.23654, "east": 24.16102, @@ -4536,7 +4536,7 @@ "pbf_url": "https://download.geofabrik.de/europe/luxembourg-latest.osm.pbf", "extract_bbox": "", "source_region_id": "luxembourg", - "source_size_bytes": 47230540, + "source_size_bytes": 47238710, "west": 5.733033, "south": 49.44553, "east": 6.532249, @@ -4664,7 +4664,7 @@ "pbf_url": "https://download.geofabrik.de/africa/mali-latest.osm.pbf", "extract_bbox": "", "source_region_id": "mali", - "source_size_bytes": 172832349, + "source_size_bytes": 172864915, "west": -12.24701, "south": 10.1176, "east": 4.330257, @@ -4696,7 +4696,7 @@ "pbf_url": "https://download.geofabrik.de/europe/malta-latest.osm.pbf", "extract_bbox": "", "source_region_id": "malta", - "source_size_bytes": 8830250, + "source_size_bytes": 8833574, "west": 14, "south": 35.51985, "east": 14.8561, @@ -4728,7 +4728,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/manitoba-latest.osm.pbf", "extract_bbox": "", "source_region_id": "manitoba", - "source_size_bytes": 206226306, + "source_size_bytes": 206223487, "west": -102.014, "south": 48.99056, "east": -88.12183, @@ -4792,7 +4792,7 @@ "pbf_url": "https://download.geofabrik.de/africa/mauritius-latest.osm.pbf", "extract_bbox": "", "source_region_id": "mauritius", - "source_size_bytes": 9499836, + "source_size_bytes": 9500395, "west": 53.54727, "south": -22.2411, "east": 64.66991, @@ -4824,7 +4824,7 @@ "pbf_url": "https://download.geofabrik.de/europe/poland/mazowieckie-latest.osm.pbf", "extract_bbox": "", "source_region_id": "mazowieckie", - "source_size_bytes": 297193083, + "source_size_bytes": 297207514, "west": 19.23355, "south": 50.98451, "east": 23.15637, @@ -4840,7 +4840,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/mecklenburg-vorpommern-latest.osm.pbf", "extract_bbox": "", "source_region_id": "mecklenburg-vorpommern", - "source_size_bytes": 126950919, + "source_size_bytes": 126953496, "west": 10.58807, "south": 53.10619, "east": 14.42292, @@ -4888,7 +4888,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/mexico-latest.osm.pbf", "extract_bbox": "", "source_region_id": "mexico", - "source_size_bytes": 640111576, + "source_size_bytes": 640418757, "west": -132.4952, "south": 9.456709, "east": -85.49087, @@ -5000,7 +5000,7 @@ "pbf_url": "https://download.geofabrik.de/europe/montenegro-latest.osm.pbf", "extract_bbox": "", "source_region_id": "montenegro", - "source_size_bytes": 33963643, + "source_size_bytes": 33961465, "west": 18.17282, "south": 41.61621, "east": 20.35883, @@ -5032,7 +5032,7 @@ "pbf_url": "https://download.geofabrik.de/africa/morocco-latest.osm.pbf", "extract_bbox": "", "source_region_id": "morocco", - "source_size_bytes": 243009765, + "source_size_bytes": 243013433, "west": -18.1835, "south": 20.40373, "east": -0.993576, @@ -5048,7 +5048,7 @@ "pbf_url": "https://download.geofabrik.de/africa/mozambique-latest.osm.pbf", "extract_bbox": "", "source_region_id": "mozambique", - "source_size_bytes": 254644299, + "source_size_bytes": 254690794, "west": 30.20742, "south": -26.93837, "east": 42.53489, @@ -5080,7 +5080,7 @@ "pbf_url": "https://download.geofabrik.de/europe/spain/murcia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "murcia", - "source_size_bytes": 35143706, + "source_size_bytes": 35144034, "west": -2.351246, "south": 37.11215, "east": -0.247194, @@ -5112,7 +5112,7 @@ "pbf_url": "https://download.geofabrik.de/africa/namibia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "namibia", - "source_size_bytes": 54089501, + "source_size_bytes": 54088004, "west": 9.784615, "south": -30.20686, "east": 25.26589, @@ -5144,7 +5144,7 @@ "pbf_url": "https://download.geofabrik.de/europe/spain/navarra-latest.osm.pbf", "extract_bbox": "", "source_region_id": "navarra", - "source_size_bytes": 37148539, + "source_size_bytes": 37150781, "west": -2.502308, "south": 41.90611, "east": -0.716515, @@ -5160,7 +5160,7 @@ "pbf_url": "https://download.geofabrik.de/asia/nepal-latest.osm.pbf", "extract_bbox": "", "source_region_id": "nepal", - "source_size_bytes": 411686693, + "source_size_bytes": 411712318, "west": 80.04913, "south": 26.3445, "east": 88.22213, @@ -5256,7 +5256,7 @@ "pbf_url": "https://download.geofabrik.de/central-america/nicaragua-latest.osm.pbf", "extract_bbox": "", "source_region_id": "nicaragua", - "source_size_bytes": 60809386, + "source_size_bytes": 60809400, "west": -87.9774, "south": 10.70177, "east": -82.37865, @@ -5288,7 +5288,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/niedersachsen-latest.osm.pbf", "extract_bbox": "", "source_region_id": "niedersachsen", - "source_size_bytes": 500869095, + "source_size_bytes": 500965846, "west": 6.295338, "south": 51.29348, "east": 11.60731, @@ -5368,7 +5368,7 @@ "pbf_url": "https://download.geofabrik.de/europe/netherlands/noord-brabant-latest.osm.pbf", "extract_bbox": "", "source_region_id": "noord-brabant", - "source_size_bytes": 206293093, + "source_size_bytes": 206300729, "west": 4.189152, "south": 51.21808, "east": 6.049354, @@ -5432,7 +5432,7 @@ "pbf_url": "https://download.geofabrik.de/europe/norway/nord-norge-latest.osm.pbf", "extract_bbox": "", "source_region_id": "nord-norge", - "source_size_bytes": 405321962, + "source_size_bytes": 405319114, "west": 7.840204, "south": 64.93917, "east": 33.63965, @@ -5496,7 +5496,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/norfolk-latest.osm.pbf", "extract_bbox": "", "source_region_id": "norfolk", - "source_size_bytes": 46587557, + "source_size_bytes": 46586050, "west": 0.15447, "south": 52.35478, "east": 1.992789, @@ -5688,7 +5688,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/northwest-territories-latest.osm.pbf", "extract_bbox": "", "source_region_id": "northwest-territories", - "source_size_bytes": 425522681, + "source_size_bytes": 425522084, "west": -136.6974, "south": 59.9896, "east": -101.976, @@ -5704,7 +5704,7 @@ "pbf_url": "https://download.geofabrik.de/russia/northwestern-fed-district-latest.osm.pbf", "extract_bbox": "", "source_region_id": "northwestern-fed-district", - "source_size_bytes": 647483692, + "source_size_bytes": 647575760, "west": 19.40837, "south": 54.31282, "east": 72.62481, @@ -5848,7 +5848,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/ontario-latest.osm.pbf", "extract_bbox": "-95.15965,41.66009,-84.734815,49.584175", "source_region_id": "ontario", - "source_size_bytes": 966871523, + "source_size_bytes": 966741555, "west": -95.15965, "south": 41.66009, "east": -84.734815, @@ -5864,7 +5864,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/ontario-latest.osm.pbf", "extract_bbox": "-84.734815,41.66009,-74.30998,49.584175", "source_region_id": "ontario", - "source_size_bytes": 966871523, + "source_size_bytes": 966741555, "west": -84.734815, "south": 41.66009, "east": -74.30998, @@ -5880,7 +5880,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/ontario-latest.osm.pbf", "extract_bbox": "-95.15965,49.584175,-84.734815,57.50826", "source_region_id": "ontario", - "source_size_bytes": 966871523, + "source_size_bytes": 966741555, "west": -95.15965, "south": 49.584175, "east": -84.734815, @@ -5896,7 +5896,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/canada/ontario-latest.osm.pbf", "extract_bbox": "-84.734815,49.584175,-74.30998,57.50826", "source_region_id": "ontario", - "source_size_bytes": 966871523, + "source_size_bytes": 966741555, "west": -84.734815, "south": 49.584175, "east": -74.30998, @@ -5976,7 +5976,7 @@ "pbf_url": "https://download.geofabrik.de/europe/spain/pais-vasco-latest.osm.pbf", "extract_bbox": "", "source_region_id": "pais-vasco", - "source_size_bytes": 68419158, + "source_size_bytes": 68425631, "west": -3.454342, "south": 42.46919, "east": -1.666284, @@ -6088,7 +6088,7 @@ "pbf_url": "https://download.geofabrik.de/europe/czech-republic/pardubicky-latest.osm.pbf", "extract_bbox": "", "source_region_id": "pardubicky", - "source_size_bytes": 54853820, + "source_size_bytes": 54857797, "west": 15.3626, "south": 49.57176, "east": 16.86804, @@ -6136,7 +6136,7 @@ "pbf_url": "https://download.geofabrik.de/asia/philippines-latest.osm.pbf", "extract_bbox": "", "source_region_id": "philippines", - "source_size_bytes": 602304155, + "source_size_bytes": 602338478, "west": 112.1661, "south": 4.382696, "east": 127.0742, @@ -6184,7 +6184,7 @@ "pbf_url": "https://download.geofabrik.de/europe/czech-republic/plzensky-latest.osm.pbf", "extract_bbox": "", "source_region_id": "plzensky", - "source_size_bytes": 70900853, + "source_size_bytes": 70891823, "west": 12.38887, "south": 48.93387, "east": 13.84247, @@ -6264,7 +6264,7 @@ "pbf_url": "https://download.geofabrik.de/europe/poland/pomorskie-latest.osm.pbf", "extract_bbox": "", "source_region_id": "pomorskie", - "source_size_bytes": 116012235, + "source_size_bytes": 115988202, "west": 16.68699, "south": 53.4806, "east": 19.66069, @@ -6328,7 +6328,7 @@ "pbf_url": "https://download.geofabrik.de/europe/france/provence-alpes-cote-d-azur-latest.osm.pbf", "extract_bbox": "", "source_region_id": "provence-alpes-cote-d-azur", - "source_size_bytes": 386169612, + "source_size_bytes": 386279282, "west": 4.144746, "south": 42.31539, "east": 7.748528, @@ -6440,7 +6440,7 @@ "pbf_url": "https://download.geofabrik.de/australia-oceania/australia/queensland-latest.osm.pbf", "extract_bbox": "", "source_region_id": "queensland", - "source_size_bytes": 196390507, + "source_size_bytes": 196417783, "west": 137.9902, "south": -29.1831, "east": 154.2005, @@ -6472,7 +6472,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/rheinland-pfalz-latest.osm.pbf", "extract_bbox": "", "source_region_id": "rheinland-pfalz", - "source_size_bytes": 265563564, + "source_size_bytes": 265489378, "west": 6.109129, "south": 48.96377, "east": 8.511228, @@ -6488,7 +6488,7 @@ "pbf_url": "https://download.geofabrik.de/europe/france/rhone-alpes-latest.osm.pbf", "extract_bbox": "", "source_region_id": "rhone-alpes", - "source_size_bytes": 524952644, + "source_size_bytes": 524885121, "west": 3.686075, "south": 44.11274, "east": 7.19206, @@ -6552,7 +6552,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/saarland-latest.osm.pbf", "extract_bbox": "", "source_region_id": "saarland", - "source_size_bytes": 54521770, + "source_size_bytes": 54529750, "west": 6.354475, "south": 49.10807, "east": 7.406287, @@ -6664,7 +6664,7 @@ "pbf_url": "https://download.geofabrik.de/europe/germany/schleswig-holstein-latest.osm.pbf", "extract_bbox": "", "source_region_id": "schleswig-holstein", - "source_size_bytes": 157137915, + "source_size_bytes": 157181968, "west": 7.46458, "south": 53.3569, "east": 11.79931, @@ -6696,7 +6696,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/scotland-latest.osm.pbf", "extract_bbox": "", "source_region_id": "scotland", - "source_size_bytes": 323264992, + "source_size_bytes": 323319923, "west": -14.86155, "south": 54.54001, "east": 0.216055, @@ -6712,7 +6712,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "90.65133,-11.60655,100.725404,1.78722", "source_region_id": "sea", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "west": 90.65133, "south": -11.60655, "east": 100.725404, @@ -6728,7 +6728,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "100.725404,-11.60655,110.799478,1.78722", "source_region_id": "sea", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "west": 100.725404, "south": -11.60655, "east": 110.799478, @@ -6744,7 +6744,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "110.799478,-11.60655,120.873552,1.78722", "source_region_id": "sea", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "west": 110.799478, "south": -11.60655, "east": 120.873552, @@ -6760,7 +6760,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "120.873552,-11.60655,130.947626,1.78722", "source_region_id": "sea", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "west": 120.873552, "south": -11.60655, "east": 130.947626, @@ -6776,7 +6776,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "130.947626,-11.60655,141.0217,1.78722", "source_region_id": "sea", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "west": 130.947626, "south": -11.60655, "east": 141.0217, @@ -6792,7 +6792,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "90.65133,1.78722,100.725404,15.18099", "source_region_id": "sea", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "west": 90.65133, "south": 1.78722, "east": 100.725404, @@ -6808,7 +6808,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "100.725404,1.78722,110.799478,15.18099", "source_region_id": "sea", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "west": 100.725404, "south": 1.78722, "east": 110.799478, @@ -6824,7 +6824,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "110.799478,1.78722,120.873552,15.18099", "source_region_id": "sea", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "west": 110.799478, "south": 1.78722, "east": 120.873552, @@ -6840,7 +6840,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "120.873552,1.78722,130.947626,15.18099", "source_region_id": "sea", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "west": 120.873552, "south": 1.78722, "east": 130.947626, @@ -6856,7 +6856,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "130.947626,1.78722,141.0217,15.18099", "source_region_id": "sea", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "west": 130.947626, "south": 1.78722, "east": 141.0217, @@ -6872,7 +6872,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "90.65133,15.18099,100.725404,28.57476", "source_region_id": "sea", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "west": 90.65133, "south": 15.18099, "east": 100.725404, @@ -6888,7 +6888,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "100.725404,15.18099,110.799478,28.57476", "source_region_id": "sea", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "west": 100.725404, "south": 15.18099, "east": 110.799478, @@ -6904,7 +6904,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "110.799478,15.18099,120.873552,28.57476", "source_region_id": "sea", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "west": 110.799478, "south": 15.18099, "east": 120.873552, @@ -6920,7 +6920,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "120.873552,15.18099,130.947626,28.57476", "source_region_id": "sea", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "west": 120.873552, "south": 15.18099, "east": 130.947626, @@ -6936,7 +6936,7 @@ "pbf_url": "https://download.geofabrik.de/asia/sea-latest.osm.pbf", "extract_bbox": "130.947626,15.18099,141.0217,28.57476", "source_region_id": "sea", - "source_size_bytes": 3634737562, + "source_size_bytes": 3634443322, "west": 130.947626, "south": 15.18099, "east": 141.0217, @@ -6952,7 +6952,7 @@ "pbf_url": "https://download.geofabrik.de/africa/senegal-and-gambia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "senegal-and-gambia", - "source_size_bytes": 105020105, + "source_size_bytes": 105020650, "west": -19.85623, "south": 12.01511, "east": -11.33595, @@ -7080,7 +7080,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/shropshire-latest.osm.pbf", "extract_bbox": "", "source_region_id": "shropshire", - "source_size_bytes": 24968736, + "source_size_bytes": 24965044, "west": -3.235577, "south": 52.30616, "east": -2.23354, @@ -7096,7 +7096,7 @@ "pbf_url": "https://download.geofabrik.de/russia/siberian-fed-district-latest.osm.pbf", "extract_bbox": "", "source_region_id": "siberian-fed-district", - "source_size_bytes": 581492717, + "source_size_bytes": 581459545, "west": 70.27478, "south": 49.02101, "east": 147.7133, @@ -7240,7 +7240,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/somerset-latest.osm.pbf", "extract_bbox": "", "source_region_id": "somerset", - "source_size_bytes": 49041706, + "source_size_bytes": 49055697, "west": -3.84094, "south": 50.81995, "east": -2.243303, @@ -7256,7 +7256,7 @@ "pbf_url": "https://download.geofabrik.de/europe/norway/sorlandet-latest.osm.pbf", "extract_bbox": "", "source_region_id": "sorlandet", - "source_size_bytes": 77011658, + "source_size_bytes": 77011267, "west": 5.698662, "south": 57.58445, "east": 10.10434, @@ -7336,7 +7336,7 @@ "pbf_url": "https://download.geofabrik.de/asia/south-korea-latest.osm.pbf", "extract_bbox": "", "source_region_id": "south-korea", - "source_size_bytes": 283988295, + "source_size_bytes": 284036989, "west": 124.3188, "south": 32.36076, "east": 132.3386, @@ -7352,7 +7352,7 @@ "pbf_url": "https://download.geofabrik.de/africa/south-sudan-latest.osm.pbf", "extract_bbox": "", "source_region_id": "south-sudan", - "source_size_bytes": 138119208, + "source_size_bytes": 138105431, "west": 23.42491, "south": 3.461547, "east": 35.96298, @@ -7448,7 +7448,7 @@ "pbf_url": "https://download.geofabrik.de/europe/czech-republic/stredocesky-latest.osm.pbf", "extract_bbox": "", "source_region_id": "stredocesky", - "source_size_bytes": 179906050, + "source_size_bytes": 179937601, "west": 13.39579, "south": 49.50088, "east": 15.53613, @@ -7480,7 +7480,7 @@ "pbf_url": "https://download.geofabrik.de/europe/italy/sud-latest.osm.pbf", "extract_bbox": "", "source_region_id": "sud", - "source_size_bytes": 411420954, + "source_size_bytes": 411484888, "west": 13.00131, "south": 37.80152, "east": 19.12499, @@ -7688,7 +7688,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/surrey-latest.osm.pbf", "extract_bbox": "", "source_region_id": "surrey", - "source_size_bytes": 42907032, + "source_size_bytes": 42908372, "west": -0.850593, "south": 51.0715, "east": 0.059897, @@ -7704,7 +7704,7 @@ "pbf_url": "https://download.geofabrik.de/europe/norway/svalbard-janmayen-latest.osm.pbf", "extract_bbox": "", "source_region_id": "svalbard-janmayen", - "source_size_bytes": 2724974, + "source_size_bytes": 2721428, "west": -10.49539, "south": 70.26127, "east": 35.34074, @@ -7720,7 +7720,7 @@ "pbf_url": "https://download.geofabrik.de/africa/swaziland-latest.osm.pbf", "extract_bbox": "", "source_region_id": "swaziland", - "source_size_bytes": 30568908, + "source_size_bytes": 30568840, "west": 30.78575, "south": -27.31826, "east": 32.13698, @@ -7864,7 +7864,7 @@ "pbf_url": "https://download.geofabrik.de/asia/thailand-latest.osm.pbf", "extract_bbox": "", "source_region_id": "thailand", - "source_size_bytes": 325606018, + "source_size_bytes": 325590987, "west": 97.13562, "south": 5.597877, "east": 105.6392, @@ -7992,7 +7992,7 @@ "pbf_url": "https://download.geofabrik.de/europe/norway/trondelag-latest.osm.pbf", "extract_bbox": "", "source_region_id": "trondelag", - "source_size_bytes": 182831545, + "source_size_bytes": 182830123, "west": 5.790873, "south": 62.25533, "east": 14.33543, @@ -8040,7 +8040,7 @@ "pbf_url": "https://download.geofabrik.de/europe/turkey-latest.osm.pbf", "extract_bbox": "", "source_region_id": "turkey", - "source_size_bytes": 639630267, + "source_size_bytes": 639696336, "west": 25.52398, "south": 35.717, "east": 44.85992, @@ -8088,7 +8088,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/tyne-and-wear-latest.osm.pbf", "extract_bbox": "", "source_region_id": "tyne-and-wear", - "source_size_bytes": 19304125, + "source_size_bytes": 19309052, "west": -1.853879, "south": 54.79775, "east": -1.262592, @@ -8120,7 +8120,7 @@ "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", "extract_bbox": "22.13264,44.00862,28.167797,48.19756", "source_region_id": "ukraine", - "source_size_bytes": 870539197, + "source_size_bytes": 870676344, "west": 22.13264, "south": 44.00862, "east": 28.167797, @@ -8136,7 +8136,7 @@ "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", "extract_bbox": "28.167797,44.00862,34.202953,48.19756", "source_region_id": "ukraine", - "source_size_bytes": 870539197, + "source_size_bytes": 870676344, "west": 28.167797, "south": 44.00862, "east": 34.202953, @@ -8152,7 +8152,7 @@ "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", "extract_bbox": "34.202953,44.00862,40.23811,48.19756", "source_region_id": "ukraine", - "source_size_bytes": 870539197, + "source_size_bytes": 870676344, "west": 34.202953, "south": 44.00862, "east": 40.23811, @@ -8168,7 +8168,7 @@ "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", "extract_bbox": "22.13264,48.19756,28.167797,52.3865", "source_region_id": "ukraine", - "source_size_bytes": 870539197, + "source_size_bytes": 870676344, "west": 22.13264, "south": 48.19756, "east": 28.167797, @@ -8184,7 +8184,7 @@ "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", "extract_bbox": "28.167797,48.19756,34.202953,52.3865", "source_region_id": "ukraine", - "source_size_bytes": 870539197, + "source_size_bytes": 870676344, "west": 28.167797, "south": 48.19756, "east": 34.202953, @@ -8200,7 +8200,7 @@ "pbf_url": "https://download.geofabrik.de/europe/ukraine-latest.osm.pbf", "extract_bbox": "34.202953,48.19756,40.23811,52.3865", "source_region_id": "ukraine", - "source_size_bytes": 870539197, + "source_size_bytes": 870676344, "west": 34.202953, "south": 48.19756, "east": 40.23811, @@ -8776,7 +8776,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-104.0588,35.98507,-98.170403,40.459093", "source_region_id": "us-midwest", - "source_size_bytes": 2474124802, + "source_size_bytes": 2474364429, "west": -104.0588, "south": 35.98507, "east": -98.170403, @@ -8792,7 +8792,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-98.170403,35.98507,-92.282005,40.459093", "source_region_id": "us-midwest", - "source_size_bytes": 2474124802, + "source_size_bytes": 2474364429, "west": -98.170403, "south": 35.98507, "east": -92.282005, @@ -8808,7 +8808,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-92.282005,35.98507,-86.393608,40.459093", "source_region_id": "us-midwest", - "source_size_bytes": 2474124802, + "source_size_bytes": 2474364429, "west": -92.282005, "south": 35.98507, "east": -86.393608, @@ -8824,7 +8824,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-86.393608,35.98507,-80.50521,40.459093", "source_region_id": "us-midwest", - "source_size_bytes": 2474124802, + "source_size_bytes": 2474364429, "west": -86.393608, "south": 35.98507, "east": -80.50521, @@ -8840,7 +8840,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-104.0588,40.459093,-98.170403,44.933117", "source_region_id": "us-midwest", - "source_size_bytes": 2474124802, + "source_size_bytes": 2474364429, "west": -104.0588, "south": 40.459093, "east": -98.170403, @@ -8856,7 +8856,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-98.170403,40.459093,-92.282005,44.933117", "source_region_id": "us-midwest", - "source_size_bytes": 2474124802, + "source_size_bytes": 2474364429, "west": -98.170403, "south": 40.459093, "east": -92.282005, @@ -8872,7 +8872,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-92.282005,40.459093,-86.393608,44.933117", "source_region_id": "us-midwest", - "source_size_bytes": 2474124802, + "source_size_bytes": 2474364429, "west": -92.282005, "south": 40.459093, "east": -86.393608, @@ -8888,7 +8888,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-86.393608,40.459093,-80.50521,44.933117", "source_region_id": "us-midwest", - "source_size_bytes": 2474124802, + "source_size_bytes": 2474364429, "west": -86.393608, "south": 40.459093, "east": -80.50521, @@ -8904,7 +8904,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-104.0588,44.933117,-98.170403,49.40714", "source_region_id": "us-midwest", - "source_size_bytes": 2474124802, + "source_size_bytes": 2474364429, "west": -104.0588, "south": 44.933117, "east": -98.170403, @@ -8920,7 +8920,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-98.170403,44.933117,-92.282005,49.40714", "source_region_id": "us-midwest", - "source_size_bytes": 2474124802, + "source_size_bytes": 2474364429, "west": -98.170403, "south": 44.933117, "east": -92.282005, @@ -8936,7 +8936,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-92.282005,44.933117,-86.393608,49.40714", "source_region_id": "us-midwest", - "source_size_bytes": 2474124802, + "source_size_bytes": 2474364429, "west": -92.282005, "south": 44.933117, "east": -86.393608, @@ -8952,7 +8952,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-midwest-latest.osm.pbf", "extract_bbox": "-86.393608,44.933117,-80.50521,49.40714", "source_region_id": "us-midwest", - "source_size_bytes": 2474124802, + "source_size_bytes": 2474364429, "west": -86.393608, "south": 44.933117, "east": -80.50521, @@ -9368,7 +9368,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", "extract_bbox": "-133.0637,31.32659,-125.30665,37.369743", "source_region_id": "us-west", - "source_size_bytes": 3374891428, + "source_size_bytes": 3375200481, "west": -133.0637, "south": 31.32659, "east": -125.30665, @@ -9384,7 +9384,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", "extract_bbox": "-125.30665,31.32659,-117.5496,37.369743", "source_region_id": "us-west", - "source_size_bytes": 3374891428, + "source_size_bytes": 3375200481, "west": -125.30665, "south": 31.32659, "east": -117.5496, @@ -9400,7 +9400,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", "extract_bbox": "-117.5496,31.32659,-109.79255,37.369743", "source_region_id": "us-west", - "source_size_bytes": 3374891428, + "source_size_bytes": 3375200481, "west": -117.5496, "south": 31.32659, "east": -109.79255, @@ -9416,7 +9416,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", "extract_bbox": "-109.79255,31.32659,-102.0355,37.369743", "source_region_id": "us-west", - "source_size_bytes": 3374891428, + "source_size_bytes": 3375200481, "west": -109.79255, "south": 31.32659, "east": -102.0355, @@ -9432,7 +9432,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", "extract_bbox": "-133.0637,37.369743,-125.30665,43.412897", "source_region_id": "us-west", - "source_size_bytes": 3374891428, + "source_size_bytes": 3375200481, "west": -133.0637, "south": 37.369743, "east": -125.30665, @@ -9448,7 +9448,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", "extract_bbox": "-125.30665,37.369743,-117.5496,43.412897", "source_region_id": "us-west", - "source_size_bytes": 3374891428, + "source_size_bytes": 3375200481, "west": -125.30665, "south": 37.369743, "east": -117.5496, @@ -9464,7 +9464,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", "extract_bbox": "-117.5496,37.369743,-109.79255,43.412897", "source_region_id": "us-west", - "source_size_bytes": 3374891428, + "source_size_bytes": 3375200481, "west": -117.5496, "south": 37.369743, "east": -109.79255, @@ -9480,7 +9480,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", "extract_bbox": "-109.79255,37.369743,-102.0355,43.412897", "source_region_id": "us-west", - "source_size_bytes": 3374891428, + "source_size_bytes": 3375200481, "west": -109.79255, "south": 37.369743, "east": -102.0355, @@ -9496,7 +9496,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", "extract_bbox": "-133.0637,43.412897,-125.30665,49.45605", "source_region_id": "us-west", - "source_size_bytes": 3374891428, + "source_size_bytes": 3375200481, "west": -133.0637, "south": 43.412897, "east": -125.30665, @@ -9512,7 +9512,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", "extract_bbox": "-125.30665,43.412897,-117.5496,49.45605", "source_region_id": "us-west", - "source_size_bytes": 3374891428, + "source_size_bytes": 3375200481, "west": -125.30665, "south": 43.412897, "east": -117.5496, @@ -9528,7 +9528,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", "extract_bbox": "-117.5496,43.412897,-109.79255,49.45605", "source_region_id": "us-west", - "source_size_bytes": 3374891428, + "source_size_bytes": 3375200481, "west": -117.5496, "south": 43.412897, "east": -109.79255, @@ -9544,7 +9544,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us-west-latest.osm.pbf", "extract_bbox": "-109.79255,43.412897,-102.0355,49.45605", "source_region_id": "us-west", - "source_size_bytes": 3374891428, + "source_size_bytes": 3375200481, "west": -109.79255, "south": 43.412897, "east": -102.0355, @@ -9624,7 +9624,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/colorado-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/colorado", - "source_size_bytes": 376718801, + "source_size_bytes": 376678263, "west": -109.0631, "south": 36.98943, "east": -102.0355, @@ -9672,7 +9672,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/district-of-columbia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/district-of-columbia", - "source_size_bytes": 20905068, + "source_size_bytes": 20904984, "west": -77.1201, "south": 38.79099, "east": -76.90906, @@ -9704,7 +9704,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/georgia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/georgia", - "source_size_bytes": 354500394, + "source_size_bytes": 354493687, "west": -85.6068, "south": 30.35365, "east": -80.74313, @@ -9752,7 +9752,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/illinois-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/illinois", - "source_size_bytes": 355233305, + "source_size_bytes": 355259312, "west": -91.51608, "south": 36.96731, "east": -87.49264, @@ -9768,7 +9768,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/indiana-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/indiana", - "source_size_bytes": 196374308, + "source_size_bytes": 196397277, "west": -88.10327, "south": 37.76911, "east": -84.78042, @@ -9848,7 +9848,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/maine-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/maine", - "source_size_bytes": 90382561, + "source_size_bytes": 90385082, "west": -71.08891, "south": 42.85443, "east": -66.87164, @@ -9880,7 +9880,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/massachusetts-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/massachusetts", - "source_size_bytes": 308879781, + "source_size_bytes": 308857402, "west": -73.51096, "south": 40.88291, "east": -68.73438, @@ -10040,7 +10040,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/new-mexico-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/new-mexico", - "source_size_bytes": 135630193, + "source_size_bytes": 135625836, "west": -109.0504, "south": 31.33043, "east": -102.9979, @@ -10088,7 +10088,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/north-dakota-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/north-dakota", - "source_size_bytes": 127113855, + "source_size_bytes": 127107036, "west": -104.053, "south": 45.93448, "east": -96.55292, @@ -10104,7 +10104,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/ohio-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/ohio", - "source_size_bytes": 320415349, + "source_size_bytes": 320387909, "west": -84.8219, "south": 38.40076, "east": -80.50521, @@ -10120,7 +10120,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/oklahoma-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/oklahoma", - "source_size_bytes": 167366901, + "source_size_bytes": 167390902, "west": -103.0078, "south": 33.61348, "east": -94.42989, @@ -10136,7 +10136,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/oregon-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/oregon", - "source_size_bytes": 251849516, + "source_size_bytes": 251817259, "west": -126.3879, "south": 41.9634, "east": -116.4545, @@ -10152,7 +10152,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/pennsylvania-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/pennsylvania", - "source_size_bytes": 343211456, + "source_size_bytes": 343253730, "west": -80.52275, "south": 39.6644, "east": -74.68761, @@ -10168,7 +10168,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/puerto-rico-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/puerto-rico", - "source_size_bytes": 73573365, + "source_size_bytes": 73569101, "west": -68.31024, "south": 17.51573, "east": -65.09262, @@ -10184,7 +10184,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/rhode-island-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/rhode-island", - "source_size_bytes": 51806151, + "source_size_bytes": 51800671, "west": -71.91456, "south": 40.9992, "east": -71.06369, @@ -10232,7 +10232,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/tennessee-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/tennessee", - "source_size_bytes": 186694392, + "source_size_bytes": 186730083, "west": -90.31329, "south": 34.98269, "east": -81.64416, @@ -10312,7 +10312,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/virginia-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/virginia", - "source_size_bytes": 425819810, + "source_size_bytes": 425797998, "west": -83.67841, "south": 36.53798, "east": -74.29751, @@ -10328,7 +10328,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/washington-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/washington", - "source_size_bytes": 359484790, + "source_size_bytes": 359544747, "west": -126.7423, "south": 45.53882, "east": -116.9115, @@ -10376,7 +10376,7 @@ "pbf_url": "https://download.geofabrik.de/north-america/us/wyoming-latest.osm.pbf", "extract_bbox": "", "source_region_id": "us/wyoming", - "source_size_bytes": 92632160, + "source_size_bytes": 92610064, "west": -111.0576, "south": 40.98339, "east": -103.9413, @@ -10472,7 +10472,7 @@ "pbf_url": "https://download.geofabrik.de/south-america/venezuela-latest.osm.pbf", "extract_bbox": "", "source_region_id": "venezuela", - "source_size_bytes": 124418720, + "source_size_bytes": 124487584, "west": -73.38098, "south": 0.621727, "east": -59.51474, @@ -10488,7 +10488,7 @@ "pbf_url": "https://download.geofabrik.de/europe/norway/vestlandet-latest.osm.pbf", "extract_bbox": "", "source_region_id": "vestlandet", - "source_size_bytes": 256509989, + "source_size_bytes": 256496198, "west": 2.32908, "south": 57.63122, "east": 9.374655, @@ -10568,7 +10568,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/wales-latest.osm.pbf", "extract_bbox": "", "source_region_id": "wales", - "source_size_bytes": 145537357, + "source_size_bytes": 145556615, "west": -6.183241, "south": 51.03997, "east": -2.648042, @@ -10648,7 +10648,7 @@ "pbf_url": "https://download.geofabrik.de/europe/united-kingdom/england/west-sussex-latest.osm.pbf", "extract_bbox": "", "source_region_id": "west-sussex", - "source_size_bytes": 48942746, + "source_size_bytes": 48927707, "west": -0.956244, "south": 50.70685, "east": 0.041342, @@ -10696,7 +10696,7 @@ "pbf_url": "https://download.geofabrik.de/asia/india/western-zone-latest.osm.pbf", "extract_bbox": "", "source_region_id": "western-zone", - "source_size_bytes": 218493679, + "source_size_bytes": 218524741, "west": 67.67457, "south": 14.38929, "east": 80.91362, @@ -10856,7 +10856,7 @@ "pbf_url": "https://download.geofabrik.de/europe/netherlands/zeeland-latest.osm.pbf", "extract_bbox": "", "source_region_id": "zeeland", - "source_size_bytes": 43775347, + "source_size_bytes": 43775183, "west": 3.233941, "south": 51.19717, "east": 4.278407, @@ -10888,7 +10888,7 @@ "pbf_url": "https://download.geofabrik.de/africa/zimbabwe-latest.osm.pbf", "extract_bbox": "", "source_region_id": "zimbabwe", - "source_size_bytes": 178987954, + "source_size_bytes": 178989150, "west": 25.2229, "south": -22.44725, "east": 33.08541,