diff --git a/src/app/Console/Commands/ImportWorldHeritageSiteFromSplitFile.php b/src/app/Console/Commands/ImportWorldHeritageSiteFromSplitFile.php index 243f0498..aa08bba0 100644 --- a/src/app/Console/Commands/ImportWorldHeritageSiteFromSplitFile.php +++ b/src/app/Console/Commands/ImportWorldHeritageSiteFromSplitFile.php @@ -93,6 +93,7 @@ public function handle(): int 'area_hectares' => $this->toNullableFloat($row['area_hectares'] ?? null), 'buffer_zone_hectares' => $this->toNullableFloat($row['buffer_zone_hectares'] ?? null), 'is_endangered' => $this->toNullableBoolInt($row['is_endangered'] ?? null), + 'is_transboundary' => $this->toNullableBoolInt($row['is_transboundary'] ?? null), 'latitude' => $this->toNullableFloat($row['latitude'] ?? null), 'longitude' => $this->toNullableFloat($row['longitude'] ?? null), 'short_description' => $this->toNullableString($row['short_description'] ?? null), diff --git a/src/app/Console/Commands/SplitWorldHeritageJson.php b/src/app/Console/Commands/SplitWorldHeritageJson.php index 2c4d6ef4..f4f38e7c 100644 --- a/src/app/Console/Commands/SplitWorldHeritageJson.php +++ b/src/app/Console/Commands/SplitWorldHeritageJson.php @@ -737,6 +737,7 @@ private function normalizeSiteRowImportReady(array $row, int $siteId): array 'criteria' => $criteria, 'year_inscribed' => (isset($row['date_inscribed']) && is_numeric($row['date_inscribed'])) ? (int) $row['date_inscribed'] : null, 'is_endangered' => $this->boolFromDanger($row['danger'] ?? null), + 'is_transboundary' => $this->boolFromDanger($row['transboundary'] ?? null), 'area_hectares' => isset($row['area_hectares']) ? (is_numeric($row['area_hectares']) ? (float) $row['area_hectares'] : null) : null, 'buffer_zone_hectares' => isset($row['buffer_zone_hectares']) ? (is_numeric($row['buffer_zone_hectares']) ? (float) $row['buffer_zone_hectares'] : null) : null, 'latitude' => isset($lat) ? (is_numeric($lat) ? (float) $lat : null) : null, @@ -789,6 +790,10 @@ private function mergeSiteRowPreferExisting(array $existing, array $incoming): a $existing['is_endangered'] = $this->boolFromDanger($incoming['danger'] ?? null); } + if (($existing['is_transboundary'] ?? false) === false) { + $existing['is_transboundary'] = $this->boolFromDanger($incoming['transboundary'] ?? null); + } + if (($existing['state_party'] ?? null) === null) { $iso2List = $this->extractIsoCodes($incoming['iso_codes'] ?? null); if (count($iso2List) === 1) { diff --git a/src/app/Models/WorldHeritage.php b/src/app/Models/WorldHeritage.php index f0722e6d..daa58c2e 100644 --- a/src/app/Models/WorldHeritage.php +++ b/src/app/Models/WorldHeritage.php @@ -31,6 +31,7 @@ class WorldHeritage extends Model 'area_hectares', 'buffer_zone_hectares', 'is_endangered', + 'is_transboundary', 'latitude', 'longitude', 'short_description', @@ -71,6 +72,7 @@ protected function casts(): array return [ 'criteria' => 'array', 'is_endangered' => 'boolean', + 'is_transboundary' => 'boolean', 'year_inscribed' => 'integer', 'area_hectares' => 'float', 'buffer_zone_hectares' => 'float', diff --git a/src/app/Packages/Domains/WorldHeritage/Tests/ImportWorldHeritageSiteFromSplitFileIsTransboundaryTest.php b/src/app/Packages/Domains/WorldHeritage/Tests/ImportWorldHeritageSiteFromSplitFileIsTransboundaryTest.php new file mode 100644 index 00000000..97cfbfdc --- /dev/null +++ b/src/app/Packages/Domains/WorldHeritage/Tests/ImportWorldHeritageSiteFromSplitFileIsTransboundaryTest.php @@ -0,0 +1,76 @@ +truncate(); + } + + protected function tearDown(): void + { + $this->truncate(); + parent::tearDown(); + } + + private function truncate(): void + { + DB::connection('mysql')->statement('SET FOREIGN_KEY_CHECKS=0;'); + WorldHeritage::truncate(); + DB::connection('mysql')->statement('SET FOREIGN_KEY_CHECKS=1;'); + } + + private function writeSplitFile(array $sites): string + { + Storage::fake('local'); + + $path = 'unesco/normalized/test_world_heritage_sites.json'; + Storage::disk('local')->put($path, json_encode(['results' => $sites])); + + return $path; + } + + public function test_import_persists_is_transboundary_true(): void + { + $path = $this->writeSplitFile([[ + 'id' => 9001, + 'official_name' => 'Transboundary Test Site', + 'name' => 'Transboundary Test Site', + 'region' => 'EUR', + 'category' => 'Cultural', + 'criteria' => ['i'], + 'year_inscribed' => 2000, + 'is_transboundary' => true, + ]]); + + Artisan::call('world-heritage:import-sites-split', ['--in' => $path]); + + $this->assertTrue(WorldHeritage::find(9001)->is_transboundary); + } + + public function test_import_persists_is_transboundary_false_when_missing(): void + { + $path = $this->writeSplitFile([[ + 'id' => 9002, + 'official_name' => 'Single Country Test Site', + 'name' => 'Single Country Test Site', + 'region' => 'EUR', + 'category' => 'Cultural', + 'criteria' => ['i'], + 'year_inscribed' => 2000, + ]]); + + Artisan::call('world-heritage:import-sites-split', ['--in' => $path]); + + $this->assertFalse(WorldHeritage::find(9002)->is_transboundary); + } +} diff --git a/src/app/Packages/Domains/WorldHeritage/Tests/SplitWorldHeritageJsonIsTransboundaryTest.php b/src/app/Packages/Domains/WorldHeritage/Tests/SplitWorldHeritageJsonIsTransboundaryTest.php new file mode 100644 index 00000000..feabe2c7 --- /dev/null +++ b/src/app/Packages/Domains/WorldHeritage/Tests/SplitWorldHeritageJsonIsTransboundaryTest.php @@ -0,0 +1,62 @@ +setAccessible(true); + + return $method->invoke($command, $row, $siteId); + } + + private function invokeMerge(array $existing, array $incoming): array + { + $command = new SplitWorldHeritageJson(); + $method = new ReflectionMethod($command, 'mergeSiteRowPreferExisting'); + $method->setAccessible(true); + + return $method->invoke($command, $existing, $incoming); + } + + public function test_normalizeSiteRowImportReady_carries_transboundary_true(): void + { + $result = $this->invokeNormalize(['id_no' => 1, 'transboundary' => true], 1); + + $this->assertTrue($result['is_transboundary']); + } + + public function test_normalizeSiteRowImportReady_defaults_transboundary_to_false_when_missing(): void + { + $result = $this->invokeNormalize(['id_no' => 1], 1); + + $this->assertFalse($result['is_transboundary']); + } + + public function test_mergeSiteRowPreferExisting_fills_transboundary_from_incoming_when_existing_is_false(): void + { + $existing = $this->invokeNormalize(['id_no' => 1], 1); + $incoming = ['transboundary' => true]; + + $result = $this->invokeMerge($existing, $incoming); + + $this->assertTrue($result['is_transboundary']); + } + + public function test_mergeSiteRowPreferExisting_keeps_transboundary_true_once_set(): void + { + $existing = $this->invokeNormalize(['id_no' => 1, 'transboundary' => true], 1); + $incoming = ['transboundary' => false]; + + $result = $this->invokeMerge($existing, $incoming); + + $this->assertTrue($result['is_transboundary']); + } +} diff --git a/src/database/migrations/2026_09_06_193548_add_is_transboundary_to_world_heritage_sites_table.php b/src/database/migrations/2026_09_06_193548_add_is_transboundary_to_world_heritage_sites_table.php new file mode 100644 index 00000000..f85aa531 --- /dev/null +++ b/src/database/migrations/2026_09_06_193548_add_is_transboundary_to_world_heritage_sites_table.php @@ -0,0 +1,28 @@ +boolean('is_transboundary')->default(false)->after('is_endangered'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('world_heritage_sites', function (Blueprint $table) { + $table->dropColumn('is_transboundary'); + }); + } +}; diff --git a/src/storage/app/private/unesco/normalized/world_heritage_sites.json b/src/storage/app/private/unesco/normalized/world_heritage_sites.json index e6303f03..46a21bda 100644 --- a/src/storage/app/private/unesco/normalized/world_heritage_sites.json +++ b/src/storage/app/private/unesco/normalized/world_heritage_sites.json @@ -2,7 +2,7 @@ "meta": { "schema": "world_heritage_sites.import.v1", "source_raw": "unesco/world-heritage-sites.json", - "generated_at": "2026-06-26T08:46:51+09:00", + "generated_at": "2026-09-06T19:39:29+09:00", "rows_scanned": 1248, "sites": 1248, "target_table": "world_heritage_sites" @@ -26,6 +26,7 @@ ], "year_inscribed": 1978, "is_endangered": false, + "is_transboundary": false, "area_hectares": 14066514, "buffer_zone_hectares": null, "latitude": -0.68986, @@ -50,6 +51,7 @@ ], "year_inscribed": 1978, "is_endangered": false, + "is_transboundary": false, "area_hectares": 70.43, "buffer_zone_hectares": null, "latitude": -0.22, @@ -75,6 +77,7 @@ ], "year_inscribed": 1978, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.2, "buffer_zone_hectares": null, "latitude": 50.7747468537, @@ -98,6 +101,7 @@ ], "year_inscribed": 1978, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7991, "buffer_zone_hectares": null, "latitude": 51.5847222222, @@ -121,6 +125,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 12600, "buffer_zone_hectares": null, "latitude": 37.16361, @@ -145,6 +150,7 @@ ], "year_inscribed": 1978, "is_endangered": false, + "is_transboundary": false, "area_hectares": 13600, "buffer_zone_hectares": null, "latitude": 13.1833333333, @@ -170,6 +176,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 11.10006, @@ -194,6 +201,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 8.43491, @@ -219,6 +227,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 8.7034722222, @@ -243,6 +252,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 14.13019, @@ -267,6 +277,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 4.8, @@ -292,6 +303,7 @@ ], "year_inscribed": 1978, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 12.02935, @@ -316,6 +328,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 12.607909, @@ -342,6 +355,7 @@ ], "year_inscribed": 1979, "is_endangered": true, + "is_transboundary": false, "area_hectares": 86.12, "buffer_zone_hectares": null, "latitude": 33.5108333333, @@ -366,6 +380,7 @@ ], "year_inscribed": 1986, "is_endangered": true, + "is_transboundary": false, "area_hectares": 364, "buffer_zone_hectares": null, "latitude": 36.1991666667, @@ -390,6 +405,7 @@ ], "year_inscribed": 1980, "is_endangered": true, + "is_transboundary": false, "area_hectares": 116.2, "buffer_zone_hectares": null, "latitude": 32.5191666667, @@ -415,6 +431,7 @@ ], "year_inscribed": 1980, "is_endangered": true, + "is_transboundary": false, "area_hectares": 1640, "buffer_zone_hectares": null, "latitude": 34.5541666667, @@ -439,6 +456,7 @@ ], "year_inscribed": 1978, "is_endangered": false, + "is_transboundary": false, "area_hectares": 476560, "buffer_zone_hectares": null, "latitude": 61.54722222, @@ -463,6 +481,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 16000, "buffer_zone_hectares": null, "latitude": 16.414602, @@ -486,6 +505,7 @@ ], "year_inscribed": 1978, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 14.66722, @@ -509,6 +529,7 @@ ], "year_inscribed": 1978, "is_endangered": false, + "is_transboundary": false, "area_hectares": 21043, "buffer_zone_hectares": null, "latitude": 37.26166667, @@ -535,6 +556,7 @@ ], "year_inscribed": 1978, "is_endangered": false, + "is_transboundary": false, "area_hectares": 898349, "buffer_zone_hectares": null, "latitude": 44.46056, @@ -558,6 +580,7 @@ ], "year_inscribed": 1978, "is_endangered": false, + "is_transboundary": false, "area_hectares": 149.65, "buffer_zone_hectares": null, "latitude": 50.0613888889, @@ -581,6 +604,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 25.93, "buffer_zone_hectares": null, "latitude": 52.25, @@ -604,6 +628,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 191.97, "buffer_zone_hectares": null, "latitude": 50.0388888889, @@ -627,6 +652,7 @@ ], "year_inscribed": 1978, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1104.947, "buffer_zone_hectares": null, "latitude": 49.9791666667, @@ -651,6 +677,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": true, "area_hectares": 141885, "buffer_zone_hectares": null, "latitude": 52.7275, @@ -674,6 +701,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 5.39103, @@ -697,6 +725,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 6.4011111111, @@ -722,6 +751,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 296.41, "buffer_zone_hectares": null, "latitude": 36.81667, @@ -746,6 +776,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 498.08, "buffer_zone_hectares": null, "latitude": 36.85278, @@ -769,6 +800,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.37, "buffer_zone_hectares": null, "latitude": 35.29639, @@ -796,6 +828,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 809440, "buffer_zone_hectares": null, "latitude": -3.18722, @@ -820,6 +853,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.68, "buffer_zone_hectares": null, "latitude": 42.6451666667, @@ -844,6 +878,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.2, "buffer_zone_hectares": null, "latitude": 43.2774166667, @@ -869,6 +904,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.0155, "buffer_zone_hectares": null, "latitude": 42.625774, @@ -893,6 +929,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 171.9, "buffer_zone_hectares": null, "latitude": 43.694858, @@ -918,6 +955,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 16510, "buffer_zone_hectares": null, "latitude": 62.5738888889, @@ -943,6 +981,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.21, "buffer_zone_hectares": null, "latitude": 61.2982594908, @@ -966,6 +1005,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.268, "buffer_zone_hectares": null, "latitude": 60.39722, @@ -991,6 +1031,7 @@ ], "year_inscribed": 1979, "is_endangered": true, + "is_transboundary": false, "area_hectares": 800000, "buffer_zone_hectares": null, "latitude": 0.916666667, @@ -1018,6 +1059,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 57600, "buffer_zone_hectares": null, "latitude": 17.21666667, @@ -1043,6 +1085,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 14.556504, @@ -1067,6 +1110,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7825, "buffer_zone_hectares": null, "latitude": 50.76777778, @@ -1093,6 +1137,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": true, "area_hectares": 9839121, "buffer_zone_hectares": null, "latitude": 61.19758333, @@ -1119,6 +1164,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 493270, "buffer_zone_hectares": null, "latitude": 36.10083333, @@ -1144,6 +1190,7 @@ ], "year_inscribed": 1979, "is_endangered": true, + "is_transboundary": false, "area_hectares": 567017, "buffer_zone_hectares": null, "latitude": 25.55444444, @@ -1167,6 +1214,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2, "buffer_zone_hectares": null, "latitude": 39.94861111, @@ -1190,6 +1238,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 162.0171, "buffer_zone_hectares": null, "latitude": 34.75833, @@ -1214,6 +1263,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 6560, "buffer_zone_hectares": null, "latitude": 48.63556, @@ -1239,6 +1289,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.06, "buffer_zone_hectares": null, "latitude": 48.4475, @@ -1263,6 +1314,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1070, "buffer_zone_hectares": null, "latitude": 48.805, @@ -1286,6 +1338,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 183, "buffer_zone_hectares": null, "latitude": 47.46638889, @@ -1310,6 +1363,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 105.733, "buffer_zone_hectares": null, "latitude": 45.0575, @@ -1334,6 +1388,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 16358.52, "buffer_zone_hectares": null, "latitude": 29.97604, @@ -1358,6 +1413,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7390.16, "buffer_zone_hectares": null, "latitude": 25.73333, @@ -1382,6 +1438,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 374.48, "buffer_zone_hectares": null, "latitude": 22.3372222222, @@ -1406,6 +1463,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 523.66, "buffer_zone_hectares": null, "latitude": 30.05, @@ -1429,6 +1487,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 182.72, "buffer_zone_hectares": null, "latitude": 30.8358333333, @@ -1455,6 +1514,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": true, "area_hectares": 1469.7, "buffer_zone_hectares": null, "latitude": 41.89022222, @@ -1479,6 +1539,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.5, "buffer_zone_hectares": null, "latitude": 45.466, @@ -1502,6 +1563,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 432.3, "buffer_zone_hectares": null, "latitude": 45.95705556, @@ -1527,6 +1589,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 96.7, "buffer_zone_hectares": null, "latitude": 42.6414211111, @@ -1551,6 +1614,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 198.72, "buffer_zone_hectares": null, "latitude": 43.11889, @@ -1576,6 +1640,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 20.8, "buffer_zone_hectares": null, "latitude": 43.5088888889, @@ -1601,6 +1666,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 29581.71, "buffer_zone_hectares": null, "latitude": 44.87778, @@ -1627,6 +1693,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": true, "area_hectares": 94728.6, "buffer_zone_hectares": null, "latitude": 40.9918333333, @@ -1652,6 +1719,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 32100, "buffer_zone_hectares": null, "latitude": 43.133, @@ -1675,6 +1743,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 150, "buffer_zone_hectares": null, "latitude": 35.81844, @@ -1699,6 +1768,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 215000, "buffer_zone_hectares": null, "latitude": 6.7977777778, @@ -1723,6 +1793,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 32.00857, @@ -1747,6 +1818,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 12.5, "buffer_zone_hectares": null, "latitude": 29.93444, @@ -1771,6 +1843,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 13, "buffer_zone_hectares": null, "latitude": 32.65745, @@ -1795,6 +1868,7 @@ ], "year_inscribed": 1988, "is_endangered": true, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 13.90639, @@ -1820,6 +1894,7 @@ ], "year_inscribed": 1988, "is_endangered": true, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 16.77333333, @@ -1843,6 +1918,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 124400, "buffer_zone_hectares": null, "latitude": 27.96528, @@ -1867,6 +1943,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 167.37, "buffer_zone_hectares": null, "latitude": 27.70395, @@ -1891,6 +1968,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 167.8, "buffer_zone_hectares": null, "latitude": -20.38888889, @@ -1917,6 +1995,7 @@ ], "year_inscribed": 1979, "is_endangered": false, + "is_transboundary": false, "area_hectares": 14600, "buffer_zone_hectares": null, "latitude": 42.48333, @@ -1940,6 +2019,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 15.095, "buffer_zone_hectares": null, "latitude": 14.85, @@ -1963,6 +2043,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.13, "buffer_zone_hectares": null, "latitude": 35.8695900049, @@ -1986,6 +2067,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 74.66, "buffer_zone_hectares": null, "latitude": 35.90056, @@ -2009,6 +2091,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3.155, "buffer_zone_hectares": null, "latitude": 36.04908, @@ -2033,6 +2116,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 41571, "buffer_zone_hectares": null, "latitude": 41.37388889, @@ -2057,6 +2141,7 @@ ], "year_inscribed": 1980, "is_endangered": true, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 9.553888889, @@ -2081,6 +2166,7 @@ ], "year_inscribed": 1980, "is_endangered": true, + "is_transboundary": false, "area_hectares": 500000, "buffer_zone_hectares": null, "latitude": 4, @@ -2104,6 +2190,7 @@ ], "year_inscribed": 1980, "is_endangered": true, + "is_transboundary": false, "area_hectares": 600000, "buffer_zone_hectares": null, "latitude": -2.334053, @@ -2128,6 +2215,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 240, "buffer_zone_hectares": null, "latitude": 27.32916667, @@ -2151,6 +2239,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 33.77916667, @@ -2174,6 +2263,7 @@ ], "year_inscribed": 1980, "is_endangered": false, + "is_transboundary": false, "area_hectares": 50.73, "buffer_zone_hectares": null, "latitude": 34.32083333, @@ -2197,6 +2287,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 24.76666667, @@ -2220,6 +2311,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": -8.95778, @@ -2244,6 +2336,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 726927, "buffer_zone_hectares": null, "latitude": -50, @@ -2270,6 +2363,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1980994.92, "buffer_zone_hectares": null, "latitude": -12.83333333, @@ -2294,6 +2388,7 @@ ], "year_inscribed": 1981, "is_endangered": true, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 31.7777777778, @@ -2319,6 +2414,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 34, "buffer_zone_hectares": null, "latitude": 15.27059, @@ -2344,6 +2440,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 21191, "buffer_zone_hectares": null, "latitude": 37.18722222, @@ -2368,6 +2465,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 369659.8, "buffer_zone_hectares": null, "latitude": 47.74833333, @@ -2391,6 +2489,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 913000, "buffer_zone_hectares": null, "latitude": 13.011, @@ -2417,6 +2516,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 34870000, "buffer_zone_hectares": null, "latitude": -18.28611111, @@ -2441,6 +2541,7 @@ ], "year_inscribed": 1981, "is_endangered": true, + "is_transboundary": true, "area_hectares": 17632.62, "buffer_zone_hectares": null, "latitude": 7.60318, @@ -2465,6 +2566,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1476300, "buffer_zone_hectares": null, "latitude": -2.33333, @@ -2488,6 +2590,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 52.095, @@ -2511,6 +2614,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3626, "buffer_zone_hectares": null, "latitude": 49.7084055556, @@ -2536,6 +2640,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 579000, "buffer_zone_hectares": null, "latitude": 7.736111111, @@ -2559,6 +2664,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 144, "buffer_zone_hectares": null, "latitude": 48.40194444, @@ -2583,6 +2689,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.54, "buffer_zone_hectares": null, "latitude": 49.895, @@ -2606,6 +2713,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 9.45, "buffer_zone_hectares": null, "latitude": 44.13572222, @@ -2630,6 +2738,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 65, "buffer_zone_hectares": null, "latitude": 43.67763889, @@ -2653,6 +2762,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5.77, "buffer_zone_hectares": null, "latitude": 47.63944, @@ -2676,6 +2786,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5.8, "buffer_zone_hectares": null, "latitude": -33.8566666667, @@ -2700,6 +2811,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 240000, "buffer_zone_hectares": null, "latitude": -34, @@ -2723,6 +2835,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.558, "buffer_zone_hectares": null, "latitude": 49.3172222222, @@ -2747,6 +2860,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 14.77, "buffer_zone_hectares": null, "latitude": 49.79278, @@ -2771,6 +2885,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 280, "buffer_zone_hectares": null, "latitude": 34.06111, @@ -2796,6 +2911,7 @@ ], "year_inscribed": 1981, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 31.59027778, @@ -2820,6 +2936,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 96, "buffer_zone_hectares": null, "latitude": -6.16306, @@ -2846,6 +2963,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 532, "buffer_zone_hectares": null, "latitude": 43.77306, @@ -2870,6 +2988,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 125.4, "buffer_zone_hectares": null, "latitude": 43.8577777778, @@ -2896,6 +3015,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7200000, "buffer_zone_hectares": null, "latitude": 25.5, @@ -2919,6 +3039,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 25285.59, "buffer_zone_hectares": null, "latitude": 19.573025, @@ -2947,6 +3068,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1584233, "buffer_zone_hectares": null, "latitude": -43.1184722222, @@ -2972,6 +3094,7 @@ ], "year_inscribed": 1982, "is_endangered": true, + "is_transboundary": false, "area_hectares": 387.485, "buffer_zone_hectares": null, "latitude": 32.63833, @@ -2995,6 +3118,7 @@ ], "year_inscribed": 1982, "is_endangered": true, + "is_transboundary": false, "area_hectares": 90.534, "buffer_zone_hectares": null, "latitude": 32.80528, @@ -3020,6 +3144,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 35000, "buffer_zone_hectares": null, "latitude": -9.416666667, @@ -3044,6 +3169,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 146300, "buffer_zone_hectares": null, "latitude": -31.56555556, @@ -3069,6 +3195,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.58, "buffer_zone_hectares": null, "latitude": 52.15278, @@ -3094,6 +3221,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 665.03, "buffer_zone_hectares": null, "latitude": 32.48333, @@ -3118,6 +3246,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 190.9, "buffer_zone_hectares": null, "latitude": -8.013333333, @@ -3142,6 +3271,7 @@ ], "year_inscribed": 1982, "is_endangered": true, + "is_transboundary": false, "area_hectares": 131.675, "buffer_zone_hectares": null, "latitude": 32.825, @@ -3166,6 +3296,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 30.6, "buffer_zone_hectares": null, "latitude": 36.32056, @@ -3191,6 +3322,7 @@ ], "year_inscribed": 1982, "is_endangered": true, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 15.92694, @@ -3215,6 +3347,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 52.16, "buffer_zone_hectares": null, "latitude": 36.55, @@ -3240,6 +3373,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 90.54, "buffer_zone_hectares": null, "latitude": 35.4841666667, @@ -3264,6 +3398,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 508186, "buffer_zone_hectares": null, "latitude": 5.6488888889, @@ -3290,6 +3425,7 @@ ], "year_inscribed": 1982, "is_endangered": true, + "is_transboundary": false, "area_hectares": 350000, "buffer_zone_hectares": null, "latitude": 15.74444444, @@ -3314,6 +3450,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 541, "buffer_zone_hectares": null, "latitude": 38.65861111, @@ -3338,6 +3475,7 @@ ], "year_inscribed": 1982, "is_endangered": true, + "is_transboundary": false, "area_hectares": 5120000, "buffer_zone_hectares": null, "latitude": -9, @@ -3362,6 +3500,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 8.333333333, @@ -3386,6 +3525,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 7.915833333, @@ -3411,6 +3551,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 7.95, @@ -3436,6 +3577,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 10.48, "buffer_zone_hectares": null, "latitude": 46.9375, @@ -3460,6 +3602,7 @@ ], "year_inscribed": 1982, "is_endangered": false, + "is_transboundary": false, "area_hectares": 238.7, "buffer_zone_hectares": null, "latitude": 23.13333333, @@ -3486,6 +3629,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": true, "area_hectares": 570045, "buffer_zone_hectares": null, "latitude": 9.407083333, @@ -3509,6 +3653,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 38.655, @@ -3535,6 +3680,7 @@ ], "year_inscribed": 2003, "is_endangered": true, + "is_transboundary": false, "area_hectares": 158.9265, "buffer_zone_hectares": null, "latitude": 34.84694, @@ -3560,6 +3706,7 @@ ], "year_inscribed": 2002, "is_endangered": true, + "is_transboundary": false, "area_hectares": 70, "buffer_zone_hectares": null, "latitude": 34.3964166667, @@ -3583,6 +3730,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 10.7, "buffer_zone_hectares": null, "latitude": 42.133298, @@ -3607,6 +3755,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 34.71, "buffer_zone_hectares": null, "latitude": 42.6591111111, @@ -3630,6 +3779,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 638, "buffer_zone_hectares": null, "latitude": 44.11444, @@ -3655,6 +3805,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 38350.04, "buffer_zone_hectares": null, "latitude": 41.7427222222, @@ -3679,6 +3830,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 9, @@ -3704,6 +3856,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 8.2, "buffer_zone_hectares": null, "latitude": 43.95277778, @@ -3728,6 +3881,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7, "buffer_zone_hectares": null, "latitude": 48.69361111, @@ -3752,6 +3906,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.61, "buffer_zone_hectares": null, "latitude": 46.56472, @@ -3776,6 +3931,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 49.1815, "buffer_zone_hectares": null, "latitude": 28.6555555556, @@ -3800,6 +3956,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 27.04, "buffer_zone_hectares": null, "latitude": 28.59333, @@ -3823,6 +3980,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 28.52583, @@ -3847,6 +4005,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 15.50222, @@ -3871,6 +4030,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5.56, "buffer_zone_hectares": null, "latitude": 15.94833, @@ -3895,6 +4055,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 24.85222, @@ -3920,6 +4081,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4187.24, "buffer_zone_hectares": null, "latitude": 15.31444, @@ -3945,6 +4107,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 8242, "buffer_zone_hectares": null, "latitude": 20.553111, @@ -3969,6 +4132,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 20.02639, @@ -3993,6 +4157,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 18.96667, @@ -4017,6 +4182,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 10.62, "buffer_zone_hectares": null, "latitude": 19.8875, @@ -4041,6 +4207,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 736, "buffer_zone_hectares": null, "latitude": 24.8833333333, @@ -4066,6 +4233,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 12.61667, @@ -4090,6 +4258,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 21.74, "buffer_zone_hectares": null, "latitude": 10.78305556, @@ -4113,6 +4282,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 27.179806, @@ -4136,6 +4306,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 27.17417, @@ -4161,6 +4332,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 27.097528, @@ -4186,6 +4358,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4480000, "buffer_zone_hectares": null, "latitude": 59.35833333, @@ -4211,6 +4384,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 11800, "buffer_zone_hectares": null, "latitude": 42.32519444, @@ -4237,6 +4411,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 209000, "buffer_zone_hectares": null, "latitude": 35.59305556, @@ -4263,6 +4438,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 271925, "buffer_zone_hectares": null, "latitude": -1.83333, @@ -4289,6 +4465,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19.5, "buffer_zone_hectares": null, "latitude": -4.331, @@ -4314,6 +4491,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 260700, "buffer_zone_hectares": null, "latitude": 19.7361111111, @@ -4337,6 +4515,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.66, "buffer_zone_hectares": null, "latitude": 38.69194, @@ -4361,6 +4540,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.98, "buffer_zone_hectares": null, "latitude": 39.65778, @@ -4384,6 +4564,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 39.60472, @@ -4407,6 +4588,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 33.39, "buffer_zone_hectares": null, "latitude": 18.46666667, @@ -4430,6 +4612,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 91.86, "buffer_zone_hectares": null, "latitude": 46.94806, @@ -4454,6 +4637,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 47.42333, @@ -4477,6 +4661,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.036, "buffer_zone_hectares": null, "latitude": 46.62945, @@ -4501,6 +4686,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.1, "buffer_zone_hectares": null, "latitude": 47.68127778, @@ -4524,6 +4710,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 81.1, "buffer_zone_hectares": null, "latitude": 53.86667, @@ -4548,6 +4735,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 142.48, "buffer_zone_hectares": null, "latitude": -13.517276, @@ -4574,6 +4762,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": false, "area_hectares": 38160.87, "buffer_zone_hectares": null, "latitude": -13.184934, @@ -4597,6 +4786,7 @@ ], "year_inscribed": 1983, "is_endangered": false, + "is_transboundary": true, "area_hectares": 265.09, "buffer_zone_hectares": null, "latitude": -28.54333333, @@ -4622,6 +4812,7 @@ ], "year_inscribed": 2007, "is_endangered": true, + "is_transboundary": false, "area_hectares": 15058, "buffer_zone_hectares": null, "latitude": 34.3409894444, @@ -4647,6 +4838,7 @@ ], "year_inscribed": 1985, "is_endangered": true, + "is_transboundary": false, "area_hectares": 626, "buffer_zone_hectares": null, "latitude": 35.58806, @@ -4670,6 +4862,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1054.3, "buffer_zone_hectares": null, "latitude": 32.5419694444, @@ -4694,6 +4887,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3600000, "buffer_zone_hectares": null, "latitude": -2, @@ -4719,6 +4913,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 93200, "buffer_zone_hectares": null, "latitude": 27.5, @@ -4742,6 +4937,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 10.41666667, @@ -4767,6 +4963,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 44, "buffer_zone_hectares": null, "latitude": 41.90216, @@ -4790,6 +4987,7 @@ ], "year_inscribed": 1985, "is_endangered": true, + "is_transboundary": false, "area_hectares": 3923961, "buffer_zone_hectares": null, "latitude": 24.83333, @@ -4814,6 +5012,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 89, "buffer_zone_hectares": null, "latitude": 50.82502778, @@ -4839,6 +5038,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 9400, "buffer_zone_hectares": null, "latitude": -14.03333, @@ -4864,6 +5064,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 50.94111111, @@ -4888,6 +5089,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 33.7319444444, @@ -4912,6 +5114,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 34.0066666667, @@ -4936,6 +5139,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 34.11917, @@ -4959,6 +5163,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 153.8, "buffer_zone_hectares": null, "latitude": 33.2691666667, @@ -4982,6 +5187,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 135, "buffer_zone_hectares": null, "latitude": 46.80944444, @@ -5007,6 +5213,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 676600, "buffer_zone_hectares": null, "latitude": -15.81944444, @@ -5031,6 +5238,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 55000, "buffer_zone_hectares": null, "latitude": -25.577357, @@ -5055,6 +5263,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2360000, "buffer_zone_hectares": null, "latitude": 51.42472222, @@ -5079,6 +5288,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 205000, "buffer_zone_hectares": null, "latitude": -20.5, @@ -5102,6 +5312,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5.95, "buffer_zone_hectares": null, "latitude": 40.68944444, @@ -5126,6 +5337,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 307934, "buffer_zone_hectares": null, "latitude": 37.74611111, @@ -5149,6 +5361,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 200, "buffer_zone_hectares": null, "latitude": -12.972917, @@ -5173,6 +5386,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 43.38252778, @@ -5198,6 +5412,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 134.28, "buffer_zone_hectares": null, "latitude": 40.94847222, @@ -5223,6 +5438,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.2, "buffer_zone_hectares": null, "latitude": 43.36262, @@ -5249,6 +5465,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 80.28, "buffer_zone_hectares": null, "latitude": 37.87919444, @@ -5274,6 +5491,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 450, "buffer_zone_hectares": null, "latitude": 37.1767777778, @@ -5298,6 +5516,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.03, "buffer_zone_hectares": null, "latitude": 42.3407333333, @@ -5322,6 +5541,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 94.11, "buffer_zone_hectares": null, "latitude": 40.5891111111, @@ -5347,6 +5567,7 @@ ], "year_inscribed": 1984, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 41.41338, @@ -5370,6 +5591,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 22.66667, @@ -5394,6 +5616,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 25.03333333, @@ -5418,6 +5641,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 47.6, "buffer_zone_hectares": null, "latitude": 7.183333333, @@ -5443,6 +5667,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 26171, "buffer_zone_hectares": null, "latitude": 30.33056, @@ -5468,6 +5693,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.0445, "buffer_zone_hectares": null, "latitude": 31.8018055556, @@ -5491,6 +5717,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 14.79, "buffer_zone_hectares": null, "latitude": -9.5927725444, @@ -5517,6 +5744,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1107, "buffer_zone_hectares": null, "latitude": 31.63139, @@ -5540,6 +5768,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.1119, "buffer_zone_hectares": null, "latitude": 36.94639, @@ -5564,6 +5793,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 340000, "buffer_zone_hectares": null, "latitude": -9.33333, @@ -5588,6 +5818,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.19, "buffer_zone_hectares": null, "latitude": -20.508201, @@ -5612,6 +5843,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 71210, "buffer_zone_hectares": null, "latitude": 30.71667, @@ -5636,6 +5868,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 42996, "buffer_zone_hectares": null, "latitude": 26.66666667, @@ -5661,6 +5894,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 39100, "buffer_zone_hectares": null, "latitude": 26.725, @@ -5684,6 +5918,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2873, "buffer_zone_hectares": null, "latitude": 27.15888889, @@ -5709,6 +5944,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.3257, "buffer_zone_hectares": null, "latitude": 43.94722222, @@ -5733,6 +5969,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 11, "buffer_zone_hectares": null, "latitude": 43.2070631, @@ -5757,6 +5994,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 107.59, "buffer_zone_hectares": null, "latitude": 42.88076, @@ -5781,6 +6019,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 37.286, "buffer_zone_hectares": null, "latitude": 40.65645, @@ -5806,6 +6045,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3.693, "buffer_zone_hectares": null, "latitude": 34.92027778, @@ -5829,6 +6069,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 53.59, "buffer_zone_hectares": null, "latitude": 69.95, @@ -5852,6 +6093,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 14261, "buffer_zone_hectares": null, "latitude": 36.06377778, @@ -5876,6 +6118,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": true, "area_hectares": 457614, "buffer_zone_hectares": null, "latitude": 48.99605556, @@ -5900,6 +6143,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 169695.88, "buffer_zone_hectares": null, "latitude": -25.4481472222, @@ -5926,6 +6170,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 765.5, "buffer_zone_hectares": null, "latitude": 41.00847, @@ -5952,6 +6197,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 9883.81, "buffer_zone_hectares": null, "latitude": 38.66667, @@ -5976,6 +6222,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 39.371271, @@ -6000,6 +6247,7 @@ ], "year_inscribed": 1985, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.9, "buffer_zone_hectares": null, "latitude": 43.7449166667, @@ -6024,6 +6272,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 38.57306, @@ -6047,6 +6296,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 287.59, "buffer_zone_hectares": null, "latitude": 30.13333333, @@ -6071,6 +6321,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 722, "buffer_zone_hectares": null, "latitude": -20.271169952, @@ -6095,6 +6346,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": -20.15833333, @@ -6119,6 +6371,7 @@ ], "year_inscribed": 1986, "is_endangered": true, + "is_transboundary": false, "area_hectares": 1414.57, "buffer_zone_hectares": null, "latitude": -8.107836, @@ -6144,6 +6397,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7.3, "buffer_zone_hectares": null, "latitude": 49.75, @@ -6169,6 +6423,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 370000, "buffer_zone_hectares": null, "latitude": -28.25, @@ -6193,6 +6448,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 239.405, "buffer_zone_hectares": null, "latitude": 55.2408333333, @@ -6217,6 +6473,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 8.79, "buffer_zone_hectares": null, "latitude": 54.77472222, @@ -6242,6 +6499,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 547.9, "buffer_zone_hectares": null, "latitude": 52.62638889, @@ -6266,6 +6524,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 312.05, "buffer_zone_hectares": null, "latitude": 54.11611111, @@ -6291,6 +6550,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5152.39, "buffer_zone_hectares": null, "latitude": 51.17888889, @@ -6316,6 +6576,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7.27, "buffer_zone_hectares": null, "latitude": 53.13972222, @@ -6342,6 +6603,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 268.46, "buffer_zone_hectares": null, "latitude": 40.01389, @@ -6365,6 +6627,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4.269, "buffer_zone_hectares": null, "latitude": 40.34389, @@ -6391,6 +6654,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 259.85, "buffer_zone_hectares": null, "latitude": 39.8569444444, @@ -6415,6 +6679,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3984, "buffer_zone_hectares": null, "latitude": 28.12625, @@ -6440,6 +6705,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 50.78, "buffer_zone_hectares": null, "latitude": 40.96525, @@ -6465,6 +6731,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 12, "buffer_zone_hectares": null, "latitude": 37.38384, @@ -6489,6 +6756,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 9, "buffer_zone_hectares": null, "latitude": 39.47444, @@ -6513,6 +6781,7 @@ ], "year_inscribed": 1986, "is_endangered": true, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 15.35555556, @@ -6540,6 +6809,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 25837, "buffer_zone_hectares": null, "latitude": 57.81722222, @@ -6565,6 +6835,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.16, "buffer_zone_hectares": null, "latitude": 43.4865277778, @@ -6589,6 +6860,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 413, "buffer_zone_hectares": null, "latitude": 45.66667, @@ -6614,6 +6886,7 @@ ], "year_inscribed": 1986, "is_endangered": false, + "is_transboundary": false, "area_hectares": 20.46, "buffer_zone_hectares": null, "latitude": 37.43498, @@ -6640,6 +6913,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 51.04, "buffer_zone_hectares": null, "latitude": 38.48149, @@ -6667,6 +6941,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 70176.4, "buffer_zone_hectares": null, "latitude": 45.43430556, @@ -6692,6 +6967,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 8.87, "buffer_zone_hectares": null, "latitude": 43.72305556, @@ -6717,6 +6993,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3.1, "buffer_zone_hectares": null, "latitude": 41.08480556, @@ -6741,6 +7018,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 476, "buffer_zone_hectares": null, "latitude": 47.48242, @@ -6764,6 +7042,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 144.5, "buffer_zone_hectares": null, "latitude": 47.99444, @@ -6788,6 +7067,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1716295.22, "buffer_zone_hectares": null, "latitude": -12.25, @@ -6811,6 +7091,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 75575, "buffer_zone_hectares": null, "latitude": -3.06667, @@ -6837,6 +7118,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3.04, "buffer_zone_hectares": null, "latitude": 37.97087, @@ -6861,6 +7143,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 8864, "buffer_zone_hectares": null, "latitude": 6.416666667, @@ -6885,6 +7168,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 526000, "buffer_zone_hectares": null, "latitude": 3.125, @@ -6908,6 +7192,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 87940, "buffer_zone_hectares": null, "latitude": 19.40083333, @@ -6932,6 +7217,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 528000, "buffer_zone_hectares": null, "latitude": 19.38333, @@ -6958,6 +7244,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1772, "buffer_zone_hectares": null, "latitude": 17.48333, @@ -6984,6 +7271,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3010.86, "buffer_zone_hectares": null, "latitude": 19.41833, @@ -7010,6 +7298,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 250, "buffer_zone_hectares": null, "latitude": 19.69167, @@ -7036,6 +7325,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4375, "buffer_zone_hectares": null, "latitude": 17.061579, @@ -7060,6 +7350,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 690, "buffer_zone_hectares": null, "latitude": 19.045967, @@ -7087,6 +7378,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 9020.3, "buffer_zone_hectares": null, "latitude": 38.91113889, @@ -7111,6 +7403,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 180500, "buffer_zone_hectares": null, "latitude": 49.6125, @@ -7135,6 +7428,7 @@ ], "year_inscribed": 1987, "is_endangered": true, + "is_transboundary": false, "area_hectares": 2210.93, "buffer_zone_hectares": null, "latitude": -19.599112, @@ -7159,6 +7453,7 @@ ], "year_inscribed": 1990, "is_endangered": false, + "is_transboundary": false, "area_hectares": 79596, "buffer_zone_hectares": null, "latitude": -39.29083333, @@ -7183,6 +7478,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 229205.19, "buffer_zone_hectares": null, "latitude": 54.4766111111, @@ -7207,6 +7503,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 961, "buffer_zone_hectares": null, "latitude": 51.84194444, @@ -7232,6 +7529,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 10.3, "buffer_zone_hectares": null, "latitude": 51.499, @@ -7257,6 +7555,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2870, "buffer_zone_hectares": null, "latitude": 51.3813055556, @@ -7281,6 +7580,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 146, "buffer_zone_hectares": null, "latitude": 55.66333333, @@ -7306,6 +7606,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": true, "area_hectares": 526.9, "buffer_zone_hectares": null, "latitude": 54.9926111111, @@ -7329,6 +7630,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 346.44, "buffer_zone_hectares": null, "latitude": 22.96417, @@ -7353,6 +7655,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 23.26986, @@ -7381,6 +7684,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 25000, "buffer_zone_hectares": null, "latitude": 36.26667, @@ -7407,6 +7711,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2151.55, "buffer_zone_hectares": null, "latitude": 40.41667, @@ -7433,6 +7738,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 84.96, "buffer_zone_hectares": null, "latitude": 41.79416667, @@ -7460,6 +7766,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 23392, "buffer_zone_hectares": null, "latitude": 40.13333, @@ -7485,6 +7792,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 244, "buffer_zone_hectares": null, "latitude": 34.381311, @@ -7509,6 +7817,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 795.96, "buffer_zone_hectares": null, "latitude": 38.03277778, @@ -7533,6 +7842,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3.03, "buffer_zone_hectares": null, "latitude": 31.04722, @@ -7557,6 +7867,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 11268.92, "buffer_zone_hectares": null, "latitude": -15.78333, @@ -7582,6 +7893,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 132566, "buffer_zone_hectares": null, "latitude": -25.33333333, @@ -7607,6 +7919,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 11, "buffer_zone_hectares": null, "latitude": 38.03661, @@ -7630,6 +7943,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 480, "buffer_zone_hectares": null, "latitude": 39.689449, @@ -7653,6 +7967,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 7.293611111, @@ -7676,6 +7991,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 6.028051, @@ -7700,6 +8016,7 @@ ], "year_inscribed": 1987, "is_endangered": false, + "is_transboundary": false, "area_hectares": 133010, "buffer_zone_hectares": null, "latitude": 21.945, @@ -7727,6 +8044,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 33042.3, "buffer_zone_hectares": null, "latitude": 40.26667, @@ -7754,6 +8072,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 271.87, "buffer_zone_hectares": null, "latitude": 39.71667, @@ -7779,6 +8098,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5.327, "buffer_zone_hectares": null, "latitude": 40.63833, @@ -7803,6 +8123,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 21.80305556, @@ -7827,6 +8148,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 74820, "buffer_zone_hectares": null, "latitude": 47.59458, @@ -7851,6 +8173,7 @@ ], "year_inscribed": 1988, "is_endangered": true, + "is_transboundary": false, "area_hectares": 1740000, "buffer_zone_hectares": null, "latitude": 9, @@ -7874,6 +8197,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 12640, "buffer_zone_hectares": null, "latitude": -14.2185207713, @@ -7899,6 +8223,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 820, "buffer_zone_hectares": null, "latitude": 19.88889, @@ -7923,6 +8248,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 39000, "buffer_zone_hectares": null, "latitude": 14.8483333333, @@ -7948,6 +8274,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2167.5, "buffer_zone_hectares": null, "latitude": 21.01694, @@ -7973,6 +8300,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 20.682739, @@ -7997,6 +8325,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 126.4, "buffer_zone_hectares": null, "latitude": 36.335, @@ -8022,6 +8351,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1077, "buffer_zone_hectares": null, "latitude": 37.92389, @@ -8048,6 +8378,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 893453, "buffer_zone_hectares": null, "latitude": -15.65, @@ -8072,6 +8403,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3700, "buffer_zone_hectares": null, "latitude": -24.3666666667, @@ -8096,6 +8428,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7.5, "buffer_zone_hectares": null, "latitude": 51.50805556, @@ -8122,6 +8455,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1393.8, "buffer_zone_hectares": null, "latitude": 37.6, @@ -8145,6 +8479,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19.01, "buffer_zone_hectares": null, "latitude": 36.438, @@ -8170,6 +8505,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 65.85, "buffer_zone_hectares": null, "latitude": 36.44722, @@ -8195,6 +8531,7 @@ ], "year_inscribed": 1990, "is_endangered": false, + "is_transboundary": false, "area_hectares": 734298, "buffer_zone_hectares": null, "latitude": -18.6615777778, @@ -8219,6 +8556,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 183, "buffer_zone_hectares": null, "latitude": 48.5844444444, @@ -8243,6 +8581,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 18.58, "buffer_zone_hectares": null, "latitude": 51.28, @@ -8268,6 +8607,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 31.68, "buffer_zone_hectares": null, "latitude": 35.82778, @@ -8294,6 +8634,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 68.02, "buffer_zone_hectares": null, "latitude": 35.68167, @@ -8317,6 +8658,7 @@ ], "year_inscribed": 1988, "is_endangered": false, + "is_transboundary": false, "area_hectares": 277.99, "buffer_zone_hectares": null, "latitude": -12.046542, @@ -8341,6 +8683,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 17.25, "buffer_zone_hectares": null, "latitude": 17.575, @@ -8365,6 +8708,7 @@ ], "year_inscribed": 1989, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 39.55, @@ -8389,6 +8733,7 @@ ], "year_inscribed": 1989, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1200000, "buffer_zone_hectares": null, "latitude": 20.23472, @@ -8413,6 +8758,7 @@ ], "year_inscribed": 1989, "is_endangered": false, + "is_transboundary": true, "area_hectares": 6860, "buffer_zone_hectares": null, "latitude": -17.92453, @@ -8438,6 +8784,7 @@ ], "year_inscribed": 1989, "is_endangered": false, + "is_transboundary": false, "area_hectares": 55.64, "buffer_zone_hectares": null, "latitude": 37.08056, @@ -8464,6 +8811,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 15, "buffer_zone_hectares": null, "latitude": 58.99605556, @@ -8488,6 +8836,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3.34, "buffer_zone_hectares": null, "latitude": 49.65369, @@ -8512,6 +8861,7 @@ ], "year_inscribed": 1989, "is_endangered": false, + "is_transboundary": false, "area_hectares": 327390, "buffer_zone_hectares": null, "latitude": 14.33333, @@ -8538,6 +8888,7 @@ ], "year_inscribed": 1989, "is_endangered": false, + "is_transboundary": false, "area_hectares": 105.608, "buffer_zone_hectares": null, "latitude": 37.64, @@ -8562,6 +8913,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 18, "buffer_zone_hectares": null, "latitude": 41.38083, @@ -8586,6 +8938,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 9, "buffer_zone_hectares": null, "latitude": 38.01131, @@ -8612,6 +8965,7 @@ ], "year_inscribed": 1989, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 23.47944, @@ -8636,6 +8990,7 @@ ], "year_inscribed": 1990, "is_endangered": false, + "is_transboundary": false, "area_hectares": 106, "buffer_zone_hectares": null, "latitude": 18.472394, @@ -8662,6 +9017,7 @@ ], "year_inscribed": 1990, "is_endangered": true, + "is_transboundary": false, "area_hectares": 28.52, "buffer_zone_hectares": null, "latitude": 50.45258, @@ -8686,6 +9042,7 @@ ], "year_inscribed": 1990, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": -16, @@ -8711,6 +9068,7 @@ ], "year_inscribed": 1990, "is_endangered": false, + "is_transboundary": false, "area_hectares": 350.13, "buffer_zone_hectares": null, "latitude": 37.4, @@ -8736,6 +9094,7 @@ ], "year_inscribed": 1990, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2064, "buffer_zone_hectares": null, "latitude": 52.4, @@ -8760,6 +9119,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 11891, "buffer_zone_hectares": null, "latitude": 51.8425, @@ -8783,6 +9143,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 90, "buffer_zone_hectares": null, "latitude": 51.78333, @@ -8807,6 +9168,7 @@ ], "year_inscribed": 1990, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3.7, "buffer_zone_hectares": null, "latitude": 38.3952777778, @@ -8832,6 +9194,7 @@ ], "year_inscribed": 1990, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3934.1, "buffer_zone_hectares": null, "latitude": 59.95, @@ -8856,6 +9219,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 352.09, "buffer_zone_hectares": null, "latitude": 54.68667, @@ -8881,6 +9245,7 @@ ], "year_inscribed": 1990, "is_endangered": false, + "is_transboundary": false, "area_hectares": 37.5, "buffer_zone_hectares": null, "latitude": 41.378088, @@ -8906,6 +9271,7 @@ ], "year_inscribed": 1990, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.57, "buffer_zone_hectares": null, "latitude": 62.0675833333, @@ -8931,6 +9297,7 @@ ], "year_inscribed": 1990, "is_endangered": false, + "is_transboundary": false, "area_hectares": 42.1, "buffer_zone_hectares": null, "latitude": 55.7540277778, @@ -8955,6 +9322,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 72.45, "buffer_zone_hectares": null, "latitude": 49.00083, @@ -8980,6 +9348,7 @@ ], "year_inscribed": 1990, "is_endangered": false, + "is_transboundary": false, "area_hectares": 16060, "buffer_zone_hectares": null, "latitude": 30.145333, @@ -9006,6 +9375,7 @@ ], "year_inscribed": 1990, "is_endangered": false, + "is_transboundary": false, "area_hectares": 272407.95, "buffer_zone_hectares": null, "latitude": -7.75, @@ -9032,6 +9402,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 87.37, "buffer_zone_hectares": null, "latitude": 41.07333, @@ -9057,6 +9428,7 @@ ], "year_inscribed": 1990, "is_endangered": false, + "is_transboundary": false, "area_hectares": 13.88, "buffer_zone_hectares": null, "latitude": 43.46806, @@ -9083,6 +9455,7 @@ ], "year_inscribed": 1990, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2600000, "buffer_zone_hectares": null, "latitude": -45.03602778, @@ -9106,6 +9479,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 369631, "buffer_zone_hectares": null, "latitude": 27.79222, @@ -9130,6 +9504,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 437.121, "buffer_zone_hectares": null, "latitude": 59.33514, @@ -9153,6 +9528,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 9.6, "buffer_zone_hectares": null, "latitude": 59.97, @@ -9178,6 +9554,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4132, "buffer_zone_hectares": null, "latitude": 58.70111, @@ -9202,6 +9579,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 108.08, "buffer_zone_hectares": null, "latitude": 59.27556, @@ -9225,6 +9603,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 162.429, "buffer_zone_hectares": null, "latitude": 59.32306, @@ -9249,6 +9628,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 146.72, "buffer_zone_hectares": null, "latitude": 30.367128, @@ -9272,6 +9652,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 7.856666667, @@ -9295,6 +9676,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 75.0391, "buffer_zone_hectares": null, "latitude": 50.7169444444, @@ -9319,6 +9701,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 54.7, "buffer_zone_hectares": null, "latitude": 36.78333, @@ -9342,6 +9725,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": -19.04799, @@ -9366,6 +9750,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 71.5, "buffer_zone_hectares": null, "latitude": -16.555003, @@ -9390,6 +9775,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 58.9, "buffer_zone_hectares": null, "latitude": 40.0741666667, @@ -9413,6 +9799,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 39.745732, @@ -9438,6 +9825,7 @@ ], "year_inscribed": 1991, "is_endangered": true, + "is_transboundary": false, "area_hectares": 7736000, "buffer_zone_hectares": null, "latitude": 19.0761926358, @@ -9462,6 +9850,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 11852, "buffer_zone_hectares": null, "latitude": 17.00722, @@ -9485,6 +9874,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 30, "buffer_zone_hectares": null, "latitude": 17.407772, @@ -9508,6 +9898,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 289, "buffer_zone_hectares": null, "latitude": 14.34778, @@ -9532,6 +9923,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 658903, "buffer_zone_hectares": null, "latitude": -53.1, @@ -9558,6 +9950,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2200902, "buffer_zone_hectares": null, "latitude": -25.48611111, @@ -9582,6 +9975,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 61.12056, @@ -9606,6 +10000,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 29, "buffer_zone_hectares": null, "latitude": 61.12806, @@ -9629,6 +10024,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 210, "buffer_zone_hectares": null, "latitude": 60.14722, @@ -9652,6 +10048,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.98, "buffer_zone_hectares": null, "latitude": 62.25, @@ -9676,6 +10073,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 390, "buffer_zone_hectares": null, "latitude": 19.700927, @@ -9700,6 +10098,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 32.9625, @@ -9724,6 +10123,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 312440, "buffer_zone_hectares": null, "latitude": 45.08333, @@ -9747,6 +10147,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 615500, "buffer_zone_hectares": null, "latitude": 14.33, @@ -9772,6 +10173,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 622200, "buffer_zone_hectares": null, "latitude": 15.33333, @@ -9796,6 +10198,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 25.51, "buffer_zone_hectares": null, "latitude": -7.60778, @@ -9819,6 +10222,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5600, "buffer_zone_hectares": null, "latitude": -7.4, @@ -9843,6 +10247,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 668.35, "buffer_zone_hectares": null, "latitude": 37.69083, @@ -9866,6 +10271,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 553, "buffer_zone_hectares": null, "latitude": 46.13583333, @@ -9889,6 +10295,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 22.48, "buffer_zone_hectares": null, "latitude": 45.1697222222, @@ -9913,6 +10320,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 47.7783333333, @@ -9936,6 +10344,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 95.7, "buffer_zone_hectares": null, "latitude": -15.03417, @@ -9961,6 +10370,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 538, "buffer_zone_hectares": null, "latitude": 48.8655, @@ -9985,6 +10395,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4.16, "buffer_zone_hectares": null, "latitude": 49.25333333, @@ -10009,6 +10420,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 216, "buffer_zone_hectares": null, "latitude": 39.77472, @@ -10034,6 +10446,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1123, "buffer_zone_hectares": null, "latitude": 39.66861, @@ -10058,6 +10471,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 58.53333, @@ -10081,6 +10495,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 130600, "buffer_zone_hectares": null, "latitude": -8.718634, @@ -10105,6 +10520,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 78525, "buffer_zone_hectares": null, "latitude": -6.75, @@ -10129,6 +10545,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 219322, "buffer_zone_hectares": null, "latitude": -8.54333, @@ -10153,6 +10570,7 @@ ], "year_inscribed": 1993, "is_endangered": true, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 14.1953333333, @@ -10177,6 +10595,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 31.87, "buffer_zone_hectares": null, "latitude": 12.40047, @@ -10202,6 +10621,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 193, "buffer_zone_hectares": null, "latitude": 41.26, @@ -10226,6 +10646,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1106.36, "buffer_zone_hectares": null, "latitude": 50.08972, @@ -10249,6 +10670,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 51.65, "buffer_zone_hectares": null, "latitude": 48.8106944444, @@ -10273,6 +10695,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 20632, "buffer_zone_hectares": null, "latitude": 48.46111, @@ -10296,6 +10719,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1351.2252, "buffer_zone_hectares": null, "latitude": 48.9994444444, @@ -10320,6 +10744,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 36.18, "buffer_zone_hectares": null, "latitude": 49.1841388889, @@ -10344,6 +10769,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4.9, "buffer_zone_hectares": null, "latitude": 49.0391666667, @@ -10370,6 +10796,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1009.89, "buffer_zone_hectares": null, "latitude": 51.82, @@ -10394,6 +10821,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 142, "buffer_zone_hectares": null, "latitude": 49.89166667, @@ -10418,6 +10846,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 27, "buffer_zone_hectares": null, "latitude": 53.45108333, @@ -10442,6 +10871,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 557280, "buffer_zone_hectares": null, "latitude": -54.59472222, @@ -10467,6 +10897,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 181851, "buffer_zone_hectares": null, "latitude": -25.21666667, @@ -10491,6 +10922,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 240, "buffer_zone_hectares": null, "latitude": 20.446095, @@ -10514,6 +10946,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 28834, "buffer_zone_hectares": null, "latitude": 65.08333333, @@ -10539,6 +10972,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 56.15, @@ -10562,6 +10996,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 55.65556, @@ -10586,6 +11021,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.85, "buffer_zone_hectares": null, "latitude": 47.08222222, @@ -10609,6 +11045,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 72000, "buffer_zone_hectares": null, "latitude": 33.08333, @@ -10632,6 +11069,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 60000, "buffer_zone_hectares": null, "latitude": 32.75417, @@ -10655,6 +11093,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 26400, "buffer_zone_hectares": null, "latitude": 29.33333, @@ -10679,6 +11118,7 @@ ], "year_inscribed": 1991, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": -7.75222, @@ -10702,6 +11142,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 27.88, "buffer_zone_hectares": null, "latitude": -27.131613, @@ -10726,6 +11167,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 22202, "buffer_zone_hectares": null, "latitude": 10.16666667, @@ -10751,6 +11193,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 96828, "buffer_zone_hectares": null, "latitude": 8.9533333333, @@ -10775,6 +11218,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 22.75, "buffer_zone_hectares": null, "latitude": 56.31035, @@ -10799,6 +11243,7 @@ ], "year_inscribed": 1993, "is_endangered": true, + "is_transboundary": false, "area_hectares": 18.4, "buffer_zone_hectares": null, "latitude": 11.409794, @@ -10824,6 +11269,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 770, "buffer_zone_hectares": null, "latitude": 53.6946944444, @@ -10849,6 +11295,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 15.3, "buffer_zone_hectares": null, "latitude": 34.61666667, @@ -10873,6 +11320,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 107, "buffer_zone_hectares": null, "latitude": 34.83333333, @@ -10897,6 +11345,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 10747, "buffer_zone_hectares": null, "latitude": 30.315, @@ -10920,6 +11369,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 16971, "buffer_zone_hectares": null, "latitude": 40.4525, @@ -10944,6 +11394,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 30.77, "buffer_zone_hectares": null, "latitude": 38.91611, @@ -10967,6 +11418,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.1, "buffer_zone_hectares": null, "latitude": 39.45285, @@ -10990,6 +11442,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.95, "buffer_zone_hectares": null, "latitude": 27.46889, @@ -11016,6 +11469,7 @@ ], "year_inscribed": 1992, "is_endangered": false, + "is_transboundary": false, "area_hectares": 40100, "buffer_zone_hectares": null, "latitude": 13.43333333, @@ -11040,6 +11494,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 43.335, @@ -11065,6 +11520,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1016, "buffer_zone_hectares": null, "latitude": 40.66638889, @@ -11089,6 +11545,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 65650, "buffer_zone_hectares": null, "latitude": 20.8327777778, @@ -11113,6 +11570,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3200, "buffer_zone_hectares": null, "latitude": 13.8275, @@ -11137,6 +11595,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 207.72, "buffer_zone_hectares": null, "latitude": 22.775484, @@ -11161,6 +11620,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 14.59, @@ -11184,6 +11644,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 315.47, "buffer_zone_hectares": null, "latitude": 16.46944, @@ -11208,6 +11669,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 32092, "buffer_zone_hectares": null, "latitude": -1.047, @@ -11232,6 +11694,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 99600, "buffer_zone_hectares": null, "latitude": 0.223611111, @@ -11257,6 +11720,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 54251.65, "buffer_zone_hectares": null, "latitude": 36.9477, @@ -11280,6 +11744,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 87.3, "buffer_zone_hectares": null, "latitude": 48.105, @@ -11304,6 +11769,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7.46, "buffer_zone_hectares": null, "latitude": 49.2487222222, @@ -11328,6 +11794,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1056, "buffer_zone_hectares": null, "latitude": 34.98055556, @@ -11352,6 +11819,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 24.68, "buffer_zone_hectares": null, "latitude": 32.0426111111, @@ -11375,6 +11843,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.64, "buffer_zone_hectares": null, "latitude": 49.5802, @@ -11399,6 +11868,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1179376, "buffer_zone_hectares": null, "latitude": 1.3355555556, @@ -11423,6 +11893,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.4, "buffer_zone_hectares": null, "latitude": 55.6426654094, @@ -11446,6 +11917,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 56.03889, @@ -11469,6 +11941,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 12.7, "buffer_zone_hectares": null, "latitude": 55.75638889, @@ -11493,6 +11966,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 10326, "buffer_zone_hectares": null, "latitude": -19.08333333, @@ -11516,6 +11990,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 29.94, "buffer_zone_hectares": null, "latitude": 49.61, @@ -11541,6 +12016,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 75358.47, "buffer_zone_hectares": null, "latitude": -14.72583, @@ -11567,6 +12043,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3000000, "buffer_zone_hectares": null, "latitude": 5.337994, @@ -11591,6 +12068,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 24.33, "buffer_zone_hectares": null, "latitude": 18.9347222222, @@ -11615,6 +12093,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 611.2, "buffer_zone_hectares": null, "latitude": 40.98694, @@ -11639,6 +12118,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 183, "buffer_zone_hectares": null, "latitude": 35.613215, @@ -11663,6 +12143,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 32.46667, @@ -11687,6 +12168,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 60.5, "buffer_zone_hectares": null, "latitude": 29.65792, @@ -11711,6 +12193,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3.85, "buffer_zone_hectares": null, "latitude": 41.8422777778, @@ -11735,6 +12218,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.06, "buffer_zone_hectares": null, "latitude": 42.914, @@ -11758,6 +12242,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4.2, "buffer_zone_hectares": null, "latitude": 42.2947222222, @@ -11782,6 +12267,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 72000, "buffer_zone_hectares": null, "latitude": 7.803975, @@ -11806,6 +12292,7 @@ ], "year_inscribed": 1994, "is_endangered": false, + "is_transboundary": false, "area_hectares": 337.49, "buffer_zone_hectares": null, "latitude": 45.54916667, @@ -11830,6 +12317,7 @@ ], "year_inscribed": 1993, "is_endangered": false, + "is_transboundary": false, "area_hectares": 182600, "buffer_zone_hectares": null, "latitude": 27.626963, @@ -11855,6 +12343,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 6666, "buffer_zone_hectares": null, "latitude": -27.074403, @@ -11880,6 +12369,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 170, "buffer_zone_hectares": null, "latitude": 43.31861111, @@ -11903,6 +12393,7 @@ ], "year_inscribed": 1996, "is_endangered": true, + "is_transboundary": false, "area_hectares": 1372625, "buffer_zone_hectares": null, "latitude": 2, @@ -11927,6 +12418,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3280000, "buffer_zone_hectares": null, "latitude": 63.6258333333, @@ -11950,6 +12442,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 42, "buffer_zone_hectares": null, "latitude": 49.918, @@ -11974,6 +12467,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 18926, "buffer_zone_hectares": null, "latitude": 32.16666667, @@ -11999,6 +12493,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 16.93389, @@ -12024,6 +12519,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 946, "buffer_zone_hectares": null, "latitude": 38.78333, @@ -12049,6 +12545,7 @@ ], "year_inscribed": 2004, "is_endangered": true, + "is_transboundary": false, "area_hectares": 2.8802, "buffer_zone_hectares": null, "latitude": 42.6611111111, @@ -12072,6 +12569,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": true, "area_hectares": 56650.57, "buffer_zone_hectares": null, "latitude": 48.47573, @@ -12096,6 +12594,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1021, "buffer_zone_hectares": null, "latitude": 40.85138889, @@ -12120,6 +12619,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 443, "buffer_zone_hectares": null, "latitude": 55.95, @@ -12144,6 +12644,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 8.1614, "buffer_zone_hectares": null, "latitude": 50.9747777778, @@ -12168,6 +12669,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 105.92, "buffer_zone_hectares": null, "latitude": 45.59333, @@ -12192,6 +12694,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 104.3, "buffer_zone_hectares": null, "latitude": 57.64167, @@ -12216,6 +12719,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 62, "buffer_zone_hectares": null, "latitude": 49.95, @@ -12242,6 +12746,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 46712, "buffer_zone_hectares": null, "latitude": 44.83777778, @@ -12266,6 +12771,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 68, "buffer_zone_hectares": null, "latitude": 36.4, @@ -12290,6 +12796,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 35.791498, @@ -12313,6 +12820,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 35.801672, @@ -12336,6 +12844,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19.4, "buffer_zone_hectares": null, "latitude": 37.5747222222, @@ -12360,6 +12869,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1306, "buffer_zone_hectares": null, "latitude": 52.63861111, @@ -12384,6 +12894,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 397900, "buffer_zone_hectares": null, "latitude": -40.32472222, @@ -12408,6 +12919,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 33.85, "buffer_zone_hectares": null, "latitude": 44.37611111, @@ -12432,6 +12944,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 54.05, "buffer_zone_hectares": null, "latitude": 9.240492, @@ -12455,6 +12968,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 38.84, "buffer_zone_hectares": null, "latitude": 2.583333333, @@ -12478,6 +12992,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 1.916666667, @@ -12501,6 +13016,7 @@ ], "year_inscribed": 1995, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19, "buffer_zone_hectares": null, "latitude": -34.47119, @@ -12525,6 +13041,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": true, "area_hectares": 1714831, "buffer_zone_hectares": null, "latitude": 11.8841666667, @@ -12550,6 +13067,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 20.92889, @@ -12573,6 +13091,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 22.778, "buffer_zone_hectares": null, "latitude": 61.06194, @@ -12597,6 +13116,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 56.7, "buffer_zone_hectares": null, "latitude": 31.5141111111, @@ -12623,6 +13143,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 8800000, "buffer_zone_hectares": null, "latitude": 53.17361111, @@ -12646,6 +13167,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 41.14166667, @@ -12670,6 +13192,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 21.9, "buffer_zone_hectares": null, "latitude": 51.77194, @@ -12693,6 +13216,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 47.4, "buffer_zone_hectares": null, "latitude": 47.55889, @@ -12718,6 +13242,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 55404.9, "buffer_zone_hectares": null, "latitude": 52.555, @@ -12741,6 +13266,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7.5981, "buffer_zone_hectares": null, "latitude": 13.31616667, @@ -12766,6 +13292,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 16.4, "buffer_zone_hectares": null, "latitude": 65.64611, @@ -12791,6 +13318,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 14398.5, "buffer_zone_hectares": null, "latitude": 48.7411194444, @@ -12816,6 +13344,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 96300, "buffer_zone_hectares": null, "latitude": 17.190549, @@ -12842,6 +13371,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3995769.37, "buffer_zone_hectares": null, "latitude": 56.33333333, @@ -12865,6 +13395,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1566818, "buffer_zone_hectares": null, "latitude": 46.6833333333, @@ -12888,6 +13419,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1611457, "buffer_zone_hectares": null, "latitude": 50.46666667, @@ -12912,6 +13444,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": true, "area_hectares": 898063.5, "buffer_zone_hectares": null, "latitude": 50.275, @@ -12937,6 +13470,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2007, "buffer_zone_hectares": null, "latitude": 43.61138889, @@ -12960,6 +13494,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": true, "area_hectares": 68369, "buffer_zone_hectares": null, "latitude": 47.71927778, @@ -12987,6 +13522,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": true, "area_hectares": 30639, "buffer_zone_hectares": null, "latitude": 42.68542, @@ -13014,6 +13550,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 940900, "buffer_zone_hectares": null, "latitude": 67.33333, @@ -13037,6 +13574,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.4, "buffer_zone_hectares": null, "latitude": 34.395556, @@ -13062,6 +13600,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 431.2, "buffer_zone_hectares": null, "latitude": 34.29441667, @@ -13086,6 +13625,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.65, "buffer_zone_hectares": null, "latitude": 41.095, @@ -13111,6 +13651,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 30200, "buffer_zone_hectares": null, "latitude": 29.43333333, @@ -13135,6 +13676,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 15400, "buffer_zone_hectares": null, "latitude": 29.5449, @@ -13159,6 +13701,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1420.81, "buffer_zone_hectares": null, "latitude": 40.47139, @@ -13183,6 +13726,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 22.79, "buffer_zone_hectares": null, "latitude": 40.07662, @@ -13207,6 +13751,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.2, "buffer_zone_hectares": null, "latitude": 39.47441667, @@ -13230,6 +13775,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.83, "buffer_zone_hectares": null, "latitude": 51.86472, @@ -13254,6 +13800,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 236, "buffer_zone_hectares": null, "latitude": 47.80055556, @@ -13278,6 +13825,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 156.18, "buffer_zone_hectares": null, "latitude": 47.64877778, @@ -13302,6 +13850,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 186.28, "buffer_zone_hectares": null, "latitude": 48.18666667, @@ -13327,6 +13876,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 10.52, "buffer_zone_hectares": null, "latitude": 40.7825, @@ -13353,6 +13903,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.272, "buffer_zone_hectares": null, "latitude": 44.42041667, @@ -13378,6 +13929,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4.47, "buffer_zone_hectares": null, "latitude": 43.07694444, @@ -13403,6 +13955,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2059.8, "buffer_zone_hectares": null, "latitude": 20.36166667, @@ -13427,6 +13980,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": 258.3, "buffer_zone_hectares": null, "latitude": 20.593292, @@ -13450,6 +14004,7 @@ ], "year_inscribed": 1996, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 33.88333, @@ -13474,6 +14029,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 75, "buffer_zone_hectares": null, "latitude": 36.42361, @@ -13499,6 +14055,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 109.47, "buffer_zone_hectares": null, "latitude": 51.4811666667, @@ -13523,6 +14080,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 444.4, "buffer_zone_hectares": null, "latitude": 45.43861111, @@ -13547,6 +14105,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 139500, "buffer_zone_hectares": null, "latitude": 21.95, @@ -13571,6 +14130,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 202334, "buffer_zone_hectares": null, "latitude": -0.155, @@ -13595,6 +14155,7 @@ ], "year_inscribed": 1997, "is_endangered": true, + "is_transboundary": false, "area_hectares": 161485, "buffer_zone_hectares": null, "latitude": 3.051305556, @@ -13621,6 +14182,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2208.2, "buffer_zone_hectares": null, "latitude": 42.46939, @@ -13646,6 +14208,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 6.87, "buffer_zone_hectares": null, "latitude": 41.38778, @@ -13670,6 +14233,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19.25, "buffer_zone_hectares": null, "latitude": 42.32586, @@ -13694,6 +14258,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 28637, "buffer_zone_hectares": null, "latitude": 47.55944444, @@ -13719,6 +14284,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.1, "buffer_zone_hectares": null, "latitude": 45.2285833333, @@ -13743,6 +14309,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 6.4, "buffer_zone_hectares": null, "latitude": 43.5170833333, @@ -13768,6 +14335,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 136.5, "buffer_zone_hectares": null, "latitude": 26.86667, @@ -13793,6 +14361,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 245.62, "buffer_zone_hectares": null, "latitude": 37.20139, @@ -13820,6 +14389,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 11.922, "buffer_zone_hectares": null, "latitude": 31.31666667, @@ -13844,6 +14414,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 6857, "buffer_zone_hectares": null, "latitude": 15.331113, @@ -13870,6 +14441,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.34, "buffer_zone_hectares": null, "latitude": 20.676888, @@ -13895,6 +14467,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 37.5788888889, @@ -13919,6 +14492,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 37.27222, @@ -13944,6 +14518,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 322, "buffer_zone_hectares": null, "latitude": 51.8825, @@ -13969,6 +14544,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 86, "buffer_zone_hectares": null, "latitude": 12.10194, @@ -13993,6 +14569,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 199700, "buffer_zone_hectares": null, "latitude": 5.533333333, @@ -14018,6 +14595,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 66.65, "buffer_zone_hectares": null, "latitude": -2.530054, @@ -14042,6 +14620,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 113, "buffer_zone_hectares": null, "latitude": 59.437, @@ -14068,6 +14647,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 370.82, "buffer_zone_hectares": null, "latitude": 45.07253, @@ -14092,6 +14672,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.2, "buffer_zone_hectares": null, "latitude": 45.39911111, @@ -14116,6 +14697,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 155.43, "buffer_zone_hectares": null, "latitude": 45.76833333, @@ -14141,6 +14723,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4689.25, "buffer_zone_hectares": null, "latitude": 44.10694, @@ -14167,6 +14750,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.2, "buffer_zone_hectares": null, "latitude": 44.64624, @@ -14191,6 +14775,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 29.23, "buffer_zone_hectares": null, "latitude": 43.725, @@ -14216,6 +14801,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 98.05, "buffer_zone_hectares": null, "latitude": 40.75, @@ -14241,6 +14827,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 11231, "buffer_zone_hectares": null, "latitude": 40.6333333333, @@ -14267,6 +14854,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 934, "buffer_zone_hectares": null, "latitude": 37.28972222, @@ -14292,6 +14880,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 8.92, "buffer_zone_hectares": null, "latitude": 37.36611, @@ -14317,6 +14906,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.3254, "buffer_zone_hectares": null, "latitude": 39.70583333, @@ -14341,6 +14931,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 48, "buffer_zone_hectares": null, "latitude": 53.0105555556, @@ -14366,6 +14957,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 42, "buffer_zone_hectares": null, "latitude": 34.07389, @@ -14391,6 +14983,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 6.5, "buffer_zone_hectares": null, "latitude": 35.57083, @@ -14415,6 +15008,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 71140, "buffer_zone_hectares": null, "latitude": 20.45, @@ -14438,6 +15032,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 13200, "buffer_zone_hectares": null, "latitude": 22.61667, @@ -14462,6 +15057,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 93.88, "buffer_zone_hectares": null, "latitude": 19.968446, @@ -14486,6 +15082,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 159109.73, "buffer_zone_hectares": null, "latitude": 40.28333333, @@ -14509,6 +15106,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 50.9775, @@ -14534,6 +15132,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 18.038, "buffer_zone_hectares": null, "latitude": 54.041, @@ -14559,6 +15158,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 6.2, "buffer_zone_hectares": null, "latitude": 34.7967406661, @@ -14583,6 +15183,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 158, "buffer_zone_hectares": null, "latitude": 39.95644, @@ -14607,6 +15208,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1720.2, "buffer_zone_hectares": null, "latitude": 34.2538888889, @@ -14631,6 +15233,7 @@ ], "year_inscribed": 1997, "is_endangered": false, + "is_transboundary": false, "area_hectares": 430.17, "buffer_zone_hectares": null, "latitude": 56.95417, @@ -14655,6 +15258,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3.76, "buffer_zone_hectares": null, "latitude": 46.07444, @@ -14678,6 +15282,7 @@ ], "year_inscribed": 1998, "is_endangered": true, + "is_transboundary": false, "area_hectares": 37000, "buffer_zone_hectares": null, "latitude": -11.68333, @@ -14703,6 +15308,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 59.95, "buffer_zone_hectares": null, "latitude": 51.03097222, @@ -14727,6 +15333,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 67.3436, "buffer_zone_hectares": null, "latitude": 50.48111, @@ -14751,6 +15358,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.48, "buffer_zone_hectares": null, "latitude": 50.84668, @@ -14775,6 +15383,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.05, "buffer_zone_hectares": null, "latitude": 49.5939361111, @@ -14799,6 +15408,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 74.5, "buffer_zone_hectares": null, "latitude": 49.3, @@ -14823,6 +15433,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 11.4, "buffer_zone_hectares": null, "latitude": 48.9696388889, @@ -14847,6 +15458,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 75, "buffer_zone_hectares": null, "latitude": 18.613459, @@ -14872,6 +15484,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 224.14, "buffer_zone_hectares": null, "latitude": -2.897447, @@ -14896,6 +15509,7 @@ ], "year_inscribed": 1998, "is_endangered": true, + "is_transboundary": false, "area_hectares": 120, "buffer_zone_hectares": null, "latitude": 49.84163, @@ -14920,6 +15534,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": true, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 40.6975, @@ -14945,6 +15560,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7.32, "buffer_zone_hectares": null, "latitude": 52.84583, @@ -14969,6 +15585,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 100.9066, "buffer_zone_hectares": null, "latitude": 48.8579722222, @@ -14994,6 +15611,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 616.9, "buffer_zone_hectares": null, "latitude": 34.67555556, @@ -15018,6 +15636,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 320.417, "buffer_zone_hectares": null, "latitude": 56.16667, @@ -15042,6 +15661,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 427, "buffer_zone_hectares": null, "latitude": 45.76722, @@ -15066,6 +15686,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 108, "buffer_zone_hectares": null, "latitude": 48.55972222, @@ -15089,6 +15710,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 39.78995, @@ -15113,6 +15735,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 32.65, "buffer_zone_hectares": null, "latitude": 41.11472222, @@ -15137,6 +15760,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 78.38, "buffer_zone_hectares": null, "latitude": 40.48138889, @@ -15161,6 +15785,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 76458, "buffer_zone_hectares": null, "latitude": -50.75, @@ -15186,6 +15811,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 297, "buffer_zone_hectares": null, "latitude": 39.91055556, @@ -15211,6 +15837,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 215, "buffer_zone_hectares": null, "latitude": 39.84555556, @@ -15235,6 +15862,7 @@ ], "year_inscribed": 1998, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": -18.178323, @@ -15258,6 +15886,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 14.698, "buffer_zone_hectares": null, "latitude": 46.19314, @@ -15282,6 +15911,7 @@ ], "year_inscribed": 2000, "is_endangered": true, + "is_transboundary": false, "area_hectares": 240, "buffer_zone_hectares": null, "latitude": 39.05, @@ -15306,6 +15936,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 353.24, "buffer_zone_hectares": null, "latitude": 37.70083, @@ -15330,6 +15961,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 116, "buffer_zone_hectares": null, "latitude": -5.7837111111, @@ -15354,6 +15986,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 32576, "buffer_zone_hectares": null, "latitude": 19.88333, @@ -15378,6 +16011,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 28.5, "buffer_zone_hectares": null, "latitude": -18.244776, @@ -15402,6 +16036,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 111930, "buffer_zone_hectares": null, "latitude": -16.5, @@ -15427,6 +16062,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 468193, "buffer_zone_hectares": null, "latitude": -24.16667, @@ -15451,6 +16087,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 181, "buffer_zone_hectares": null, "latitude": 19.84639, @@ -15475,6 +16112,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 8.6, "buffer_zone_hectares": null, "latitude": 52.51972222, @@ -15498,6 +16136,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 27.3, "buffer_zone_hectares": null, "latitude": 50.96677778, @@ -15521,6 +16160,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": true, "area_hectares": 336900, "buffer_zone_hectares": null, "latitude": 63.3, @@ -15546,6 +16186,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7208, "buffer_zone_hectares": null, "latitude": 52.54888889, @@ -15570,6 +16211,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 298903, "buffer_zone_hectares": null, "latitude": 44, @@ -15594,6 +16236,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4.25, "buffer_zone_hectares": null, "latitude": 49.87361, @@ -15618,6 +16261,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 33, "buffer_zone_hectares": null, "latitude": 46.21777778, @@ -15641,6 +16285,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 47.82083333, @@ -15665,6 +16310,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 380, "buffer_zone_hectares": null, "latitude": 49.86668, @@ -15690,6 +16336,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 45.62305556, @@ -15715,6 +16362,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 80, "buffer_zone_hectares": null, "latitude": 41.94416667, @@ -15738,6 +16386,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1216, "buffer_zone_hectares": null, "latitude": 38.48786111, @@ -15762,6 +16411,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 15.37, "buffer_zone_hectares": null, "latitude": 17.34694, @@ -15787,6 +16437,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 107044, "buffer_zone_hectares": null, "latitude": 27.7263888889, @@ -15812,6 +16463,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 20.41, "buffer_zone_hectares": null, "latitude": 29.70111, @@ -15836,6 +16488,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 50.8, "buffer_zone_hectares": null, "latitude": 36.7475, @@ -15861,6 +16514,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": true, "area_hectares": 397403, "buffer_zone_hectares": null, "latitude": -27.8388888889, @@ -15884,6 +16538,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": -24.15861, @@ -15907,6 +16562,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 475, "buffer_zone_hectares": null, "latitude": -33.8, @@ -15931,6 +16587,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1032649, "buffer_zone_hectares": null, "latitude": -33.7, @@ -15955,6 +16612,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4.68, "buffer_zone_hectares": null, "latitude": 23.8588888889, @@ -15979,6 +16637,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1893, "buffer_zone_hectares": null, "latitude": 22.92777778, @@ -16003,6 +16662,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 147000, "buffer_zone_hectares": null, "latitude": 10.85, @@ -16027,6 +16687,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 60.38, "buffer_zone_hectares": null, "latitude": 28.47788889, @@ -16051,6 +16712,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 144, "buffer_zone_hectares": null, "latitude": 38.26666667, @@ -16075,6 +16737,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 91.094, "buffer_zone_hectares": null, "latitude": 47.0730555556, @@ -16099,6 +16762,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7847, "buffer_zone_hectares": null, "latitude": 44.89472222, @@ -16124,6 +16788,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 86021, "buffer_zone_hectares": null, "latitude": 47.39889, @@ -16148,6 +16813,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 15000, "buffer_zone_hectares": null, "latitude": 32.76666667, @@ -16171,6 +16837,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 600, "buffer_zone_hectares": null, "latitude": -47.15, @@ -16194,6 +16861,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 826122, "buffer_zone_hectares": null, "latitude": -42.5, @@ -16218,6 +16886,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 764.4, "buffer_zone_hectares": null, "latitude": 10.74056, @@ -16242,6 +16911,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 707.65, "buffer_zone_hectares": null, "latitude": 18.803972, @@ -16266,6 +16936,7 @@ ], "year_inscribed": 2002, "is_endangered": false, + "is_transboundary": false, "area_hectares": 30, "buffer_zone_hectares": null, "latitude": 5.82611, @@ -16292,6 +16963,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 37.73333333, @@ -16316,6 +16988,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 37.3, @@ -16340,6 +17013,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": true, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 50.17444, @@ -16364,6 +17038,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 88.99, "buffer_zone_hectares": null, "latitude": 11.51028, @@ -16388,6 +17063,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.85, "buffer_zone_hectares": null, "latitude": 18.9401222222, @@ -16411,6 +17087,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7.6, "buffer_zone_hectares": null, "latitude": 43.3373055556, @@ -16435,6 +17112,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 30, "buffer_zone_hectares": null, "latitude": 15.88333333, @@ -16459,6 +17137,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 142, "buffer_zone_hectares": null, "latitude": 15.773843, @@ -16483,6 +17162,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 59, "buffer_zone_hectares": null, "latitude": -18.75917, @@ -16508,6 +17188,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": true, "area_hectares": 217447, "buffer_zone_hectares": null, "latitude": 17.4275555556, @@ -16533,6 +17214,7 @@ ], "year_inscribed": 2002, "is_endangered": false, + "is_transboundary": false, "area_hectares": 60100, "buffer_zone_hectares": null, "latitude": 28.55623, @@ -16558,6 +17240,7 @@ ], "year_inscribed": 1999, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2350000, "buffer_zone_hectares": null, "latitude": -4.75, @@ -16582,6 +17265,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 16.02778, @@ -16605,6 +17289,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 21.5, "buffer_zone_hectares": null, "latitude": 40.36666667, @@ -16628,6 +17313,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 23.2, "buffer_zone_hectares": null, "latitude": -33.04063889, @@ -16651,6 +17337,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.97, "buffer_zone_hectares": null, "latitude": 40.140439, @@ -16676,6 +17363,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.1, "buffer_zone_hectares": null, "latitude": 43.73629, @@ -16700,6 +17388,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.0075, "buffer_zone_hectares": null, "latitude": 52.0853333333, @@ -16723,6 +17412,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 275369, "buffer_zone_hectares": null, "latitude": -30, @@ -16747,6 +17437,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1523446, "buffer_zone_hectares": null, "latitude": -14.26667, @@ -16771,6 +17462,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 56286, "buffer_zone_hectares": null, "latitude": 56.325, @@ -16795,6 +17487,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 18462, "buffer_zone_hectares": null, "latitude": 48.36444444, @@ -16819,6 +17512,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 13.8977, "buffer_zone_hectares": null, "latitude": -42.5, @@ -16843,6 +17537,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 54.9, "buffer_zone_hectares": null, "latitude": 26.20861111, @@ -16867,6 +17562,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 23.6, "buffer_zone_hectares": null, "latitude": 49.2927777778, @@ -16891,6 +17587,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 47.69872222, @@ -16915,6 +17612,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 51.49138889, @@ -16939,6 +17637,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2880, "buffer_zone_hectares": null, "latitude": 35.78889, @@ -16962,6 +17661,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 51.65, "buffer_zone_hectares": null, "latitude": 34.96667, @@ -16985,6 +17685,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 70, "buffer_zone_hectares": null, "latitude": 39.6239413889, @@ -17010,6 +17711,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 13.45, "buffer_zone_hectares": null, "latitude": 55.7994526626, @@ -17033,6 +17735,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 424, "buffer_zone_hectares": null, "latitude": 54.9788888889, @@ -17057,6 +17760,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.1, "buffer_zone_hectares": null, "latitude": 59.95, @@ -17080,6 +17784,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 257.5, "buffer_zone_hectares": null, "latitude": 32.37944444, @@ -17104,6 +17809,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3310, "buffer_zone_hectares": null, "latitude": 51.77638889, @@ -17130,6 +17836,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": true, "area_hectares": 249313, "buffer_zone_hectares": null, "latitude": -29.7652777778, @@ -17154,6 +17861,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 164.203, "buffer_zone_hectares": null, "latitude": 10.49073, @@ -17177,6 +17885,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.68, "buffer_zone_hectares": null, "latitude": 43.0106407944, @@ -17201,6 +17910,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7.98, "buffer_zone_hectares": null, "latitude": 42.50472222, @@ -17225,6 +17935,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 284.119, "buffer_zone_hectares": null, "latitude": 42.3497222222, @@ -17251,6 +17962,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 14563.25, "buffer_zone_hectares": null, "latitude": 43.06616667, @@ -17275,6 +17987,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 40.3, "buffer_zone_hectares": null, "latitude": -15.934231, @@ -17298,6 +18011,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": true, "area_hectares": 33021, "buffer_zone_hectares": null, "latitude": 55.27458, @@ -17322,6 +18036,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 38.12, "buffer_zone_hectares": null, "latitude": -31.42056, @@ -17346,6 +18061,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 410, "buffer_zone_hectares": null, "latitude": 51.20891, @@ -17370,6 +18086,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5232018, "buffer_zone_hectares": null, "latitude": -2.333333333, @@ -17395,6 +18112,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 187818, "buffer_zone_hectares": null, "latitude": -17.656, @@ -17420,6 +18138,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 43270, "buffer_zone_hectares": null, "latitude": -3.857944444, @@ -17444,6 +18163,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 31.00167, @@ -17469,6 +18189,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 52, "buffer_zone_hectares": null, "latitude": 29.90444444, @@ -17494,6 +18215,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 331, "buffer_zone_hectares": null, "latitude": 34.46666667, @@ -17520,6 +18242,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3434.9399, "buffer_zone_hectares": null, "latitude": 41.70722222, @@ -17545,6 +18268,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 50.82806, @@ -17570,6 +18294,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 172, "buffer_zone_hectares": null, "latitude": 50.4201134823, @@ -17594,6 +18319,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": -34.3558051153, @@ -17618,6 +18344,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 81475, "buffer_zone_hectares": null, "latitude": 20.03, @@ -17642,6 +18369,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.4963, "buffer_zone_hectares": null, "latitude": 50.60603, @@ -17666,6 +18394,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 849.88, "buffer_zone_hectares": null, "latitude": 18.25333, @@ -17690,6 +18419,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 74.3, "buffer_zone_hectares": null, "latitude": 40.15931, @@ -17714,6 +18444,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 75370, "buffer_zone_hectares": null, "latitude": 6.25, @@ -17740,6 +18471,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 52864, "buffer_zone_hectares": null, "latitude": 4.13333, @@ -17764,6 +18496,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3609, "buffer_zone_hectares": null, "latitude": 3.8042916667, @@ -17788,6 +18521,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 166.52, "buffer_zone_hectares": null, "latitude": -16.398353, @@ -17812,6 +18546,7 @@ ], "year_inscribed": 2000, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1600000, "buffer_zone_hectares": null, "latitude": 4, @@ -17836,6 +18571,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 662.62, "buffer_zone_hectares": null, "latitude": 37.9291666667, @@ -17860,6 +18596,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4800, "buffer_zone_hectares": null, "latitude": -18.75, @@ -17885,6 +18622,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 26.8, "buffer_zone_hectares": null, "latitude": 0.348611111, @@ -17909,6 +18647,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1916300, "buffer_zone_hectares": null, "latitude": 71.18888889, @@ -17935,6 +18674,7 @@ ], "year_inscribed": 2002, "is_endangered": false, + "is_transboundary": false, "area_hectares": 112.79, "buffer_zone_hectares": null, "latitude": 36.89319444, @@ -17961,6 +18701,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4.5, "buffer_zone_hectares": null, "latitude": 41.96391667, @@ -17984,6 +18725,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 61187.96, "buffer_zone_hectares": null, "latitude": 43.06666667, @@ -18009,6 +18751,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 42.82, "buffer_zone_hectares": null, "latitude": 60.60472, @@ -18033,6 +18776,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 28.5, "buffer_zone_hectares": null, "latitude": 53.83916667, @@ -18056,6 +18800,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2550, "buffer_zone_hectares": null, "latitude": 50.70555556, @@ -18080,6 +18825,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1228.7, "buffer_zone_hectares": null, "latitude": 53.02888889, @@ -18105,6 +18851,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 38.2, "buffer_zone_hectares": null, "latitude": 41.443, @@ -18129,6 +18876,7 @@ ], "year_inscribed": 2001, "is_endangered": true, + "is_transboundary": false, "area_hectares": 371, "buffer_zone_hectares": null, "latitude": 48.2094, @@ -18153,6 +18901,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 381430, "buffer_zone_hectares": null, "latitude": -14.00569444, @@ -18178,6 +18927,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 82400, "buffer_zone_hectares": null, "latitude": 46.5, @@ -18204,6 +18954,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 348.75, "buffer_zone_hectares": null, "latitude": 40.10972, @@ -18228,6 +18979,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 276, "buffer_zone_hectares": null, "latitude": 31.3155555556, @@ -18253,6 +19005,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 63.3, "buffer_zone_hectares": null, "latitude": 32.9216666667, @@ -18277,6 +19030,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2047.5601, "buffer_zone_hectares": null, "latitude": 40.03645, @@ -18302,6 +19056,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 24600, "buffer_zone_hectares": null, "latitude": 41.10166667, @@ -18326,6 +19081,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.73, "buffer_zone_hectares": null, "latitude": 49.2071833333, @@ -18350,6 +19106,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 8.26, "buffer_zone_hectares": null, "latitude": 49.75, @@ -18374,6 +19131,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.23, "buffer_zone_hectares": null, "latitude": 51.05427778, @@ -18398,6 +19156,7 @@ ], "year_inscribed": 2001, "is_endangered": false, + "is_transboundary": false, "area_hectares": 15.6, "buffer_zone_hectares": null, "latitude": -2.284444444, @@ -18424,6 +19183,7 @@ ], "year_inscribed": 2002, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4.86, "buffer_zone_hectares": null, "latitude": 24.69528, @@ -18448,6 +19208,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7.5, "buffer_zone_hectares": null, "latitude": 33.25667, @@ -18473,6 +19234,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 32034, "buffer_zone_hectares": null, "latitude": -0.4425, @@ -18501,6 +19263,7 @@ ], "year_inscribed": 2002, "is_endangered": false, + "is_transboundary": false, "area_hectares": 331397, "buffer_zone_hectares": null, "latitude": 18.0530277778, @@ -18525,6 +19288,7 @@ ], "year_inscribed": 2002, "is_endangered": false, + "is_transboundary": false, "area_hectares": 13255, "buffer_zone_hectares": null, "latitude": 48.15, @@ -18550,6 +19314,7 @@ ], "year_inscribed": 2002, "is_endangered": false, + "is_transboundary": false, "area_hectares": 27250, "buffer_zone_hectares": null, "latitude": 50.17361111, @@ -18574,6 +19339,7 @@ ], "year_inscribed": 2002, "is_endangered": false, + "is_transboundary": false, "area_hectares": 168, "buffer_zone_hectares": null, "latitude": 54.3025, @@ -18598,6 +19364,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 90.5, "buffer_zone_hectares": null, "latitude": 45.97455556, @@ -18622,6 +19389,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 37.658, "buffer_zone_hectares": null, "latitude": 42.0558333333, @@ -18648,6 +19416,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 182.5, "buffer_zone_hectares": null, "latitude": 18.537, @@ -18671,6 +19440,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 537.22, "buffer_zone_hectares": null, "latitude": 40.125, @@ -18697,6 +19467,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 10, "buffer_zone_hectares": null, "latitude": 36.60388889, @@ -18721,6 +19492,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 6.55, "buffer_zone_hectares": null, "latitude": 49.21722222, @@ -18745,6 +19517,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 103.7, "buffer_zone_hectares": null, "latitude": 21.20438889, @@ -18770,6 +19543,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 121967, "buffer_zone_hectares": null, "latitude": 47.479214, @@ -18796,6 +19570,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 27.895, @@ -18821,6 +19596,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 132, "buffer_zone_hectares": null, "latitude": 51.48194444, @@ -18845,6 +19621,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.287, "buffer_zone_hectares": null, "latitude": 53.07597222, @@ -18868,6 +19645,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": true, "area_hectares": 1089.34, "buffer_zone_hectares": null, "latitude": 45.8888888889, @@ -18894,6 +19672,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 234.73, "buffer_zone_hectares": null, "latitude": 38.86305556, @@ -18918,6 +19697,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 23.928, "buffer_zone_hectares": null, "latitude": 31.50167, @@ -18942,6 +19722,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 239723, "buffer_zone_hectares": null, "latitude": -17.5, @@ -18966,6 +19747,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 140.4, "buffer_zone_hectares": null, "latitude": 32.0777777778, @@ -18990,6 +19772,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5.18, "buffer_zone_hectares": null, "latitude": 55.72611111, @@ -19016,6 +19799,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 28168.6602, "buffer_zone_hectares": null, "latitude": -22.1925, @@ -19039,6 +19823,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7248.78, "buffer_zone_hectares": null, "latitude": -22.9477777778, @@ -19064,6 +19849,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1328.89, "buffer_zone_hectares": null, "latitude": 22.48333333, @@ -19088,6 +19874,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 450344, "buffer_zone_hectares": null, "latitude": 50.4333333333, @@ -19113,6 +19900,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.55, "buffer_zone_hectares": null, "latitude": 43.2976944444, @@ -19139,6 +19927,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 159.65, "buffer_zone_hectares": null, "latitude": 30.19383, @@ -19163,6 +19952,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 6655, "buffer_zone_hectares": null, "latitude": 30.5738888889, @@ -19188,6 +19978,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 96.04, "buffer_zone_hectares": null, "latitude": 32.59722, @@ -19213,6 +20004,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 16.1678, "buffer_zone_hectares": null, "latitude": 22.1912919444, @@ -19237,6 +20029,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 16603.22, "buffer_zone_hectares": null, "latitude": 23.0932777778, @@ -19262,6 +20055,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 371.948, "buffer_zone_hectares": null, "latitude": 22.2855194444, @@ -19287,6 +20081,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 152.65, "buffer_zone_hectares": null, "latitude": 25.0230555556, @@ -19312,6 +20107,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 414, "buffer_zone_hectares": null, "latitude": 36.1266666666, @@ -19337,6 +20133,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1574300, "buffer_zone_hectares": null, "latitude": -20.4119444444, @@ -19362,6 +20159,7 @@ ], "year_inscribed": 2003, "is_endangered": false, + "is_transboundary": false, "area_hectares": 172116.4375, "buffer_zone_hectares": null, "latitude": -23.19986111, @@ -19386,6 +20184,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 987, "buffer_zone_hectares": null, "latitude": 38.51344444, @@ -19410,6 +20209,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 75, "buffer_zone_hectares": null, "latitude": 7.75556, @@ -19433,6 +20233,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 141120, "buffer_zone_hectares": null, "latitude": 4.889476, @@ -19457,6 +20258,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": true, "area_hectares": 352.14, "buffer_zone_hectares": null, "latitude": 51.547653, @@ -19481,6 +20283,7 @@ ], "year_inscribed": 2003, "is_endangered": true, + "is_transboundary": false, "area_hectares": 70, "buffer_zone_hectares": null, "latitude": 35.4566666667, @@ -19504,6 +20307,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 26, "buffer_zone_hectares": null, "latitude": -37.80611111, @@ -19527,6 +20331,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": true, "area_hectares": 99947.81, "buffer_zone_hectares": null, "latitude": 48.9, @@ -19551,6 +20356,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 109.09, "buffer_zone_hectares": null, "latitude": 57.1, @@ -19578,6 +20384,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4164.8599, "buffer_zone_hectares": null, "latitude": 41.15694444, @@ -19602,6 +20409,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.1161, "buffer_zone_hectares": null, "latitude": 19.4111978833, @@ -19626,6 +20434,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 194.4, "buffer_zone_hectares": null, "latitude": 54.879, @@ -19650,6 +20459,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 270125, "buffer_zone_hectares": null, "latitude": 7.433, @@ -19675,6 +20485,7 @@ ], "year_inscribed": 2004, "is_endangered": true, + "is_transboundary": false, "area_hectares": 4.24, "buffer_zone_hectares": null, "latitude": 16.2898, @@ -19698,6 +20509,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": true, "area_hectares": 271826, "buffer_zone_hectares": null, "latitude": 10.1480833333, @@ -19722,6 +20534,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 15.93, "buffer_zone_hectares": null, "latitude": 39.5078888889, @@ -19747,6 +20560,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 506.4, "buffer_zone_hectares": null, "latitude": 33.83694444, @@ -19770,6 +20584,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 107294, "buffer_zone_hectares": null, "latitude": 65.61667, @@ -19793,6 +20608,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 900, "buffer_zone_hectares": null, "latitude": 43.80333333, @@ -19819,6 +20635,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 511991, "buffer_zone_hectares": null, "latitude": -0.5, @@ -19843,6 +20660,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 399800, "buffer_zone_hectares": null, "latitude": 69.13333333, @@ -19866,6 +20684,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 9270, "buffer_zone_hectares": null, "latitude": 64.25380556, @@ -19890,6 +20709,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 302319, "buffer_zone_hectares": null, "latitude": 44.2202777778, @@ -19915,6 +20735,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 182.8, "buffer_zone_hectares": null, "latitude": 49.02055556, @@ -19940,6 +20761,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 326.93, "buffer_zone_hectares": null, "latitude": 42.00683333, @@ -19963,6 +20785,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4247, "buffer_zone_hectares": null, "latitude": 42.49472222, @@ -19987,6 +20810,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2909, "buffer_zone_hectares": null, "latitude": 13.80708333, @@ -20010,6 +20834,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 30000, "buffer_zone_hectares": null, "latitude": -26.86, @@ -20035,6 +20860,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 36.69, "buffer_zone_hectares": null, "latitude": 51.1069472222, @@ -20060,6 +20886,7 @@ ], "year_inscribed": 2004, "is_endangered": true, + "is_transboundary": false, "area_hectares": 2595124, "buffer_zone_hectares": null, "latitude": -2.5, @@ -20084,6 +20911,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 110, "buffer_zone_hectares": null, "latitude": 57.65278, @@ -20109,6 +20937,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2782354, "buffer_zone_hectares": null, "latitude": 0.5252777778, @@ -20134,6 +20963,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 573.48, "buffer_zone_hectares": null, "latitude": -20.20582, @@ -20157,6 +20987,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 32850, "buffer_zone_hectares": null, "latitude": 46.9166666667, @@ -20181,6 +21012,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 133, "buffer_zone_hectares": null, "latitude": 49.49278, @@ -20206,6 +21038,7 @@ ], "year_inscribed": 2005, "is_endangered": true, + "is_transboundary": false, "area_hectares": 688558, "buffer_zone_hectares": null, "latitude": 27.62667, @@ -20229,6 +21062,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 233600, "buffer_zone_hectares": null, "latitude": -4.7244444444, @@ -20254,6 +21088,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.23, "buffer_zone_hectares": null, "latitude": 51.21833, @@ -20277,6 +21112,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 20015, "buffer_zone_hectares": null, "latitude": 29.33333, @@ -20301,6 +21137,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": true, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 59.0577777778, @@ -20326,6 +21163,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 790.146, "buffer_zone_hectares": null, "latitude": 36.43528, @@ -20352,6 +21190,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 48, "buffer_zone_hectares": null, "latitude": 9.3088888888, @@ -20377,6 +21216,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 70.4, "buffer_zone_hectares": null, "latitude": 26.23306, @@ -20401,6 +21241,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 71100, "buffer_zone_hectares": null, "latitude": 43.94944, @@ -20425,6 +21266,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19519.9, "buffer_zone_hectares": null, "latitude": -8.2591666667, @@ -20449,6 +21291,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 122712, "buffer_zone_hectares": null, "latitude": 62.11667, @@ -20473,6 +21316,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0, "buffer_zone_hectares": null, "latitude": 53.22278, @@ -20497,6 +21341,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 353.24, "buffer_zone_hectares": null, "latitude": 42.18318, @@ -20522,6 +21367,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 898.46, "buffer_zone_hectares": null, "latitude": 37.05944, @@ -20545,6 +21391,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 89549.18, "buffer_zone_hectares": null, "latitude": -15.9116666667, @@ -20569,6 +21416,7 @@ ], "year_inscribed": 2005, "is_endangered": false, + "is_transboundary": false, "area_hectares": 70, "buffer_zone_hectares": null, "latitude": 22.145887, @@ -20593,6 +21441,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 56844, "buffer_zone_hectares": null, "latitude": 7.45245, @@ -20616,6 +21465,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1455.949, "buffer_zone_hectares": null, "latitude": 22.9988888889, @@ -20642,6 +21492,7 @@ ], "year_inscribed": 2004, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2761.2, "buffer_zone_hectares": null, "latitude": 29.11683, @@ -20667,6 +21518,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 35018.852, "buffer_zone_hectares": null, "latitude": 20.8630555555, @@ -20691,6 +21543,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 15.77, "buffer_zone_hectares": null, "latitude": 44.412, @@ -20714,6 +21567,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 924500, "buffer_zone_hectares": null, "latitude": 30.8333333333, @@ -20737,6 +21591,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 17.2, "buffer_zone_hectares": null, "latitude": -34.0844444444, @@ -20762,6 +21617,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19709.4, "buffer_zone_hectares": null, "latitude": 50.1361111111, @@ -20786,6 +21642,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 857500, "buffer_zone_hectares": null, "latitude": 4.003344, @@ -20810,6 +21667,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.08, "buffer_zone_hectares": null, "latitude": 43.323175, @@ -20833,6 +21691,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 62.58, "buffer_zone_hectares": null, "latitude": 32.8293966667, @@ -20857,6 +21716,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 21454.81, "buffer_zone_hectares": null, "latitude": 44.9943861111, @@ -20881,6 +21741,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 187, "buffer_zone_hectares": null, "latitude": 34.3883333333, @@ -20906,6 +21767,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 154.68, "buffer_zone_hectares": null, "latitude": 5.4213888889, @@ -20929,6 +21791,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 154.7, "buffer_zone_hectares": null, "latitude": 14.390841, @@ -20952,6 +21815,7 @@ ], "year_inscribed": 2009, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.113, "buffer_zone_hectares": null, "latitude": 10.2500229431, @@ -20976,6 +21840,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": true, "area_hectares": 9.85, "buffer_zone_hectares": null, "latitude": 13.6911111111, @@ -20999,6 +21864,7 @@ ], "year_inscribed": 2006, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.164, "buffer_zone_hectares": null, "latitude": -20.1586388889, @@ -21023,6 +21889,7 @@ ], "year_inscribed": 2006, "is_endangered": true, + "is_transboundary": false, "area_hectares": 8.87, "buffer_zone_hectares": null, "latitude": 34.7566666667, @@ -21046,6 +21913,7 @@ ], "year_inscribed": 2009, "is_endangered": false, + "is_transboundary": false, "area_hectares": 112, "buffer_zone_hectares": null, "latitude": 40.5311111111, @@ -21070,6 +21938,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1538, "buffer_zone_hectares": null, "latitude": -3.9319444444, @@ -21094,6 +21963,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1887251, "buffer_zone_hectares": null, "latitude": 69.0469444444, @@ -21118,6 +21988,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.77, "buffer_zone_hectares": null, "latitude": 12.435, @@ -21142,6 +22013,7 @@ ], "year_inscribed": 2009, "is_endangered": false, + "is_transboundary": false, "area_hectares": 141902.8, "buffer_zone_hectares": null, "latitude": 46.6130555556, @@ -21166,6 +22038,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 88.1, "buffer_zone_hectares": null, "latitude": 52.4483333333, @@ -21191,6 +22064,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1376.53, "buffer_zone_hectares": null, "latitude": 43.1816666667, @@ -21215,6 +22089,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 77.905, "buffer_zone_hectares": null, "latitude": 37.9997222222, @@ -21240,6 +22115,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 898, "buffer_zone_hectares": null, "latitude": 46.4919444444, @@ -21263,6 +22139,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 55, "buffer_zone_hectares": null, "latitude": 43.9327777778, @@ -21288,6 +22165,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 529.17, "buffer_zone_hectares": null, "latitude": 35.1127777777, @@ -21312,6 +22190,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 97125, "buffer_zone_hectares": null, "latitude": 24.9233333333, @@ -21337,6 +22216,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 176.5, "buffer_zone_hectares": null, "latitude": 19.3322222222, @@ -21361,6 +22241,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2611674, "buffer_zone_hectares": null, "latitude": 38.765, @@ -21385,6 +22266,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 179.217, "buffer_zone_hectares": null, "latitude": 43.8993055556, @@ -21409,6 +22291,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 57.4269, "buffer_zone_hectares": null, "latitude": -20.597, @@ -21433,6 +22316,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1731, "buffer_zone_hectares": null, "latitude": 44.8388888889, @@ -21457,6 +22341,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 479660.7, "buffer_zone_hectares": null, "latitude": -14.4597222222, @@ -21481,6 +22366,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 18990, "buffer_zone_hectares": null, "latitude": 28.2713888889, @@ -21504,6 +22390,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 349.6, "buffer_zone_hectares": null, "latitude": -20.4519444444, @@ -21528,6 +22415,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.5, "buffer_zone_hectares": null, "latitude": 43.7814444444, @@ -21552,6 +22440,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 129.2819, "buffer_zone_hectares": null, "latitude": 38.9788888889, @@ -21575,6 +22464,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 410460, "buffer_zone_hectares": null, "latitude": 12.5, @@ -21599,6 +22489,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 9521.8, "buffer_zone_hectares": null, "latitude": 33.4688888889, @@ -21623,6 +22514,7 @@ ], "year_inscribed": 2007, "is_endangered": false, + "is_transboundary": false, "area_hectares": 160000, "buffer_zone_hectares": null, "latitude": -28.6, @@ -21646,6 +22538,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3370, "buffer_zone_hectares": null, "latitude": 63.3030555556, @@ -21670,6 +22563,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 77.6, "buffer_zone_hectares": null, "latitude": 16.9736111111, @@ -21695,6 +22589,7 @@ ], "year_inscribed": 2009, "is_endangered": false, + "is_transboundary": false, "area_hectares": 626.36, "buffer_zone_hectares": null, "latitude": -10.8916666667, @@ -21719,6 +22614,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 54, "buffer_zone_hectares": null, "latitude": 21.3786111111, @@ -21743,6 +22639,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3, "buffer_zone_hectares": null, "latitude": -11.0136554428, @@ -21767,6 +22664,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.5644, "buffer_zone_hectares": null, "latitude": 49.3361111111, @@ -21791,6 +22689,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 46.95, "buffer_zone_hectares": null, "latitude": 20.9144444444, @@ -21815,6 +22714,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": true, "area_hectares": 152.42, "buffer_zone_hectares": null, "latitude": 46.4983333333, @@ -21838,6 +22738,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 176.2, "buffer_zone_hectares": null, "latitude": 39.0011111111, @@ -21862,6 +22763,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 494.2, "buffer_zone_hectares": null, "latitude": 37.9816666667, @@ -21887,6 +22789,7 @@ ], "year_inscribed": 2009, "is_endangered": false, + "is_transboundary": false, "area_hectares": 18415, "buffer_zone_hectares": null, "latitude": 39.0305555556, @@ -21911,6 +22814,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 886.31, "buffer_zone_hectares": null, "latitude": -17.6280694444, @@ -21934,6 +22838,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 14.84, "buffer_zone_hectares": null, "latitude": 61.7072222222, @@ -21959,6 +22864,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1153.16, "buffer_zone_hectares": null, "latitude": 47.2361111111, @@ -21982,6 +22888,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 689, "buffer_zone_hectares": null, "latitude": 45.7097222222, @@ -22006,6 +22913,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 235, "buffer_zone_hectares": null, "latitude": 45.1594444444, @@ -22029,6 +22937,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 13551.552, "buffer_zone_hectares": null, "latitude": 19.6063888889, @@ -22052,6 +22961,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 22950, "buffer_zone_hectares": null, "latitude": 28.9158333333, @@ -22076,6 +22986,7 @@ ], "year_inscribed": 2008, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1621.2, "buffer_zone_hectares": null, "latitude": 26.7836111111, @@ -22100,6 +23011,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.36, "buffer_zone_hectares": null, "latitude": -4.0627777778, @@ -22124,6 +23036,7 @@ ], "year_inscribed": 2009, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.86, "buffer_zone_hectares": null, "latitude": 50.835, @@ -22147,6 +23060,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1387000, "buffer_zone_hectares": null, "latitude": 60.6666666667, @@ -22170,6 +23084,7 @@ ], "year_inscribed": 2009, "is_endangered": false, + "is_transboundary": false, "area_hectares": 283.9, "buffer_zone_hectares": null, "latitude": 47.1038888889, @@ -22195,6 +23110,7 @@ ], "year_inscribed": 2009, "is_endangered": false, + "is_transboundary": false, "area_hectares": 103, "buffer_zone_hectares": null, "latitude": 52.9702777778, @@ -22218,6 +23134,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 825, "buffer_zone_hectares": null, "latitude": 34.4587472222, @@ -22241,6 +23158,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1502.51, "buffer_zone_hectares": null, "latitude": -33.3783333333, @@ -22265,6 +23183,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 173164.18, "buffer_zone_hectares": null, "latitude": -23.0186055556, @@ -22289,6 +23208,7 @@ ], "year_inscribed": 2009, "is_endangered": false, + "is_transboundary": false, "area_hectares": 209.1, "buffer_zone_hectares": null, "latitude": 14.9151388889, @@ -22312,6 +23232,7 @@ ], "year_inscribed": 2009, "is_endangered": false, + "is_transboundary": false, "area_hectares": 86.12, "buffer_zone_hectares": null, "latitude": 43.3858333333, @@ -22336,6 +23257,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": true, "area_hectares": 104.1, "buffer_zone_hectares": null, "latitude": 38.7752777778, @@ -22361,6 +23283,7 @@ ], "year_inscribed": 2009, "is_endangered": false, + "is_transboundary": true, "area_hectares": 1143403, "buffer_zone_hectares": null, "latitude": 53.5286111111, @@ -22386,6 +23309,7 @@ ], "year_inscribed": 2009, "is_endangered": false, + "is_transboundary": false, "area_hectares": 240.4152, "buffer_zone_hectares": null, "latitude": 32.0186111111, @@ -22410,6 +23334,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 105838, "buffer_zone_hectares": null, "latitude": -21.0994444444, @@ -22434,6 +23359,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 14.08, "buffer_zone_hectares": null, "latitude": 46.0941666667, @@ -22458,6 +23384,7 @@ ], "year_inscribed": 2009, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1891.2, "buffer_zone_hectares": null, "latitude": 37.1972222222, @@ -22482,6 +23409,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": true, "area_hectares": 98.4838, "buffer_zone_hectares": null, "latitude": 46.4684138889, @@ -22506,6 +23434,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 109.89, "buffer_zone_hectares": null, "latitude": 5.1958333333, @@ -22530,6 +23459,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 599.6, "buffer_zone_hectares": null, "latitude": 36.5391666667, @@ -22554,6 +23484,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 40825000, "buffer_zone_hectares": null, "latitude": -3.864454, @@ -22580,6 +23511,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 36207499, "buffer_zone_hectares": null, "latitude": 25.34907, @@ -22604,6 +23536,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 18.395, "buffer_zone_hectares": null, "latitude": 21.03752, @@ -22628,6 +23561,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 28.78, "buffer_zone_hectares": null, "latitude": 24.7341333333, @@ -22653,6 +23587,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 8, "buffer_zone_hectares": null, "latitude": 48.2966666667, @@ -22677,6 +23612,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 23000, "buffer_zone_hectares": null, "latitude": 5.3, @@ -22701,6 +23637,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3322.88, "buffer_zone_hectares": null, "latitude": 30.2375, @@ -22725,6 +23662,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 82151, "buffer_zone_hectares": null, "latitude": 28.4219444444, @@ -22751,6 +23689,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2357.36, "buffer_zone_hectares": null, "latitude": 16.9333333333, @@ -22775,6 +23714,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19.47, "buffer_zone_hectares": null, "latitude": 43.9291666667, @@ -22799,6 +23739,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.8652, "buffer_zone_hectares": null, "latitude": 26.9247222222, @@ -22822,6 +23763,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 73500, "buffer_zone_hectares": null, "latitude": 11.6, @@ -22846,6 +23788,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 795315, "buffer_zone_hectares": null, "latitude": 8.5297222222, @@ -22871,6 +23814,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4945.45, "buffer_zone_hectares": null, "latitude": 24.0677777778, @@ -22895,6 +23839,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 118.07, "buffer_zone_hectares": null, "latitude": 50.4352777778, @@ -22920,6 +23865,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.1353, "buffer_zone_hectares": null, "latitude": 38.2486111111, @@ -22945,6 +23891,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 28.9733, "buffer_zone_hectares": null, "latitude": 38.0813888889, @@ -22970,6 +23917,7 @@ ], "year_inscribed": 2011, "is_endangered": true, + "is_transboundary": false, "area_hectares": 12290, "buffer_zone_hectares": null, "latitude": 36.3341666667, @@ -22995,6 +23943,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 198.2, "buffer_zone_hectares": null, "latitude": 52.365, @@ -23019,6 +23968,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3101.91, "buffer_zone_hectares": null, "latitude": 22.6080555556, @@ -23042,6 +23992,7 @@ ], "year_inscribed": 2010, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1515.17, "buffer_zone_hectares": null, "latitude": 16.9508333333, @@ -23066,6 +24017,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 26251.6, "buffer_zone_hectares": null, "latitude": 18.0775, @@ -23090,6 +24042,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 155.5, "buffer_zone_hectares": null, "latitude": 20.0780555556, @@ -23115,6 +24068,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 145811, "buffer_zone_hectares": null, "latitude": 13.8352777778, @@ -23139,6 +24093,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3943, "buffer_zone_hectares": null, "latitude": 50.4625, @@ -23163,6 +24118,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 17.92, "buffer_zone_hectares": null, "latitude": 21.4838888889, @@ -23186,6 +24142,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7939, "buffer_zone_hectares": null, "latitude": 27.7183333333, @@ -23210,6 +24167,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": true, "area_hectares": 274.2, "buffer_zone_hectares": null, "latitude": 47.2783333333, @@ -23233,6 +24191,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 35086.81, "buffer_zone_hectares": null, "latitude": 26.24128, @@ -23257,6 +24216,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.5, "buffer_zone_hectares": null, "latitude": 41.6777777778, @@ -23280,6 +24240,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 179.3559, "buffer_zone_hectares": null, "latitude": 38.8806194444, @@ -23304,6 +24265,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.88, "buffer_zone_hectares": null, "latitude": 51.9838888889, @@ -23328,6 +24290,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 705015, "buffer_zone_hectares": null, "latitude": -22.5625, @@ -23351,6 +24314,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 259, "buffer_zone_hectares": null, "latitude": 31.6011111111, @@ -23376,6 +24340,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 30745, "buffer_zone_hectares": null, "latitude": 39.7308333333, @@ -23402,6 +24367,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 716.35, "buffer_zone_hectares": null, "latitude": 30.1666666667, @@ -23425,6 +24391,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 36, "buffer_zone_hectares": null, "latitude": 23.6802777778, @@ -23450,6 +24417,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 187, "buffer_zone_hectares": null, "latitude": 13.0966666667, @@ -23475,6 +24443,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 74179.7, "buffer_zone_hectares": null, "latitude": 29.6397222222, @@ -23499,6 +24468,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.19, "buffer_zone_hectares": null, "latitude": 49.9443931107, @@ -23523,6 +24493,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": true, "area_hectares": 746309, "buffer_zone_hectares": null, "latitude": 2.6094444444, @@ -23546,6 +24517,7 @@ ], "year_inscribed": 2011, "is_endangered": false, + "is_transboundary": false, "area_hectares": 11300, "buffer_zone_hectares": null, "latitude": 49.3338888889, @@ -23573,6 +24545,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 100200, "buffer_zone_hectares": null, "latitude": 7.246925, @@ -23597,6 +24570,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 36.2, "buffer_zone_hectares": null, "latitude": 40.2078111111, @@ -23620,6 +24594,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 512, "buffer_zone_hectares": null, "latitude": 24.6688888889, @@ -23645,6 +24620,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 25131.27, "buffer_zone_hectares": null, "latitude": 42.358, @@ -23669,6 +24645,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 10785.33, "buffer_zone_hectares": null, "latitude": 44.6086111111, @@ -23693,6 +24670,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 54, "buffer_zone_hectares": null, "latitude": 32.6686111111, @@ -23717,6 +24695,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 398.64, "buffer_zone_hectares": null, "latitude": 5.0679083333, @@ -23740,6 +24719,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.0756, "buffer_zone_hectares": null, "latitude": 32.6697222222, @@ -23766,6 +24746,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.4754, "buffer_zone_hectares": null, "latitude": 37.2580277778, @@ -23790,6 +24771,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 69.6, "buffer_zone_hectares": null, "latitude": -17.6833777778, @@ -23813,6 +24795,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 62808, "buffer_zone_hectares": null, "latitude": 19.055, @@ -23837,6 +24820,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 348.59, "buffer_zone_hectares": null, "latitude": 34.0241666667, @@ -23862,6 +24846,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 415.66, "buffer_zone_hectares": null, "latitude": 25.9780555556, @@ -23885,6 +24870,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 16923.07, "buffer_zone_hectares": null, "latitude": 6.7171694444, @@ -23908,6 +24894,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1323.24, "buffer_zone_hectares": null, "latitude": 45.1183333333, @@ -23932,6 +24919,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 37, "buffer_zone_hectares": null, "latitude": 37.6666666667, @@ -23955,6 +24943,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 90540, "buffer_zone_hectares": null, "latitude": 31.8333333333, @@ -23979,6 +24968,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 50309, "buffer_zone_hectares": null, "latitude": 12.5933333333, @@ -24004,6 +24994,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 714566, "buffer_zone_hectares": null, "latitude": 32, @@ -24028,6 +25019,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 259.3752, "buffer_zone_hectares": null, "latitude": 44.6108333333, @@ -24052,6 +25044,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 312.973, "buffer_zone_hectares": null, "latitude": 51.726925, @@ -24076,6 +25069,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 558.7, "buffer_zone_hectares": null, "latitude": 51.3158333333, @@ -24100,6 +25094,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 606833, "buffer_zone_hectares": null, "latitude": 41.9683333333, @@ -24124,6 +25119,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2904000, "buffer_zone_hectares": null, "latitude": 51.8264166667, @@ -24147,6 +25143,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 50, "buffer_zone_hectares": null, "latitude": 55.2672222222, @@ -24170,6 +25167,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 20702.1, "buffer_zone_hectares": null, "latitude": 35.3608333333, @@ -24195,6 +25193,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5.3, "buffer_zone_hectares": null, "latitude": 35.6803666667, @@ -24218,6 +25217,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4953.85, "buffer_zone_hectares": null, "latitude": 30.1680555556, @@ -24242,6 +25242,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": true, "area_hectares": 7.03, "buffer_zone_hectares": null, "latitude": 49.5338888889, @@ -24266,6 +25267,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 13219, "buffer_zone_hectares": null, "latitude": 47.0580555556, @@ -24290,6 +25292,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 9, "buffer_zone_hectares": null, "latitude": 44.3875, @@ -24313,6 +25316,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19237, "buffer_zone_hectares": null, "latitude": 37.7561111111, @@ -24339,6 +25343,7 @@ ], "year_inscribed": 2013, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3077700, "buffer_zone_hectares": null, "latitude": -24.8852777778, @@ -24363,6 +25368,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 394067.28, "buffer_zone_hectares": null, "latitude": 11.12, @@ -24388,6 +25394,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2023590, "buffer_zone_hectares": null, "latitude": -19.2833333333, @@ -24411,6 +25418,7 @@ ], "year_inscribed": 2012, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2.98, "buffer_zone_hectares": null, "latitude": 31.7043527778, @@ -24434,6 +25442,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 24223, "buffer_zone_hectares": null, "latitude": 45.7793888889, @@ -24457,6 +25466,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 163, "buffer_zone_hectares": null, "latitude": 32.6369444444, @@ -24480,6 +25490,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 15.6, "buffer_zone_hectares": null, "latitude": 36.1911111111, @@ -24505,6 +25516,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 6226, "buffer_zone_hectares": null, "latitude": 20.2566666667, @@ -24529,6 +25541,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 409.06, "buffer_zone_hectares": null, "latitude": 37.4788888889, @@ -24552,6 +25565,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 443739.2, "buffer_zone_hectares": null, "latitude": 48.7619777778, @@ -24576,6 +25590,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 6.94, "buffer_zone_hectares": null, "latitude": 51.9244444444, @@ -24601,6 +25616,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": true, "area_hectares": 42668.16, "buffer_zone_hectares": null, "latitude": 34.3044444444, @@ -24626,6 +25642,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 20819.11, "buffer_zone_hectares": null, "latitude": 34.6938888889, @@ -24651,6 +25668,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5809, "buffer_zone_hectares": null, "latitude": 22.47, @@ -24674,6 +25692,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 294.155, "buffer_zone_hectares": null, "latitude": 31.8372222222, @@ -24699,6 +25718,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 12, "buffer_zone_hectares": null, "latitude": 51.7782777778, @@ -24723,6 +25743,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": true, "area_hectares": 912624, "buffer_zone_hectares": null, "latitude": 49.9302222222, @@ -24747,6 +25768,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7.2, "buffer_zone_hectares": null, "latitude": 36.2552777778, @@ -24772,6 +25794,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 21, "buffer_zone_hectares": null, "latitude": -0.8913380556, @@ -24797,6 +25820,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 27.467, "buffer_zone_hectares": null, "latitude": 40.1847305556, @@ -24820,6 +25844,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 24.73, "buffer_zone_hectares": null, "latitude": 8.938453, @@ -24846,6 +25871,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 350, "buffer_zone_hectares": null, "latitude": 32.1894444444, @@ -24871,6 +25897,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 275, "buffer_zone_hectares": null, "latitude": 30.5938888889, @@ -24897,6 +25924,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": false, "area_hectares": 332.5, "buffer_zone_hectares": null, "latitude": 39.1258333333, @@ -24922,6 +25950,7 @@ ], "year_inscribed": 2014, "is_endangered": false, + "is_transboundary": true, "area_hectares": 3642.8067, "buffer_zone_hectares": null, "latitude": -18.25, @@ -24945,6 +25974,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 408940, "buffer_zone_hectares": null, "latitude": 12.8656666667, @@ -24970,6 +26000,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 6540, "buffer_zone_hectares": null, "latitude": 19.8352777778, @@ -24994,6 +26025,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 273.8, "buffer_zone_hectares": null, "latitude": -33.1177777778, @@ -25018,6 +26050,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1101.72, "buffer_zone_hectares": null, "latitude": 49.0775, @@ -25041,6 +26074,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 300.8, "buffer_zone_hectares": null, "latitude": 29.3280555556, @@ -25064,6 +26098,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 26.08, "buffer_zone_hectares": null, "latitude": 53.5455555556, @@ -25088,6 +26123,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": true, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 55.3555555556, @@ -25112,6 +26148,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4543, "buffer_zone_hectares": null, "latitude": 55.9136111111, @@ -25136,6 +26173,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.82, "buffer_zone_hectares": null, "latitude": 51.1548055556, @@ -25160,6 +26198,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 12.2, "buffer_zone_hectares": null, "latitude": 32.7022222222, @@ -25184,6 +26223,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2043.8, "buffer_zone_hectares": null, "latitude": 28.0105555556, @@ -25208,6 +26248,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 26.58, "buffer_zone_hectares": null, "latitude": 45.0382777778, @@ -25232,6 +26273,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 781.28, "buffer_zone_hectares": null, "latitude": 28.9986111111, @@ -25257,6 +26299,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2441200, "buffer_zone_hectares": null, "latitude": 17.0416666667, @@ -25281,6 +26324,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 135.1, "buffer_zone_hectares": null, "latitude": 36.4619444444, @@ -25306,6 +26350,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": true, "area_hectares": 6833.776, "buffer_zone_hectares": null, "latitude": 50.4065277778, @@ -25330,6 +26375,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 66.34, "buffer_zone_hectares": null, "latitude": 18.9298055556, @@ -25356,6 +26402,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 211544, "buffer_zone_hectares": null, "latitude": 31.5622222222, @@ -25380,6 +26427,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 49, "buffer_zone_hectares": null, "latitude": 1.3152777778, @@ -25404,6 +26452,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 306.66, "buffer_zone_hectares": null, "latitude": 34.4305555556, @@ -25428,6 +26477,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5, "buffer_zone_hectares": null, "latitude": 56.0011111111, @@ -25452,6 +26502,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4959.5, "buffer_zone_hectares": null, "latitude": 59.8786111111, @@ -25476,6 +26527,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 6.235, "buffer_zone_hectares": null, "latitude": 38.1108333333, @@ -25499,6 +26551,7 @@ ], "year_inscribed": 2015, "is_endangered": false, + "is_transboundary": false, "area_hectares": 521.23, "buffer_zone_hectares": null, "latitude": 37.9031, @@ -25522,6 +26575,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": true, "area_hectares": 528177.6, "buffer_zone_hectares": null, "latitude": 43.7183333333, @@ -25546,6 +26600,7 @@ ], "year_inscribed": 2014, "is_endangered": true, + "is_transboundary": false, "area_hectares": 348.83, "buffer_zone_hectares": null, "latitude": 31.7163888889, @@ -25571,6 +26626,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 154, "buffer_zone_hectares": null, "latitude": -19.8519444444, @@ -25594,6 +26650,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5566.55, "buffer_zone_hectares": null, "latitude": 32.8022222222, @@ -25617,6 +26674,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 25.723, "buffer_zone_hectares": null, "latitude": 39.9055708333, @@ -25640,6 +26698,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 146, "buffer_zone_hectares": null, "latitude": 46.635, @@ -25663,6 +26722,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 102.49, "buffer_zone_hectares": null, "latitude": 36.7272972222, @@ -25687,6 +26747,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 255, "buffer_zone_hectares": null, "latitude": 17.0069444444, @@ -25710,6 +26771,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 28, "buffer_zone_hectares": null, "latitude": 36.1226694444, @@ -25735,6 +26797,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2446.3, "buffer_zone_hectares": null, "latitude": 37.025, @@ -25758,6 +26821,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 23, "buffer_zone_hectares": null, "latitude": 25.1366666667, @@ -25783,6 +26847,7 @@ ], "year_inscribed": 2016, "is_endangered": true, + "is_transboundary": false, "area_hectares": 76.7, "buffer_zone_hectares": null, "latitude": 6.8397222222, @@ -25806,6 +26871,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": true, "area_hectares": 49.15, "buffer_zone_hectares": null, "latitude": 43.0922138889, @@ -25830,6 +26896,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2278015, "buffer_zone_hectares": null, "latitude": 30.2161111111, @@ -25854,6 +26921,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19057, "buffer_zone_hectares": null, "latitude": 34.29, @@ -25878,6 +26946,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 585.955, "buffer_zone_hectares": null, "latitude": 17.7310583333, @@ -25901,6 +26970,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 6621.6, "buffer_zone_hectares": null, "latitude": 22.2555555556, @@ -25925,6 +26995,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 79624, "buffer_zone_hectares": null, "latitude": 31.4697222222, @@ -25950,6 +27021,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 636685.375, "buffer_zone_hectares": null, "latitude": 18.7880555556, @@ -25974,6 +27046,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 89.29, "buffer_zone_hectares": null, "latitude": -6.2688888889, @@ -25999,6 +27072,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 178400, "buffer_zone_hectares": null, "latitude": 27.7647222222, @@ -26023,6 +27097,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 87.545, "buffer_zone_hectares": null, "latitude": 41.0147222222, @@ -26048,6 +27123,7 @@ ], "year_inscribed": 2016, "is_endangered": false, + "is_transboundary": false, "area_hectares": 250.7, "buffer_zone_hectares": null, "latitude": 40.5, @@ -26073,6 +27149,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 152.25, "buffer_zone_hectares": null, "latitude": 37.7083333333, @@ -26096,6 +27173,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19.32, "buffer_zone_hectares": null, "latitude": 57.8071944444, @@ -26120,6 +27198,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3.25, "buffer_zone_hectares": null, "latitude": 55.7702777778, @@ -26144,6 +27223,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 188379, "buffer_zone_hectares": null, "latitude": -42.8528, @@ -26167,6 +27247,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 462.1, "buffer_zone_hectares": null, "latitude": 48.3877777778, @@ -26191,6 +27272,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3527, "buffer_zone_hectares": null, "latitude": 39.9975, @@ -26215,6 +27297,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2124, "buffer_zone_hectares": null, "latitude": -16.8414, @@ -26239,6 +27322,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 840.03, "buffer_zone_hectares": null, "latitude": 12.8725, @@ -26263,6 +27347,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": true, "area_hectares": 378.37, "buffer_zone_hectares": null, "latitude": 45.7033333333, @@ -26287,6 +27372,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 145255.2, "buffer_zone_hectares": null, "latitude": 17.9899611111, @@ -26311,6 +27397,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 98.93, "buffer_zone_hectares": null, "latitude": 34.245, @@ -26334,6 +27421,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 34.892, "buffer_zone_hectares": null, "latitude": 61.1644444444, @@ -26358,6 +27446,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 75.82, "buffer_zone_hectares": null, "latitude": 22.6952222222, @@ -26381,6 +27470,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 52.37, "buffer_zone_hectares": null, "latitude": 45.4575, @@ -26406,6 +27496,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1672.76, "buffer_zone_hectares": null, "latitude": 50.4426972222, @@ -26430,6 +27521,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3735632, "buffer_zone_hectares": null, "latitude": 35.3802777778, @@ -26454,6 +27546,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 316.2, "buffer_zone_hectares": null, "latitude": 24.4475, @@ -26478,6 +27571,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 168.45, "buffer_zone_hectares": null, "latitude": 26.1497222222, @@ -26502,6 +27596,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 195.67, "buffer_zone_hectares": null, "latitude": 31.9013888889, @@ -26525,6 +27620,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 959100, "buffer_zone_hectares": null, "latitude": -25.6876111111, @@ -26548,6 +27644,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.3895, "buffer_zone_hectares": null, "latitude": -22.8971111111, @@ -26572,6 +27669,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 120.5, "buffer_zone_hectares": null, "latitude": 41.2033333333, @@ -26596,6 +27694,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 481, "buffer_zone_hectares": null, "latitude": 15.3352777778, @@ -26620,6 +27719,7 @@ ], "year_inscribed": 2017, "is_endangered": false, + "is_transboundary": false, "area_hectares": 535.7, "buffer_zone_hectares": null, "latitude": 23.0263888889, @@ -26645,6 +27745,7 @@ ], "year_inscribed": 2021, "is_endangered": true, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 46.3061111111, @@ -26669,6 +27770,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 227.55, "buffer_zone_hectares": null, "latitude": 54.4619444444, @@ -26693,6 +27795,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": true, "area_hectares": 2012, "buffer_zone_hectares": null, "latitude": 53.0422222222, @@ -26716,6 +27819,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 417800, "buffer_zone_hectares": null, "latitude": 67.0639305556, @@ -26741,6 +27845,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 592.13, "buffer_zone_hectares": null, "latitude": 50.3202777778, @@ -26764,6 +27869,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 40275, "buffer_zone_hectares": null, "latitude": 27.8955555556, @@ -26788,6 +27894,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 111, "buffer_zone_hectares": null, "latitude": 37.8858888889, @@ -26811,6 +27918,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 536.08, "buffer_zone_hectares": null, "latitude": 24.7102777778, @@ -26834,6 +27942,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 55.43, "buffer_zone_hectares": null, "latitude": 36.5419444444, @@ -26859,6 +27968,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 8544, "buffer_zone_hectares": null, "latitude": 25.4021666667, @@ -26882,6 +27992,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 334.54, "buffer_zone_hectares": null, "latitude": 64.0503472222, @@ -26906,6 +28017,7 @@ ], "year_inscribed": 2017, "is_endangered": true, + "is_transboundary": false, "area_hectares": 20.6, "buffer_zone_hectares": null, "latitude": 31.5244444444, @@ -26930,6 +28042,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": true, "area_hectares": 879.91, "buffer_zone_hectares": null, "latitude": null, @@ -26955,6 +28068,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 639.3, "buffer_zone_hectares": null, "latitude": 29.7774805556, @@ -26978,6 +28092,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.0474, "buffer_zone_hectares": null, "latitude": 43.8382222222, @@ -27002,6 +28117,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7.84, "buffer_zone_hectares": null, "latitude": 18.2591333333, @@ -27025,6 +28141,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 20334.2, "buffer_zone_hectares": null, "latitude": 45.9530277778, @@ -27050,6 +28167,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 126, "buffer_zone_hectares": null, "latitude": 37.2232419444, @@ -27073,6 +28191,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1213.17, "buffer_zone_hectares": null, "latitude": 38.9371666667, @@ -27096,6 +28215,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 42698, "buffer_zone_hectares": null, "latitude": 28.2791666667, @@ -27119,6 +28239,7 @@ ], "year_inscribed": 2018, "is_endangered": false, + "is_transboundary": false, "area_hectares": 113137, "buffer_zone_hectares": null, "latitude": -25.9738888889, @@ -27143,6 +28264,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 9935, "buffer_zone_hectares": null, "latitude": -38.0811111111, @@ -27167,6 +28289,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 9425, "buffer_zone_hectares": null, "latitude": 28.0443888889, @@ -27191,6 +28314,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 112.83, "buffer_zone_hectares": null, "latitude": 48.3654722222, @@ -27215,6 +28339,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 689.88, "buffer_zone_hectares": null, "latitude": 9.3231722222, @@ -27238,6 +28363,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": true, "area_hectares": 145004.74, "buffer_zone_hectares": null, "latitude": 37.4214722222, @@ -27262,6 +28388,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5784, "buffer_zone_hectares": null, "latitude": 35.6583055556, @@ -27285,6 +28412,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 24.65, "buffer_zone_hectares": null, "latitude": -2.4555277778, @@ -27308,6 +28436,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 174.56, "buffer_zone_hectares": null, "latitude": 19.4310555556, @@ -27332,6 +28461,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5005.49, "buffer_zone_hectares": null, "latitude": 21.1488888889, @@ -27356,6 +28486,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1310, "buffer_zone_hectares": null, "latitude": 50.05665, @@ -27379,6 +28510,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 26, "buffer_zone_hectares": null, "latitude": 41.5549444444, @@ -27402,6 +28534,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 128411, "buffer_zone_hectares": null, "latitude": 34.8288222222, @@ -27426,6 +28559,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1433.66, "buffer_zone_hectares": null, "latitude": 30.3955555556, @@ -27450,6 +28584,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 166.66, "buffer_zone_hectares": null, "latitude": 34.5622222222, @@ -27475,6 +28610,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 17.38, "buffer_zone_hectares": null, "latitude": 53.2339166667, @@ -27498,6 +28634,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 27, "buffer_zone_hectares": null, "latitude": 17.9386138889, @@ -27521,6 +28658,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1106, "buffer_zone_hectares": null, "latitude": 49.075, @@ -27545,6 +28683,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 349.2, "buffer_zone_hectares": null, "latitude": 50.9679722222, @@ -27569,6 +28708,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 122.3, "buffer_zone_hectares": null, "latitude": 12.5877583333, @@ -27594,6 +28734,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 166267100, "buffer_zone_hectares": null, "latitude": -49.3803611111, @@ -27617,6 +28758,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1482000, "buffer_zone_hectares": null, "latitude": 64.577363, @@ -27641,6 +28783,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 710, "buffer_zone_hectares": null, "latitude": 26.9242777778, @@ -27664,6 +28807,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 289710.94, "buffer_zone_hectares": null, "latitude": 31.5129166667, @@ -27689,6 +28833,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": true, "area_hectares": 821.7474, "buffer_zone_hectares": null, "latitude": 48.1151944444, @@ -27713,6 +28858,7 @@ ], "year_inscribed": 2019, "is_endangered": false, + "is_transboundary": false, "area_hectares": 268.18, "buffer_zone_hectares": null, "latitude": -0.7666255556, @@ -27737,6 +28883,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 156562, "buffer_zone_hectares": null, "latitude": -2.5366666667, @@ -27760,6 +28907,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.56, "buffer_zone_hectares": null, "latitude": -34.7439194444, @@ -27784,6 +28932,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": true, "area_hectares": 7018, "buffer_zone_hectares": null, "latitude": 50.4922222222, @@ -27808,6 +28957,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5.37, "buffer_zone_hectares": null, "latitude": 49.8763888889, @@ -27832,6 +28982,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 31253, "buffer_zone_hectares": null, "latitude": 41.7022777778, @@ -27856,6 +29007,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 237, "buffer_zone_hectares": null, "latitude": 40.4153333333, @@ -27879,6 +29031,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 242.17, "buffer_zone_hectares": null, "latitude": 18.3167111111, @@ -27903,6 +29056,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 40.53, "buffer_zone_hectares": null, "latitude": -23.0223777778, @@ -27927,6 +29081,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 9768.87, "buffer_zone_hectares": null, "latitude": 47.7427777778, @@ -27950,6 +29105,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4.85, "buffer_zone_hectares": null, "latitude": 38.3822, @@ -27973,6 +29129,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19.96, "buffer_zone_hectares": null, "latitude": 45.4118888889, @@ -27997,6 +29154,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4480, "buffer_zone_hectares": null, "latitude": -9.5568611111, @@ -28021,6 +29179,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 23582, "buffer_zone_hectares": null, "latitude": 45.5863055556, @@ -28045,6 +29204,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 152.409, "buffer_zone_hectares": null, "latitude": 37.7443936111, @@ -28070,6 +29230,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": true, "area_hectares": 812.75, "buffer_zone_hectares": null, "latitude": 52.1803333333, @@ -28094,6 +29255,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 141.9, "buffer_zone_hectares": null, "latitude": 41.0655555556, @@ -28118,6 +29280,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3259.01, "buffer_zone_hectares": null, "latitude": 53.1208333333, @@ -28142,6 +29305,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": -18.4819611111, @@ -28165,6 +29329,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 522, "buffer_zone_hectares": null, "latitude": 43.7016944444, @@ -28189,6 +29354,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5.56, "buffer_zone_hectares": null, "latitude": 49.3162111111, @@ -28213,6 +29379,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 726291.41, "buffer_zone_hectares": null, "latitude": 39.8897222222, @@ -28236,6 +29403,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5460.477, "buffer_zone_hectares": null, "latitude": 33.7924194444, @@ -28260,6 +29428,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 29620, "buffer_zone_hectares": null, "latitude": 6.2488888889, @@ -28284,6 +29453,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19827.86, "buffer_zone_hectares": null, "latitude": 38.6602777778, @@ -28307,6 +29477,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19.138, "buffer_zone_hectares": null, "latitude": 46.0433333333, @@ -28331,6 +29502,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 103, "buffer_zone_hectares": null, "latitude": 23.8884083333, @@ -28355,6 +29527,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 106307, "buffer_zone_hectares": null, "latitude": 35.1073583333, @@ -28379,6 +29552,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.1298, "buffer_zone_hectares": null, "latitude": 10.4903166667, @@ -28402,6 +29576,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 52.18, "buffer_zone_hectares": null, "latitude": 44.4913888889, @@ -28426,6 +29601,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": 298758, "buffer_zone_hectares": null, "latitude": 0.113, @@ -28449,6 +29625,7 @@ ], "year_inscribed": 2021, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 61.7299, @@ -28472,6 +29649,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 50.9786638889, @@ -28496,6 +29674,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 13980, "buffer_zone_hectares": null, "latitude": 14.8233027778, @@ -28519,6 +29698,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 84.33, "buffer_zone_hectares": null, "latitude": 56.96775, @@ -28543,6 +29723,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 51, "buffer_zone_hectares": null, "latitude": 56.9952777778, @@ -28566,6 +29747,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 455.3, "buffer_zone_hectares": null, "latitude": 54.8969444444, @@ -28590,6 +29772,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 866.471, "buffer_zone_hectares": null, "latitude": 15.4658166667, @@ -28614,6 +29797,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 15.38, "buffer_zone_hectares": null, "latitude": 14.6386111111, @@ -28638,6 +29822,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 7167.89, "buffer_zone_hectares": null, "latitude": 22.1841666667, @@ -28661,6 +29846,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 189, "buffer_zone_hectares": null, "latitude": 35.2372638889, @@ -28685,6 +29871,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1187.61, "buffer_zone_hectares": null, "latitude": 13.7830555556, @@ -28709,6 +29896,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 30.34, "buffer_zone_hectares": null, "latitude": 35.0583527778, @@ -28732,6 +29920,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1064, "buffer_zone_hectares": null, "latitude": 39.6433333333, @@ -28757,6 +29946,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 10.47, "buffer_zone_hectares": null, "latitude": 13.2124527778, @@ -28781,6 +29971,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 42.22, "buffer_zone_hectares": null, "latitude": -7.8013888889, @@ -28804,6 +29995,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 413.97, "buffer_zone_hectares": null, "latitude": 42.845, @@ -28829,6 +30021,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": true, "area_hectares": 669.679, "buffer_zone_hectares": null, "latitude": 39.4414888889, @@ -28852,6 +30045,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 42.04, "buffer_zone_hectares": null, "latitude": -25.7406916667, @@ -28876,6 +30070,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19.02, "buffer_zone_hectares": null, "latitude": 55.7909083333, @@ -28899,6 +30094,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 24.8, "buffer_zone_hectares": null, "latitude": 5.4311111111, @@ -28922,6 +30118,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.907, "buffer_zone_hectares": null, "latitude": -34.5366416667, @@ -28945,6 +30142,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.009, "buffer_zone_hectares": null, "latitude": 53.187375, @@ -28968,6 +30166,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 49786, "buffer_zone_hectares": null, "latitude": 37.2047222222, @@ -28991,6 +30190,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 18240, "buffer_zone_hectares": null, "latitude": 49.5386111111, @@ -29015,6 +30215,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 5.93, "buffer_zone_hectares": null, "latitude": 31.8713055556, @@ -29038,6 +30239,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 71030.91, "buffer_zone_hectares": null, "latitude": 61.928, @@ -29062,6 +30264,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 320.7, "buffer_zone_hectares": null, "latitude": 40.0536583333, @@ -29085,6 +30288,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3680, "buffer_zone_hectares": null, "latitude": 44.3799444444, @@ -29109,6 +30313,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": true, "area_hectares": 3366441, "buffer_zone_hectares": null, "latitude": 44.0258333333, @@ -29133,6 +30338,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 0.61, "buffer_zone_hectares": null, "latitude": 38.7550361111, @@ -29156,6 +30362,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": null, "buffer_zone_hectares": null, "latitude": 39.9052777778, @@ -29180,6 +30387,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 44829.41, "buffer_zone_hectares": null, "latitude": 40.7059, @@ -29203,6 +30411,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 101963.67, "buffer_zone_hectares": null, "latitude": -2.5553, @@ -29226,6 +30435,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 750.9, "buffer_zone_hectares": null, "latitude": 38.0408333333, @@ -29250,6 +30460,7 @@ ], "year_inscribed": 2023, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1276500, "buffer_zone_hectares": null, "latitude": 19.3638888889, @@ -29274,6 +30485,7 @@ ], "year_inscribed": 2023, "is_endangered": true, + "is_transboundary": false, "area_hectares": 375.29, "buffer_zone_hectares": null, "latitude": 15.4268777778, @@ -29298,6 +30510,7 @@ ], "year_inscribed": 2023, "is_endangered": true, + "is_transboundary": false, "area_hectares": 72, "buffer_zone_hectares": null, "latitude": 34.4377777778, @@ -29322,6 +30535,7 @@ ], "year_inscribed": 2023, "is_endangered": true, + "is_transboundary": false, "area_hectares": 618.54, "buffer_zone_hectares": null, "latitude": 46.48645, @@ -29345,6 +30559,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 135420.64, "buffer_zone_hectares": null, "latitude": 22.5978638889, @@ -29368,6 +30583,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2275.77, "buffer_zone_hectares": null, "latitude": 53.6241666667, @@ -29394,6 +30610,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 345749, "buffer_zone_hectares": null, "latitude": -7.9698944444, @@ -29418,6 +30635,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4950.84, "buffer_zone_hectares": null, "latitude": 41.2927222222, @@ -29443,6 +30661,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 99881, "buffer_zone_hectares": null, "latitude": -20.5650277778, @@ -29467,6 +30686,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 96.5, "buffer_zone_hectares": null, "latitude": 26.9411747222, @@ -29491,6 +30711,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4847.73, "buffer_zone_hectares": null, "latitude": 19.7649166667, @@ -29514,6 +30735,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1.84, "buffer_zone_hectares": null, "latitude": 11.0892222222, @@ -29538,6 +30760,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 589, "buffer_zone_hectares": null, "latitude": 39.9072222222, @@ -29562,6 +30785,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 27.8, "buffer_zone_hectares": null, "latitude": 34.8023888889, @@ -29587,6 +30811,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1491.6, "buffer_zone_hectares": null, "latitude": 47.1807888889, @@ -29612,6 +30837,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 20.81, "buffer_zone_hectares": null, "latitude": -3.3102638889, @@ -29635,6 +30861,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 42.584, "buffer_zone_hectares": null, "latitude": 32.3269444444, @@ -29658,6 +30885,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 187026, "buffer_zone_hectares": null, "latitude": 58.3991666667, @@ -29683,6 +30911,7 @@ ], "year_inscribed": 2024, "is_endangered": false, + "is_transboundary": false, "area_hectares": 57.4, "buffer_zone_hectares": null, "latitude": -32.3863888889, @@ -29707,6 +30936,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 19598, "buffer_zone_hectares": null, "latitude": 47.6161111111, @@ -29730,6 +30960,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 75.875, "buffer_zone_hectares": null, "latitude": 47.5575, @@ -29753,6 +30984,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 4123, "buffer_zone_hectares": null, "latitude": 54.9677777778, @@ -29776,6 +31008,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 155.56, "buffer_zone_hectares": null, "latitude": 40.0851388889, @@ -29799,6 +31032,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 9244, "buffer_zone_hectares": null, "latitude": 38.4819444444, @@ -29822,6 +31056,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 525.748, "buffer_zone_hectares": null, "latitude": 21.1192555556, @@ -29847,6 +31082,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 29.512, "buffer_zone_hectares": null, "latitude": 35.2486111111, @@ -29870,6 +31106,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 589, "buffer_zone_hectares": null, "latitude": 3.22925, @@ -29894,6 +31131,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 29085, "buffer_zone_hectares": null, "latitude": 25.0828055556, @@ -29918,6 +31156,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3899, "buffer_zone_hectares": null, "latitude": 38.4158333333, @@ -29941,6 +31180,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 1577.63, "buffer_zone_hectares": null, "latitude": 20.7225, @@ -29965,6 +31205,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 43.69, "buffer_zone_hectares": null, "latitude": 35.60845, @@ -29988,6 +31229,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 288.5, "buffer_zone_hectares": null, "latitude": 53.0494444444, @@ -30011,6 +31253,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 394.46, "buffer_zone_hectares": null, "latitude": 33.4921083333, @@ -30034,6 +31277,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 2500, "buffer_zone_hectares": null, "latitude": 10.9033333333, @@ -30058,6 +31302,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 71202.7, "buffer_zone_hectares": null, "latitude": 7.5411666667, @@ -30082,6 +31327,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 38003, "buffer_zone_hectares": null, "latitude": -15.075, @@ -30105,6 +31351,7 @@ ], "year_inscribed": 2025, "is_endangered": false, + "is_transboundary": false, "area_hectares": 3.9, "buffer_zone_hectares": null, "latitude": 11.77016, @@ -30129,6 +31376,7 @@ ], "year_inscribed": 2024, "is_endangered": true, + "is_transboundary": false, "area_hectares": 1.3293, "buffer_zone_hectares": null, "latitude": 31.4473055556,