Voir le code
library(tidyverse)
library(yaml)
library(sf)
library(DT)
library(knitr)
# Répertoire des amendements
amendments_dir <- "data/amendments"Ce chapitre présente le registre complet des amendements YAML créés lors de la curation. Chaque amendement est affiché dans son format YAML brut pour permettre une inspection directe avant la consolidation.
library(tidyverse)
library(yaml)
library(sf)
library(DT)
library(knitr)
# Répertoire des amendements
amendments_dir <- "data/amendments"# Lister tous les fichiers YAML
yaml_files <- list.files(amendments_dir, pattern = "\\.yml$", full.names = TRUE)
cat("Nombre total d'amendements :", length(yaml_files), "\n\n")Nombre total d'amendements : 284
# Lire tous les amendements pour statistiques
amendments_list <- map(yaml_files, ~ yaml::read_yaml(.x))
# Nombre d'aires protegees distinctes
n_pas <- map_int(amendments_list, ~ .x$wdpaid) |>
unique() |>
length()
cat("Nombre total d'aires protegees concernees :", n_pas, "\n\n")Nombre total d'aires protegees concernees : 113
# Extraire les types
types_summary <- map_chr(amendments_list, ~ .x$amendment_type) |>
table() |>
as.data.frame() |>
setNames(c("Type d'amendement", "Nombre"))
kable(types_summary, caption = "Distribution des types d'amendements")| Type d’amendement | Nombre |
|---|---|
| boundary_modification | 19 |
| correction | 16 |
| secondary_zoning | 64 |
| status_change | 13 |
| temporary_protection | 172 |
# Extraire les kinds
kinds_summary <- map_chr(amendments_list, ~ .x$amendment_kind) |>
table() |>
as.data.frame() |>
setNames(c("Nature", "Nombre"))
kable(kinds_summary, caption = "Distribution par nature d'amendement")| Nature | Nombre |
|---|---|
| attribute | 201 |
| spatial | 83 |
# Créer un tableau résumé pour navigation
amendments_summary <- map_dfr(yaml_files, function(yaml_path) {
a <- yaml::read_yaml(yaml_path)
tibble(
Fichier = basename(yaml_path),
amendment_id = a$amendment_id,
WDPAID = a$wdpaid,
Nom_AP = a$wdpa_name %||% NA_character_,
Nature = a$amendment_kind,
Type = a$amendment_type,
Date_debut = a$valid_from %||% NA_character_,
Date_fin = a$valid_to %||% NA_character_,
Source_legale = a$legal_instrument$source %||% NA_character_
)
})
datatable(
amendments_summary,
filter = "top",
extensions = "Buttons",
options = list(
pageLength = 25,
autoWidth = TRUE,
scrollX = TRUE,
dom = "Bfrtip",
buttons = list(
list(
extend = "collection",
text = "Reinitialiser les filtres",
action = DT::JS(
"function(e, dt, node, config) {",
" dt.search('').columns().search('').draw();",
" $(dt.table().header()).find('input').val('');",
"}"
)
)
)
),
caption = "Registre complet des amendements (filtrable par colonne)"
)Affichage du contenu de chaque fichier YAML dans son format original.
# Trier les fichiers par amendment_id
yaml_files_sorted <- yaml_files[order(basename(yaml_files))]
for (yaml_path in yaml_files_sorted) {
# Lire le contenu brut
yaml_content <- readLines(yaml_path, warn = FALSE)
# Extraire l'amendment_id pour le titre
a <- yaml::read_yaml(yaml_path)
amendment_id <- a$amendment_id
wdpaid <- a$wdpaid
wdpa_name <- a$wdpa_name %||% "Sans nom"
# Afficher le titre
cat(
"\n### ",
amendment_id,
" - ",
wdpa_name,
" (WDPAID: ",
wdpaid,
")\n\n",
sep = ""
)
# Afficher le fichier
cat("**Fichier :** `", basename(yaml_path), "`\n\n", sep = "")
# Afficher le YAML brut dans un bloc de code
cat("```yaml\n")
cat(paste(yaml_content, collapse = "\n"))
cat("\n```\n\n")
# Si géométrie existe, afficher info
if (!is.null(a$geometry_ref)) {
geom_path <- file.path(amendments_dir, a$geometry_ref)
if (file.exists(geom_path)) {
geom <- st_read(geom_path, quiet = TRUE)
cat(
"**Géométrie associée :** `",
a$geometry_ref,
"` (",
nrow(geom),
" feature(s), ",
st_geometry_type(geom)[1],
")\n\n",
sep = ""
)
}
}
cat("---\n\n")
}Fichier : MDG-10634-2015-boundary_modification-001.yml
amendment_id: MDG-10634-2015-boundary_modification-001
iso3: MDG
wdpaid: 10634
wdpa_name: Beza Mahafaly
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1986-06-04'
valid_to: '2015-04-21'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-733
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-733
temporal_description: Modification des limites du 1986-06-04 au 2015-04-21 selon décret
n. 2015-733.
notes: Géométrie MNP_2010 retenue après vérification visuelle et croisement avec Sussman
et al. 2012, https://doi.org/10.1007/978-3-642-22514-7_3).
geometry_ref: geoms/MDG-10634-2015-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MNP_2010Géométrie associée : geoms/MDG-10634-2015-boundary_modification-001.geojson (1 feature(s), 7)
Fichier : MDG-10634-NODATE-secondary_zoning-001.yml
amendment_id: MDG-10634-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 10634
wdpa_name: Beza Mahafaly
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Beza Mahafaly. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-10634-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-10634-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-1299-2002-boundary_modification-001.yml
amendment_id: MDG-1299-2002-boundary_modification-001
iso3: MDG
wdpaid: 1299
wdpa_name: Ankarafantsika
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1927-12-31'
valid_to: '2002-08-07'
legal_instrument:
source: CNLEGIS
type: décret
number: 2002-798
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2002-798
temporal_description: Modification des limites du 1927-12-31 au 2002-08-07 selon décret
n. 2002-798.
notes: Périmètre de la RNI n. 7 d'Ankarafantsika (Décret 66-242, ~57 000 ha) avant
la consolidation en PN en 2002 (Décret 2002-798, 130 000 ha). Géométrie fournie
par MNP.
geometry_ref: geoms/MDG-1299-2002-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MNP_Anka_RNI_pre2002Géométrie associée : geoms/MDG-1299-2002-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-1299-2002-status_change-001.yml
amendment_id: MDG-1299-2002-status_change-001
iso3: MDG
wdpaid: 1299
wdpa_name: Ankarafantsika
amendment_kind: attribute
amendment_type: status_change
valid_from: '1927-12-31'
valid_to: '2002-08-07'
legal_instrument:
source: CNLEGIS
type: décret
number: 2002-798
date: '2002-08-07'
id: '36562'
url: https://cnlegis.gov.mg/page_num_find_direct/?2002-798
temporal_description: Changement de statut du 1927-12-31 au 2002-08-07 selon décret
n. 2002-798 du 2002-08-07.
notes: 'Created as RNI #7 on 1927-12-31 (Décret du 31 décembre 1927), boundaries clarified
1966-06-01 (Décret 66-242). Status changed to PN in 2002.'
attributes:
DESIG: Réserve Naturelle Intégrale
DESIG_ENG: Strict Nature Reserve
DESIG_TYPE: National
IUCN_CAT: IaFichier : MDG-1299-2015-boundary_modification-001.yml
amendment_id: MDG-1299-2015-boundary_modification-001
iso3: MDG
wdpaid: 1299
wdpa_name: Ankarafantsika
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '2002-08-07'
valid_to: '2015-04-21'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-730
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-730
temporal_description: Modification des limites du 2002-08-07 au 2015-04-21 selon décret
n. 2015-730.
notes: Périmètre 2002-2015 avant modification des limites (géométrie ANGAP_2002 retenue
après vérification visuelle).
geometry_ref: geoms/MDG-1299-2015-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: ANGAP_2002Géométrie associée : geoms/MDG-1299-2015-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-1299-NODATE-correction-001.yml
amendment_id: MDG-1299-NODATE-correction-001
iso3: MDG
wdpaid: 1299
wdpa_name: Ankarafantsika
amendment_kind: attribute
amendment_type: correction
valid_from: '2002-08-07'
legal_instrument:
source: CNLEGIS
type: décret
number: 2002-798
date: '2002-08-07'
id: '36562'
url: https://cnlegis.gov.mg/page_num_find_direct/?2002-798
temporal_description: Correction de donnees depuis le 2002-08-07 selon décret n. 2002-798
du 2002-08-07.
notes: WDPA STATUS_YR=2015 conflates boundary change with status change. Current status
(PN) dates from Décret 2002-798 du 7 août 2002. Idempotent once WDPA corrects.
attributes:
STATUS_YR: '2002'Fichier : MDG-1299-NODATE-secondary_zoning-001.yml
amendment_id: MDG-1299-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 1299
wdpa_name: Ankarafantsika
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Ankarafantsika.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-1299-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-1299-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-166880-2008-temporary_protection-001.yml
amendment_id: MDG-166880-2008-temporary_protection-001
iso3: MDG
wdpaid: 166880
wdpa_name: Complexe Tsimembo Manambolomaty
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-12-02'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 21478/2008
date: '2008-12-02'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-12-02 au 2015-04-21 selon arrêté
n. 21478/2008 du 2008-12-02.
notes: Temporary protection via Arrêté 21478/2008 (2008-12-02). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-715.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-166880-NODATE-secondary_zoning-001.yml
amendment_id: MDG-166880-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 166880
wdpa_name: Complexe Tsimembo Manambolomaty
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Tsimembo. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-166880-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-166880-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-20272-NODATE-correction-001.yml
amendment_id: MDG-20272-NODATE-correction-001
iso3: MDG
wdpaid: 20272
wdpa_name: Befotaka Midongy
amendment_kind: attribute
amendment_type: correction
valid_from: '1997-12-18'
legal_instrument:
source: manual
type: decret
number: 97-1451
date: '1997-12-18'
id: ~
url: ~
temporal_description: Correction de donnees depuis le 1997-12-18 selon decret n. 97-1451
du 1997-12-18.
notes: WDPA incorrectly shows STATUS_YR=1953 (date of classified forests that were
not protected areas). PN Befotaka-Midongy du Sud was created in 1997 (Decret 97-1451),
incorporating parts of the Soarano and Befotaka classified forests from 1953.
attributes:
STATUS_YR: '1997'Fichier : MDG-20287-NODATE-secondary_zoning-001.yml
amendment_id: MDG-20287-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 20287
wdpa_name: Ranomafana
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Ranomafana. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-20287-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-20287-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-2303-1997-status_change-001.yml
amendment_id: MDG-2303-1997-status_change-001
iso3: MDG
wdpaid: 2303
wdpa_name: Andohahela
amendment_kind: attribute
amendment_type: status_change
valid_from: '1939-06-11'
valid_to: '1997-08-07'
legal_instrument:
source: manual
type: décret
number: 97-1043
date: '1997-08-07'
id: ~
url: ~
temporal_description: Changement de statut du 1939-06-11 au 1997-08-07 selon décret
n. 97-1043 du 1997-08-07.
notes: 'Created as RNI #11 on 1939-06-11 (Décret du 11 juin 1939), boundaries clarified
1966-06-01 (Décret 66-242). Changed from RNI to PN via Décret 97-1043 du 7 août
1997. Three-parcel structure maintained. Decree not in CNLEGIS but archived independently.
Reference: https://archive.org/details/decret-n-97-1043-du-07-aout-1997-pn-andoahahela.'
attributes:
DESIG: Réserve Naturelle Intégrale
DESIG_ENG: Strict Nature Reserve
DESIG_TYPE: National
IUCN_CAT: IaFichier : MDG-2303-2015-boundary_modification-001.yml
amendment_id: MDG-2303-2015-boundary_modification-001
iso3: MDG
wdpaid: 2303
wdpa_name: Andohahela
amendment_kind: spatial
amendment_type: boundary_modification
valid_to: '2015-04-28'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-785
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-785
temporal_description: Modification des limites jusqu'au 2015-04-28 selon décret n.
2015-785.
notes: Périmètre antérieur au décret modifiant (géométrie SAPM_2010 retenue après
vérification visuelle).
geometry_ref: geoms/MDG-2303-2015-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: SAPM_evol_2001-2011Géométrie associée : geoms/MDG-2303-2015-boundary_modification-001.geojson (1 feature(s), 7)
Fichier : MDG-2303-NODATE-correction-001.yml
amendment_id: MDG-2303-NODATE-correction-001
iso3: MDG
wdpaid: 2303
wdpa_name: Andohahela
amendment_kind: attribute
amendment_type: correction
valid_from: '1997-08-07'
legal_instrument:
source: manual
type: décret
number: 97-1043
date: '1997-08-07'
id: ~
url: ~
temporal_description: Correction de donnees depuis le 1997-08-07 selon décret n. 97-1043
du 1997-08-07.
notes: WDPA STATUS_YR=2015 conflates boundary change with status change. Current status
(PN) dates from Décret 97-1043 du 7 août 1997. Idempotent once WDPA corrects.
attributes:
STATUS_YR: '1997'Fichier : MDG-2303-NODATE-secondary_zoning-001.yml
amendment_id: MDG-2303-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 2303
wdpa_name: Andohahela
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Andohahela. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-2303-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-2303-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-2305-1998-status_change-001.yml
amendment_id: MDG-2305-1998-status_change-001
iso3: MDG
wdpaid: 2305
wdpa_name: Marojejy
amendment_kind: attribute
amendment_type: status_change
valid_from: '1952-01-03'
valid_to: '1998-05-19'
legal_instrument:
source: CNLEGIS
type: décret
number: 98-375
date: '1998-05-19'
id: '34797'
url: https://cnlegis.gov.mg/page_num_find_direct/?98-375
temporal_description: Changement de statut du 1952-01-03 au 1998-05-19 selon décret
n. 98-375 du 1998-05-19.
notes: 'Created as RNI #12 on 1952-01-03 (Décret du 3 janvier 1952), boundaries clarified
1966-06-01 (Décret 66-242). Changed from RNI to PN via Décret 98-375 du 19 mai 1998.
No boundary change.'
attributes:
DESIG: Réserve Naturelle Intégrale
DESIG_ENG: Strict Nature Reserve
DESIG_TYPE: National
IUCN_CAT: IaFichier : MDG-2305-NODATE-secondary_zoning-001.yml
amendment_id: MDG-2305-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 2305
wdpa_name: Marojejy
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Marojejy. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-2305-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-2305-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-2306-NODATE-correction-001.yml
amendment_id: MDG-2306-NODATE-correction-001
iso3: MDG
wdpaid: 2306
wdpa_name: Tsaratanana
amendment_kind: attribute
amendment_type: correction
valid_from: '1927-12-31'
legal_instrument:
source: manual
type: décret
number: 2015-782
date: '2015-04-28'
id: ~
url: ~
temporal_description: Correction de donnees depuis le 1927-12-31 selon décret n. 2015-782
du 2015-04-28.
notes: WDPA 2025 incorrectly classifies Tsaratanàna as PN/II. Decree 2015-782 confirms
it remains RNI/Ia (Strict Nature Reserve). The RNI has never changed status since
creation in 1927. The 2015 decree created the CAPAM complex and added 59,279 ha
extensions (also Ia), bringing total to 108,610 ha.
attributes:
DESIG: Réserve Naturelle Intégrale
DESIG_ENG: Strict Nature Reserve
IUCN_CAT: IaFichier : MDG-2306-NODATE-correction-002.yml
amendment_id: MDG-2306-NODATE-correction-002
iso3: MDG
wdpaid: 2306
wdpa_name: Tsaratanana
amendment_kind: attribute
amendment_type: correction
valid_from: '2015-04-28'
legal_instrument:
source: manual
type: décret
number: 2015-782
date: '2015-04-28'
id: ~
url: ~
temporal_description: Correction de donnees depuis le 2015-04-28 selon décret n. 2015-782
du 2015-04-28.
notes: WDPA 2025 shows STATUS_YR=1997 with no supporting decree. Setting to 2015 (date
of extensions via Decree 2015-782). Original RNI creation was 1927-12-31.
attributes:
STATUS_YR: '2015'Fichier : MDG-2306-NODATE-secondary_zoning-001.yml
amendment_id: MDG-2306-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 2306
wdpa_name: Tsaratanana
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Tsaratanana. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-2306-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-2306-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-2307-2002-status_change-001.yml
amendment_id: MDG-2307-2002-status_change-001
iso3: MDG
wdpaid: 2307
wdpa_name: Tsimanampesotse
amendment_kind: attribute
amendment_type: status_change
valid_from: '1927-12-31'
valid_to: '2002-08-07'
legal_instrument:
source: CNLEGIS
type: décret
number: 2002-797
date: '2002-08-07'
id: '36563'
url: https://cnlegis.gov.mg/page_num_find_direct/?2002-797
temporal_description: Changement de statut du 1927-12-31 au 2002-08-07 selon décret
n. 2002-797 du 2002-08-07.
notes: 'Created as RNI #10 on 1927-12-31 (Décret du 31 décembre 1927). Status changed
from RNI to PN via Décret 2002-797 du 7 août 2002. Boundary later expanded in 2015
to include Hatokaliotsy extension.'
attributes:
DESIG: Réserve Naturelle Intégrale
DESIG_ENG: Strict Nature Reserve
IUCN_CAT: IaFichier : MDG-2307-2015-boundary_modification-001.yml
amendment_id: MDG-2307-2015-boundary_modification-001
iso3: MDG
wdpaid: 2307
wdpa_name: Tsimanampesotse
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1927-12-31'
valid_to: '2015-04-21'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-736
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-736
temporal_description: Modification des limites du 1927-12-31 au 2015-04-21 selon décret
n. 2015-736.
notes: Pre-2015 geometry from MNP_2010. In 2015, boundary expanded to include Hatokaliotsy
extension (Décret 2015-736), increasing from ~180 km² to 202.5 km².
geometry_ref: geoms/MDG-2307-2015-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MNP_2010Géométrie associée : geoms/MDG-2307-2015-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-2307-NODATE-correction-001.yml
amendment_id: MDG-2307-NODATE-correction-001
iso3: MDG
wdpaid: 2307
wdpa_name: Tsimanampesotse
amendment_kind: attribute
amendment_type: correction
valid_from: '2002-08-07'
legal_instrument:
source: CNLEGIS
type: décret
number: 2002-797
date: '2002-08-07'
id: '36563'
url: https://cnlegis.gov.mg/page_num_find_direct/?2002-797
temporal_description: Correction de donnees depuis le 2002-08-07 selon décret n. 2002-797
du 2002-08-07.
notes: WDPA STATUS_YR=1927 is the RNI creation year, not the current status year.
Current status (PN) dates from Décret 2002-797 du 7 août 2002. Idempotent once WDPA
corrects.
attributes:
STATUS_YR: '2002'Fichier : MDG-2307-NODATE-secondary_zoning-001.yml
amendment_id: MDG-2307-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 2307
wdpa_name: Tsimanampesotse
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Tsimanampesotse.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-2307-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-2307-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-2308-1998-status_change-001.yml
amendment_id: MDG-2308-1998-status_change-001
iso3: MDG
wdpaid: 2308
wdpa_name: Andringitra
amendment_kind: attribute
amendment_type: status_change
valid_from: '1927-12-31'
valid_to: '1998-08-19'
legal_instrument:
source: CNLEGIS
type: décret
number: 98-376
date: '1998-05-19'
id: '34798'
url: https://cnlegis.gov.mg/page_num_find_direct/?98-376
temporal_description: Changement de statut du 1927-12-31 au 1998-08-19 selon décret
n. 98-376 du 1998-05-19.
notes: 'Created as RNI #5 on 1927-12-31 (Décret du 31 décembre 1927), boundaries fixed
1966-06-01 (Décret 66-242). Changed from RNI to PN via Décret 98-376 du 19 août
1998. Boundaries remained unchanged from 1966 delimitation. '
attributes:
DESIG: Réserve Naturelle Intégrale
DESIG_ENG: Strict Nature Reserve
DESIG_TYPE: National
IUCN_CAT: IaFichier : MDG-2308-NODATE-secondary_zoning-001.yml
amendment_id: MDG-2308-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 2308
wdpa_name: Andringitra
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Andringitra. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-2308-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-2308-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-2309-2002-status_change-001.yml
amendment_id: MDG-2309-2002-status_change-001
iso3: MDG
wdpaid: 2309
wdpa_name: Namoroka
amendment_kind: attribute
amendment_type: status_change
valid_from: '1927-12-31'
valid_to: '2002-08-07'
legal_instrument:
source: CNLEGIS
type: décret
number: 2002-796
date: '2002-08-07'
id: '36564'
url: https://cnlegis.gov.mg/page_num_find_direct/?2002-796
temporal_description: Changement de statut du 1927-12-31 au 2002-08-07 selon décret
n. 2002-796 du 2002-08-07.
notes: 'Created as RNI #8 on 1927-12-31 (Décret du 31 décembre 1927). Status changed
from RNI to PN via Décret 2002-796 du 7 août 2002. No boundary change.'
attributes:
DESIG: Réserve Naturelle Intégrale
DESIG_ENG: Strict Nature Reserve
IUCN_CAT: IaFichier : MDG-2309-NODATE-correction-001.yml
amendment_id: MDG-2309-NODATE-correction-001
iso3: MDG
wdpaid: 2309
wdpa_name: Namoroka
amendment_kind: attribute
amendment_type: correction
valid_from: '2002-08-07'
legal_instrument:
source: CNLEGIS
type: décret
number: 2002-796
date: '2002-08-07'
id: '36564'
url: https://cnlegis.gov.mg/page_num_find_direct/?2002-796
temporal_description: Correction de donnees depuis le 2002-08-07 selon décret n. 2002-796
du 2002-08-07.
notes: WDPA STATUS_YR=2004 is unexplained. Current status (PN) dates from Décret 2002-796
du 7 août 2002. Idempotent once WDPA corrects.
attributes:
STATUS_YR: '2002'Fichier : MDG-2310-NODATE-correction-001.yml
amendment_id: MDG-2310-NODATE-correction-001
iso3: MDG
wdpaid: 2310
wdpa_name: Betampona
amendment_kind: attribute
amendment_type: correction
valid_from: '1927-12-31'
legal_instrument:
source: manual
type: décret
number: '1927-12-31'
date: '1927-12-31'
id: ~
url: ~
temporal_description: Correction de donnees depuis le 1927-12-31 selon décret n. 1927-12-31
du 1927-12-31.
notes: 'WDPA incorrectly shows STATUS_YR=1997. RNI Betampona was created in 1927 as
RNI #1 (Décret du 31 décembre 1927, complemented by Décret 66-242 of 1966). No status
change occurred in 1997.'
attributes:
STATUS_YR: '1927'Fichier : MDG-2310-NODATE-secondary_zoning-001.yml
amendment_id: MDG-2310-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 2310
wdpa_name: Betampona
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Betampona. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-2310-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-2310-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-2311-2011-boundary_modification-001.yml
amendment_id: MDG-2311-2011-boundary_modification-001
iso3: MDG
wdpaid: 2311
wdpa_name: Lokobe
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1927-12-31'
valid_to: '2011-09-06'
legal_instrument:
source: CNLEGIS
type: décret
number: 2011-500
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2011-500
temporal_description: Modification des limites du 1927-12-31 au 2011-09-06 selon décret
n. 2011-500.
notes: Pre-2011 terrestrial RNI boundary before marine extension. SAPM_2010 'Lokobe'
feature only (excluding 'Lokobe extension').
geometry_ref: geoms/MDG-2311-2011-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: SAPM_2010Géométrie associée : geoms/MDG-2311-2011-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-2311-2011-status_change-001.yml
amendment_id: MDG-2311-2011-status_change-001
iso3: MDG
wdpaid: 2311
wdpa_name: Lokobe
amendment_kind: attribute
amendment_type: status_change
valid_from: '1927-12-31'
valid_to: '2011-09-06'
legal_instrument:
source: CNLEGIS
type: décret
number: 2011-500
date: '2011-09-06'
id: '41313'
url: https://cnlegis.gov.mg/page_num_find_direct/?2011-500
temporal_description: Changement de statut du 1927-12-31 au 2011-09-06 selon décret
n. 2011-500 du 2011-09-06.
notes: Original RNI status from 1927 to 2011. Décret 1927-12-31 complemented by Décret
66-242 (1966-06-01).
attributes:
DESIG: Réserve Naturelle Intégrale
DESIG_ENG: Strict Nature Reserve
IUCN_CAT: IaFichier : MDG-2311-NODATE-secondary_zoning-001.yml
amendment_id: MDG-2311-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 2311
wdpa_name: Lokobe
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Lokobe. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-2311-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-2311-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-2312-NODATE-secondary_zoning-001.yml
amendment_id: MDG-2312-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 2312
wdpa_name: Isalo
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Isalo. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-2312-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-2312-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-2314-2015-boundary_modification-001.yml
amendment_id: MDG-2314-2015-boundary_modification-001
iso3: MDG
wdpaid: 2314
wdpa_name: Montagne d'Ambre
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1958-10-28'
valid_to: '2015-04-28'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-776
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-776
temporal_description: Modification des limites du 1958-10-28 au 2015-04-28 selon décret
n. 2015-776.
notes: Pre-merger geometry of PN Montagne d'Ambre (polygon 1 from MNP_2010, 232.47
km²). In 2015, absorbed RS Forêt d'Ambre (WDPAID 5025, 45.60 km²) to create enlarged
PN (278.08 km²).
geometry_ref: geoms/MDG-2314-2015-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MNP_2010_splitGéométrie associée : geoms/MDG-2314-2015-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-2314-2015-status_change-001.yml
amendment_id: MDG-2314-2015-status_change-001
iso3: MDG
wdpaid: 2314
wdpa_name: Montagne d'Ambre
amendment_kind: attribute
amendment_type: status_change
valid_from: '1958-10-28'
valid_to: '2015-04-28'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-776
date: '2015-04-28'
id: '46593'
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-776
temporal_description: Changement de statut du 1958-10-28 au 2015-04-28 selon décret
n. 2015-776 du 2015-04-28.
notes: Created as PN on 1958-10-28 via Décret 58-07. Enlarged via Décret 2015-776
through merger with RS Forêt d'Ambre (WDPAID 5025) and inclusion of Station Forestière
des Roussettes.
attributes:
DESIG: Parc National
DESIG_ENG: National Park
IUCN_CAT: IIFichier : MDG-2314-NODATE-secondary_zoning-001.yml
amendment_id: MDG-2314-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 2314
wdpa_name: Montagne d'Ambre
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Montagne d''Ambre.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-2314-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-2314-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-26070-2002-boundary_modification-001.yml
amendment_id: MDG-26070-2002-boundary_modification-001
iso3: MDG
wdpaid: 26070
wdpa_name: Mantadia
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1989-01-11'
valid_to: '2002-08-07'
legal_instrument:
source: CNLEGIS
type: décret
number: 2002-790
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2002-790
temporal_description: Modification des limites du 1989-01-11 au 2002-08-07 selon décret
n. 2002-790.
notes: Périmètre original du PN Mantadia (Décret 89-011, ~9 930 ha) avant l'extension
de 2002 (Décret 2002-790, 15 480 ha). Géométrie fournie par MNP.
geometry_ref: geoms/MDG-26070-2002-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MNP_Mantadia_pre2002Géométrie associée : geoms/MDG-26070-2002-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-26070-NODATE-secondary_zoning-001.yml
amendment_id: MDG-26070-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 26070
wdpa_name: Mantadia
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Mantadia. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-26070-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-26070-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-26072-NODATE-secondary_zoning-001.yml
amendment_id: MDG-26072-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 26072
wdpa_name: Mananara Nord
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Mananara Nord. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-26072-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-26072-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-303695-NODATE-secondary_zoning-001.yml
amendment_id: MDG-303695-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 303695
wdpa_name: Masoala
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Masoala. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-303695-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-303695-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-303698-NODATE-secondary_zoning-001.yml
amendment_id: MDG-303698-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 303698
wdpa_name: Baie de Baly
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Baie de Baly. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-303698-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-303698-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-303700-2015-boundary_modification-001.yml
amendment_id: MDG-303700-2015-boundary_modification-001
iso3: MDG
wdpaid: 303700
wdpa_name: Kirindy Mite
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1997-12-18'
valid_to: '2015-04-21'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-735
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-735
temporal_description: Modification des limites du 1997-12-18 au 2015-04-21 selon décret
n. 2015-735.
notes: Périmètre 1997-2015 avant modification des limites (géométrie MNP_2010 retenue
après vérification visuelle).
geometry_ref: geoms/MDG-303700-2015-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MNP_2010Géométrie associée : geoms/MDG-303700-2015-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-303700-NODATE-secondary_zoning-001.yml
amendment_id: MDG-303700-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 303700
wdpa_name: Kirindy Mite
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Kirindy Mite. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-303700-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-303700-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-303702-2011-boundary_modification-001.yml
amendment_id: MDG-303702-2011-boundary_modification-001
iso3: MDG
wdpaid: 303702
wdpa_name: Bemaraha
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1997-08-07'
valid_to: '2011-09-06'
legal_instrument:
source: CNLEGIS
type: décret
number: 2011-498
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2011-498
temporal_description: Modification des limites du 1997-08-07 au 2011-09-06 selon décret
n. 2011-498.
notes: Périmètre 1997-2011 avant modification des limites (géométrie SAPM_2010 retenue
après vérification visuelle). Périmètres pré-1997 non disponibles.
geometry_ref: geoms/MDG-303702-2011-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: SAPM_2010Géométrie associée : geoms/MDG-303702-2011-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-303702-2011-status_change-001.yml
amendment_id: MDG-303702-2011-status_change-001
iso3: MDG
wdpaid: 303702
wdpa_name: Bemaraha
amendment_kind: attribute
amendment_type: status_change
valid_from: '1927-12-31'
valid_to: '2011-09-06'
legal_instrument:
source: CNLEGIS
type: décret
number: 2011-498
date: '2011-09-06'
id: '41311'
url: https://cnlegis.gov.mg/page_num_find_direct/?2011-498
temporal_description: Changement de statut du 1927-12-31 au 2011-09-06 selon décret
n. 2011-498 du 2011-09-06.
notes: 'Created as RNI #9 on 1927-12-31 (Décret du 31 décembre 1927), boundaries modified
1997-08-07 (Décret 97-1045). Changed from RNI to PN via Décret 2011-498 du 6 septembre
2011 with boundary modification.'
attributes:
DESIG: Réserve Naturelle Intégrale
DESIG_ENG: Strict Nature Reserve
DESIG_TYPE: National
IUCN_CAT: IaFichier : MDG-303702-NODATE-correction-001.yml
amendment_id: MDG-303702-NODATE-correction-001
iso3: MDG
wdpaid: 303702
wdpa_name: Bemaraha
amendment_kind: attribute
amendment_type: correction
valid_from: '2011-09-06'
legal_instrument:
source: CNLEGIS
type: décret
number: 2011-498
date: '2011-09-06'
id: '41311'
url: https://cnlegis.gov.mg/page_num_find_direct/?2011-498
temporal_description: Correction de donnees depuis le 2011-09-06 selon décret n. 2011-498
du 2011-09-06.
notes: WDPA STATUS_YR=1997 conflates boundary change with status change. Current status
(PN) dates from Décret 2011-498 du 6 septembre 2011. Idempotent once WDPA corrects.
attributes:
STATUS_YR: '2011'Fichier : MDG-303702-NODATE-secondary_zoning-001.yml
amendment_id: MDG-303702-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 303702
wdpa_name: Bemaraha
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Bemaraha. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-303702-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-303702-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-352239-2007-temporary_protection-001.yml
amendment_id: MDG-352239-2007-temporary_protection-001
iso3: MDG
wdpaid: 352239
wdpa_name: Ambatotsirongorongo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2007-08-20'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 13613/2007
date: '2007-08-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2007-08-20 au 2015-04-28 selon arrêté
n. 13613/2007 du 2007-08-20.
notes: Temporary protection via Arrêté 13613/2007 (2007-08-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-792.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2007'Fichier : MDG-352240-2006-temporary_protection-001.yml
amendment_id: MDG-352240-2006-temporary_protection-001
iso3: MDG
wdpaid: 352240
wdpa_name: Analalava
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2006-09-15'
valid_to: '2008-10-17'
legal_instrument:
source: manual
type: arrêté
number: 16072/2006
date: '2006-09-15'
id: ~
url: ~
temporal_description: Protection temporaire du 2006-09-15 au 2008-10-17 selon arrêté
n. 16072/2006 du 2006-09-15.
notes: Temporary protection via Arrêté 16072/2006 (2006-09-15). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-750.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2006'Fichier : MDG-352240-2008-temporary_protection-001.yml
amendment_id: MDG-352240-2008-temporary_protection-001
iso3: MDG
wdpaid: 352240
wdpa_name: Analalava
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-750.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-352240-2010-temporary_protection-001.yml
amendment_id: MDG-352240-2010-temporary_protection-001
iso3: MDG
wdpaid: 352240
wdpa_name: Analalava
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-750.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-352240-2013-temporary_protection-001.yml
amendment_id: MDG-352240-2013-temporary_protection-001
iso3: MDG
wdpaid: 352240
wdpa_name: Analalava
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-750.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-352242-2005-temporary_protection-001.yml
amendment_id: MDG-352242-2005-temporary_protection-001
iso3: MDG
wdpaid: 352242
wdpa_name: Complexe Anjozorobe Angavo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2005-12-30'
valid_to: '2007-01-08'
legal_instrument:
source: manual
type: arrêté
number: 20023/2005
date: '2005-12-30'
id: ~
url: ~
temporal_description: Protection temporaire du 2005-12-30 au 2007-01-08 selon arrêté
n. 20023/2005 du 2005-12-30.
notes: Temporary protection via Arrêté 20023/2005 (2005-12-30). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-763.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2005'Fichier : MDG-352242-2007-temporary_protection-001.yml
amendment_id: MDG-352242-2007-temporary_protection-001
iso3: MDG
wdpaid: 352242
wdpa_name: Complexe Anjozorobe Angavo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2007-08-20'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 13617/2007
date: '2007-08-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2007-08-20 au 2015-04-28 selon arrêté
n. 13617/2007 du 2007-08-20.
notes: Temporary protection via Arrêté 13617/2007 (2007-08-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-763.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2007'Fichier : MDG-352242-2007-temporary_protection-002.yml
amendment_id: MDG-352242-2007-temporary_protection-002
iso3: MDG
wdpaid: 352242
wdpa_name: Complexe Anjozorobe Angavo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2007-01-08'
valid_to: '2007-01-08'
legal_instrument:
source: manual
type: arrêté
number: 380/2007
date: '2007-01-08'
id: ~
url: ~
temporal_description: Protection temporaire du 2007-01-08 au 2007-01-08 selon arrêté
n. 380/2007 du 2007-01-08.
notes: Temporary protection via Arrêté 380/2007 (2007-01-08). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-763.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2007'Fichier : MDG-352242-NODATE-secondary_zoning-001.yml
amendment_id: MDG-352242-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 352242
wdpa_name: Complexe Anjozorobe Angavo
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Anjozorobe Angavo.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-352242-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-352242-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-352243-2006-temporary_protection-001.yml
amendment_id: MDG-352243-2006-temporary_protection-001
iso3: MDG
wdpaid: 352243
wdpa_name: Ankodida
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2006-03-15'
valid_to: '2007-08-20'
legal_instrument:
source: manual
type: arrêté
number: 3749/2006
date: '2006-03-15'
id: ~
url: ~
temporal_description: Protection temporaire du 2006-03-15 au 2007-08-20 selon arrêté
n. 3749/2006 du 2006-03-15.
notes: Temporary protection via Arrêté 3749/2006 (2006-03-15). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-787.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2006'Fichier : MDG-352243-2007-temporary_protection-001.yml
amendment_id: MDG-352243-2007-temporary_protection-001
iso3: MDG
wdpaid: 352243
wdpa_name: Ankodida
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2007-08-20'
valid_to: '2008-10-17'
legal_instrument:
source: manual
type: arrêté
number: 13615/2007
date: '2007-08-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2007-08-20 au 2008-10-17 selon arrêté
n. 13615/2007 du 2007-08-20.
notes: Temporary protection via Arrêté 13615/2007 (2007-08-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-787.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2007'Fichier : MDG-352243-2008-temporary_protection-001.yml
amendment_id: MDG-352243-2008-temporary_protection-001
iso3: MDG
wdpaid: 352243
wdpa_name: Ankodida
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-787.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-352243-2010-temporary_protection-001.yml
amendment_id: MDG-352243-2010-temporary_protection-001
iso3: MDG
wdpaid: 352243
wdpa_name: Ankodida
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-787.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-352243-2013-temporary_protection-001.yml
amendment_id: MDG-352243-2013-temporary_protection-001
iso3: MDG
wdpaid: 352243
wdpa_name: Ankodida
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-787.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-352244-2006-temporary_protection-001.yml
amendment_id: MDG-352244-2006-temporary_protection-001
iso3: MDG
wdpaid: 352244
wdpa_name: Corridor forestier Bongolava
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2006-09-15'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 16069/2006
date: '2006-09-15'
id: ~
url: ~
temporal_description: Protection temporaire du 2006-09-15 au 2015-04-28 selon arrêté
n. 16069/2006 du 2006-09-15.
notes: Temporary protection via Arrêté 16069/2006 (2006-09-15). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-790.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2006'Fichier : MDG-352247-2006-temporary_protection-001.yml
amendment_id: MDG-352247-2006-temporary_protection-001
iso3: MDG
wdpaid: 352247
wdpa_name: Nord fotaky
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2006-03-15'
valid_to: '2007-08-20'
legal_instrument:
source: manual
type: arrêté
number: 3748/2006
date: '2006-03-15'
id: ~
url: ~
temporal_description: Protection temporaire du 2006-03-15 au 2007-08-20 selon arrêté
n. 3748/2006 du 2006-03-15.
notes: Temporary protection via Arrêté 3748/2006 (2006-03-15). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-786.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2006'Fichier : MDG-352247-2007-temporary_protection-001.yml
amendment_id: MDG-352247-2007-temporary_protection-001
iso3: MDG
wdpaid: 352247
wdpa_name: Nord fotaky
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2007-08-20'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 13611/2007
date: '2007-08-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2007-08-20 au 2015-04-28 selon arrêté
n. 13611/2007 du 2007-08-20.
notes: Temporary protection via Arrêté 13611/2007 (2007-08-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-786.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2007'Fichier : MDG-352248-2007-temporary_protection-001.yml
amendment_id: MDG-352248-2007-temporary_protection-001
iso3: MDG
wdpaid: 352248
wdpa_name: Complexe Zones Humides Mahavavy Kinkony
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2007-01-17'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 1066/2007
date: '2007-01-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2007-01-17 au 2015-04-21 selon arrêté
n. 1066/2007 du 2007-01-17.
notes: Temporary protection via Arrêté 1066/2007 (2007-01-17). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-21 via 2015-718.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2007'Fichier : MDG-352249-2005-temporary_protection-001.yml
amendment_id: MDG-352249-2005-temporary_protection-001
iso3: MDG
wdpaid: 352249
wdpa_name: Makira
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2005-12-30'
valid_to: '2007-01-08'
legal_instrument:
source: manual
type: arrêté
number: 20022/2005
date: '2005-12-30'
id: ~
url: ~
temporal_description: Protection temporaire du 2005-12-30 au 2007-01-08 selon arrêté
n. 20022/2005 du 2005-12-30.
notes: Temporary protection via Arrêté 20022/2005 (2005-12-30). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2012-06-19 via 2012-641.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2005'Fichier : MDG-352249-2007-temporary_protection-001.yml
amendment_id: MDG-352249-2007-temporary_protection-001
iso3: MDG
wdpaid: 352249
wdpa_name: Makira
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2007-01-08'
valid_to: '2012-06-19'
legal_instrument:
source: manual
type: arrêté
number: 378/2007
date: '2007-01-08'
id: ~
url: ~
temporal_description: Protection temporaire du 2007-01-08 au 2012-06-19 selon arrêté
n. 378/2007 du 2007-01-08.
notes: Temporary protection via Arrêté 378/2007 (2007-01-08). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2012-06-19 via 2012-641.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2007'Fichier : MDG-352250-2006-temporary_protection-001.yml
amendment_id: MDG-352250-2006-temporary_protection-001
iso3: MDG
wdpaid: 352250
wdpa_name: Mandena
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2006-05-15'
valid_to: '2007-08-20'
legal_instrument:
source: manual
type: arrêté
number: 7878/2006
date: '2006-05-15'
id: ~
url: ~
temporal_description: Protection temporaire du 2006-05-15 au 2007-08-20 selon arrêté
n. 7878/2006 du 2006-05-15.
notes: Temporary protection via Arrêté 7878/2006 (2006-05-15). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-779.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2006'Fichier : MDG-352250-2007-temporary_protection-001.yml
amendment_id: MDG-352250-2007-temporary_protection-001
iso3: MDG
wdpaid: 352250
wdpa_name: Mandena
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2007-08-20'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 13614/2007
date: '2007-08-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2007-08-20 au 2015-04-28 selon arrêté
n. 13614/2007 du 2007-08-20.
notes: Temporary protection via Arrêté 13614/2007 (2007-08-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-779.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2007'Fichier : MDG-352251-2006-temporary_protection-001.yml
amendment_id: MDG-352251-2006-temporary_protection-001
iso3: MDG
wdpaid: 352251
wdpa_name: Menabe Antimena
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2006-03-28'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 4532/2006
date: '2006-03-28'
id: ~
url: ~
temporal_description: Protection temporaire du 2006-03-28 au 2015-04-28 selon arrêté
n. 4532/2006 du 2006-03-28.
notes: Temporary protection via Arrêté 4532/2006 (2006-03-28). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-762.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2006'Fichier : MDG-352251-NODATE-secondary_zoning-001.yml
amendment_id: MDG-352251-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 352251
wdpa_name: Menabe Antimena
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Menabe Antimena.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-352251-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-352251-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-352252-2006-temporary_protection-001.yml
amendment_id: MDG-352252-2006-temporary_protection-001
iso3: MDG
wdpaid: 352252
wdpa_name: Ambohitr'Antsingy Montagne des Français
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2006-09-15'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 16070/2006
date: '2006-09-15'
id: ~
url: ~
temporal_description: Protection temporaire du 2006-09-15 au 2015-04-28 selon arrêté
n. 16070/2006 du 2006-09-15.
notes: Temporary protection via Arrêté 16070/2006 (2006-09-15). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-780.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2006'Fichier : MDG-352253-2007-temporary_protection-001.yml
amendment_id: MDG-352253-2007-temporary_protection-001
iso3: MDG
wdpaid: 352253
wdpa_name: Amoron'i Onilahy
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2007-01-17'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 1067/2007
date: '2007-01-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2007-01-17 au 2015-04-28 selon arrêté
n. 1067/2007 du 2007-01-17.
notes: Temporary protection via Arrêté 1067/2007 (2007-01-17). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-788.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2007'Fichier : MDG-352253-NODATE-secondary_zoning-001.yml
amendment_id: MDG-352253-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 352253
wdpa_name: Amoron'i Onilahy
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Amoron''i Onilahy.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-352253-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-352253-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-352255-2006-temporary_protection-001.yml
amendment_id: MDG-352255-2006-temporary_protection-001
iso3: MDG
wdpaid: 352255
wdpa_name: Ambatoatsinanana
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2006-05-15'
valid_to: '2007-08-20'
legal_instrument:
source: manual
type: arrêté
number: 7879/2006
date: '2006-05-15'
id: ~
url: ~
temporal_description: Protection temporaire du 2006-05-15 au 2007-08-20 selon arrêté
n. 7879/2006 du 2006-05-15.
notes: Temporary protection via Arrêté 7879/2006 (2006-05-15). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-778.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2006'Fichier : MDG-352255-2007-temporary_protection-001.yml
amendment_id: MDG-352255-2007-temporary_protection-001
iso3: MDG
wdpaid: 352255
wdpa_name: Ambatoatsinanana
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2007-08-20'
valid_to: '2008-10-17'
legal_instrument:
source: manual
type: arrêté
number: 13616/2007
date: '2007-08-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2007-08-20 au 2008-10-17 selon arrêté
n. 13616/2007 du 2007-08-20.
notes: Temporary protection via Arrêté 13616/2007 (2007-08-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-778.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2007'Fichier : MDG-352255-2008-temporary_protection-001.yml
amendment_id: MDG-352255-2008-temporary_protection-001
iso3: MDG
wdpaid: 352255
wdpa_name: Ambatoatsinanana
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-778.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-352255-2010-temporary_protection-001.yml
amendment_id: MDG-352255-2010-temporary_protection-001
iso3: MDG
wdpaid: 352255
wdpa_name: Ambatoatsinanana
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-778.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-352255-2013-temporary_protection-001.yml
amendment_id: MDG-352255-2013-temporary_protection-001
iso3: MDG
wdpaid: 352255
wdpa_name: Ambatoatsinanana
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-778.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-352256-2005-temporary_protection-001.yml
amendment_id: MDG-352256-2005-temporary_protection-001
iso3: MDG
wdpaid: 352256
wdpa_name: Corridor Ankeniheny Zahamena
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2005-12-30'
valid_to: '2007-01-08'
legal_instrument:
source: manual
type: arrêté
number: 20021/2005
date: '2005-12-30'
id: ~
url: ~
temporal_description: Protection temporaire du 2005-12-30 au 2007-01-08 selon arrêté
n. 20021/2005 du 2005-12-30.
notes: Temporary protection via Arrêté 20021/2005 (2005-12-30). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-754.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2005'Fichier : MDG-352256-2007-temporary_protection-001.yml
amendment_id: MDG-352256-2007-temporary_protection-001
iso3: MDG
wdpaid: 352256
wdpa_name: Corridor Ankeniheny Zahamena
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2007-01-08'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 379/2007
date: '2007-01-08'
id: ~
url: ~
temporal_description: Protection temporaire du 2007-01-08 au 2015-04-28 selon arrêté
n. 379/2007 du 2007-01-08.
notes: Temporary protection via Arrêté 379/2007 (2007-01-08). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-754.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2007'Fichier : MDG-352256-NODATE-secondary_zoning-001.yml
amendment_id: MDG-352256-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 352256
wdpa_name: Corridor Ankeniheny Zahamena
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Zahamena. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-352256-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-352256-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-354011-2007-temporary_protection-001.yml
amendment_id: MDG-354011-2007-temporary_protection-001
iso3: MDG
wdpaid: 354011
wdpa_name: Réserve de Tampolo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2007-08-20'
valid_to: '2008-10-17'
legal_instrument:
source: manual
type: arrêté
number: 13612/2007
date: '2007-08-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2007-08-20 au 2008-10-17 selon arrêté
n. 13612/2007 du 2007-08-20.
notes: Temporary protection via Arrêté 13612/2007 (2007-08-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-789.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2007'Fichier : MDG-354011-2008-temporary_protection-001.yml
amendment_id: MDG-354011-2008-temporary_protection-001
iso3: MDG
wdpaid: 354011
wdpa_name: Réserve de Tampolo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-789.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-354011-2010-temporary_protection-001.yml
amendment_id: MDG-354011-2010-temporary_protection-001
iso3: MDG
wdpaid: 354011
wdpa_name: Réserve de Tampolo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-789.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-354011-2013-temporary_protection-001.yml
amendment_id: MDG-354011-2013-temporary_protection-001
iso3: MDG
wdpaid: 354011
wdpa_name: Réserve de Tampolo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-789.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-354012-2007-temporary_protection-001.yml
amendment_id: MDG-354012-2007-temporary_protection-001
iso3: MDG
wdpaid: 354012
wdpa_name: Mikea
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2007-04-13'
valid_to: '2011-09-06'
legal_instrument:
source: manual
type: arrêté
number: 5569/2007
date: '2007-04-13'
id: ~
url: ~
temporal_description: Protection temporaire du 2007-04-13 au 2011-09-06 selon arrêté
n. 5569/2007 du 2007-04-13.
notes: Temporary protection via Arrêté 5569/2007 (2007-04-13). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2011-09-06 via 2011-496.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2007'Fichier : MDG-354012-NODATE-secondary_zoning-001.yml
amendment_id: MDG-354012-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 354012
wdpa_name: Mikea
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Mikea. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-354012-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-354012-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-354013-1997-boundary_modification-001.yml
amendment_id: MDG-354013-1997-boundary_modification-001
iso3: MDG
wdpaid: 354013
wdpa_name: Zahamena
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1927-12-31'
valid_to: '1997-08-07'
legal_instrument:
source: CNLEGIS
type: décret
number: 97-1044
date: ~
id: ~
url: ~
temporal_description: Modification des limites du 1927-12-31 au 1997-08-07 selon décret
n. 97-1044.
notes: 'Pre-1997 geometry from SAPM_2010: RNI unique status, approximately 73,160
ha. In 1997, Décret 97-1044 reduced area to 64,378 ha, created Antenina enclave
(350 ha), and established mixed PN+RNI zoning.'
geometry_ref: geoms/MDG-354013-1997-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: SAPM_2010Géométrie associée : geoms/MDG-354013-1997-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-354013-1997-status_change-001.yml
amendment_id: MDG-354013-1997-status_change-001
iso3: MDG
wdpaid: 354013
wdpa_name: Zahamena
amendment_kind: attribute
amendment_type: status_change
valid_from: '1927-12-31'
valid_to: '1997-08-07'
legal_instrument:
source: manual
type: décret
number: 97-1044
date: '1997-08-07'
id: ~
url: ~
temporal_description: Changement de statut du 1927-12-31 au 1997-08-07 selon décret
n. 97-1044 du 1997-08-07.
notes: 'Created as RNI #3 in 1927 (Décret du 31 décembre 1927). Status changed to
composite PN+RNI in 1997.'
attributes:
DESIG: Réserve Naturelle Intégrale
DESIG_ENG: Strict Nature Reserve
IUCN_CAT: IaFichier : MDG-354013-2015-boundary_modification-001.yml
amendment_id: MDG-354013-2015-boundary_modification-001
iso3: MDG
wdpaid: 354013
wdpa_name: Zahamena
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1997-08-07'
valid_to: '2015-04-28'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-737
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-737
temporal_description: Modification des limites du 1997-08-07 au 2015-04-28 selon décret
n. 2015-737.
notes: '1997-2015 geometry from ANGAP_2002: mixed PN+RNI status with Antenina enclave,
64,378 ha total. In 2015, Décret 2015-737 expanded to 64,935 ha and unified as PN
only.'
geometry_ref: geoms/MDG-354013-2015-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: ANGAP_2002Géométrie associée : geoms/MDG-354013-2015-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-354013-2015-status_change-001.yml
amendment_id: MDG-354013-2015-status_change-001
iso3: MDG
wdpaid: 354013
wdpa_name: Zahamena
amendment_kind: attribute
amendment_type: status_change
valid_from: '1997-08-07'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: décret
number: 97-1044
date: '1997-08-07'
id: ~
url: ~
temporal_description: Changement de statut du 1997-08-07 au 2015-04-21 selon décret
n. 97-1044 du 1997-08-07.
notes: 'Décret 97-1044 established mixed status: PN (42,300 ha, IUCN II) + RNI (22,100
ha, IUCN Ia) with Antenina enclave (350 ha). Boundaries reduced from ~73,160 ha
to 64,378 ha. Unified to PN only via Décret 2015-737 du 21 avril 2015, eliminating
previous composite PN+RNI zoning. Boundaries expanded from 64,378 ha to 64,935 ha. '
attributes:
DESIG: Parc National + Réserve Naturelle Intégrale
DESIG_ENG: National Park + Strict Nature Reserve
IUCN_CAT: II+IaFichier : MDG-5021-2015-boundary_modification-001.yml
amendment_id: MDG-5021-2015-boundary_modification-001
iso3: MDG
wdpaid: 5021
wdpa_name: Analamazaotra
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1970-07-21'
valid_to: '2015-04-21'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-732
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-732
temporal_description: Modification des limites du 1970-07-21 au 2015-04-21 selon décret
n. 2015-732.
notes: Périmètre antérieur au décret modifiant (géométrie SAPM_2010 retenue après
vérification visuelle).
geometry_ref: geoms/MDG-5021-2015-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: SAPM_2010Géométrie associée : geoms/MDG-5021-2015-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-5021-NODATE-correction-001.yml
amendment_id: MDG-5021-NODATE-correction-001
iso3: MDG
wdpaid: 5021
wdpa_name: Analamazaotra
amendment_kind: attribute
amendment_type: correction
valid_from: '1970-07-21'
legal_instrument:
source: CNLEGIS
type: arrêté
number: 2778/70
date: '1970-07-21'
id: '27854'
url: https://cnlegis.gov.mg/page_num_find_direct/?2778%2F70
temporal_description: Correction de donnees depuis le 1970-07-21 selon arrêté n. 2778/70
du 1970-07-21.
notes: WDPA incorrectly shows STATUS_YR=2015 (date of upgrade to PN). Actual creation
was 1970 as wildlife reserve for Indris.
attributes:
STATUS_YR: '1970'Fichier : MDG-5021-NODATE-secondary_zoning-001.yml
amendment_id: MDG-5021-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 5021
wdpa_name: Analamazaotra
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Analamazaotra. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-5021-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-5021-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-5022-NODATE-correction-001.yml
amendment_id: MDG-5022-NODATE-correction-001
iso3: MDG
wdpaid: 5022
wdpa_name: Analamerana
amendment_kind: attribute
amendment_type: correction
valid_from: '1956-02-20'
legal_instrument:
source: manual
type: décret
number: 56-208
date: '1956-02-20'
id: ~
url: ~
temporal_description: Correction de donnees depuis le 1956-02-20 selon décret n. 56-208
du 1956-02-20.
notes: WDPA incorrectly shows DESIG='Parc National', IUCN_CAT=II, and STATUS_YR=2015.
Analamerana is a Special Reserve (RS) created in 1956 (Décret 56-208), IUCN category
IV. No status change has occurred according to Goodman et al. 2018.
attributes:
DESIG: Reserve Speciale
DESIG_ENG: Special Reserve
DESIG_TYPE: National
IUCN_CAT: IV
STATUS_YR: '1956'Fichier : MDG-5022-NODATE-secondary_zoning-001.yml
amendment_id: MDG-5022-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 5022
wdpa_name: Analamerana
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Analamerana. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-5022-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-5022-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-5023-2015-boundary_modification-001.yml
amendment_id: MDG-5023-2015-boundary_modification-001
iso3: MDG
wdpaid: 5023
wdpa_name: Anjanaharibe_sud
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1958-10-28'
valid_to: '2015-04-21'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-729
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-729
temporal_description: Modification des limites du 1958-10-28 au 2015-04-21 selon décret
n. 2015-729.
notes: Périmètre antérieur au décret modifiant (géométrie MNP_2010 retenue après vérification
visuelle).
geometry_ref: geoms/MDG-5023-2015-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MNP_2010Géométrie associée : geoms/MDG-5023-2015-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-5023-NODATE-correction-001.yml
amendment_id: MDG-5023-NODATE-correction-001
iso3: MDG
wdpaid: 5023
wdpa_name: Anjanaharibe_sud
amendment_kind: attribute
amendment_type: correction
valid_from: '1958-10-28'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-729
date: '2015-04-21'
id: '45694'
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-729
temporal_description: Correction de donnees depuis le 1958-10-28 selon décret n. 2015-729
du 2015-04-21.
notes: WDPA incorrectly shows STATUS_YR=2015 (date of boundary modification). Actual
creation was 1958 as Réserve Spéciale (Décret 58-12 du 28 octobre 1958).
attributes:
STATUS_YR: '1958'Fichier : MDG-5024-NODATE-correction-001.yml
amendment_id: MDG-5024-NODATE-correction-001
iso3: MDG
wdpaid: 5024
wdpa_name: Ankarana
amendment_kind: attribute
amendment_type: correction
valid_from: '1956-02-20'
legal_instrument:
source: manual
type: décret
number: 56-208
date: '1956-02-20'
id: ~
url: ~
temporal_description: Correction de donnees depuis le 1956-02-20 selon décret n. 56-208
du 1956-02-20.
notes: WDPA incorrectly shows STATUS_YR=2015. RS Ankarana was created in 1956 (Décret
56-208). No status change has occurred according to Goodman et al. 2018.
attributes:
STATUS_YR: '1956'Fichier : MDG-5024-NODATE-secondary_zoning-001.yml
amendment_id: MDG-5024-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 5024
wdpa_name: Ankarana
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Ankarana. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-5024-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-5024-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-5025-2015-boundary_modification-001.yml
amendment_id: MDG-5025-2015-boundary_modification-001
iso3: MDG
wdpaid: 5025
wdpa_name: '5025'
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1958-10-28'
valid_to: '2015-04-28'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-776
date: ~
id: ~
url: ~
temporal_description: Modification des limites du 1958-10-28 au 2015-04-28 selon décret
n. 2015-776.
notes: Geometry of RS Forêt d'Ambre (polygons 2+3 from MNP_2010, 45.60 km²). This
PA was absorbed into WDPAID 2314 in 2015 and received STATUS='Dissolved'. SAT documents
the historical geometry before dissolution.
geometry_ref: geoms/MDG-5025-2015-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MNP_2010_splitGéométrie associée : geoms/MDG-5025-2015-boundary_modification-001.geojson (1 feature(s), 7)
Fichier : MDG-5025-2015-status_change-001.yml
amendment_id: MDG-5025-2015-status_change-001
iso3: MDG
wdpaid: 5025
wdpa_name: '5025'
amendment_kind: attribute
amendment_type: status_change
valid_from: '1958-10-28'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: décret
number: 2015-776
date: '2015-04-28'
id: ~
url: ~
temporal_description: Changement de statut du 1958-10-28 au 2015-04-28 selon décret
n. 2015-776 du 2015-04-28.
notes: Created as RS on 1958-10-28 via Décret 58-15. Dissolved and merged into WDPAID
2314 in 2015.
attributes:
DESIG: Réserve Spéciale
DESIG_ENG: Special Reserve
IUCN_CAT: IV
STATUS: Designated
STATUS_YR: '1958'Fichier : MDG-5026-2015-boundary_modification-001.yml
amendment_id: MDG-5026-2015-boundary_modification-001
iso3: MDG
wdpaid: 5026
wdpa_name: Manongarivo
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1956-02-20'
valid_to: '2015-04-28'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-784
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-784
temporal_description: Modification des limites du 1956-02-20 au 2015-04-28 selon décret
n. 2015-784.
notes: Périmètre 1956-2015 avant modification des limites (géométrie MNP_2010 retenue
après vérification visuelle).
geometry_ref: geoms/MDG-5026-2015-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MNP_2010Géométrie associée : geoms/MDG-5026-2015-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-5026-NODATE-correction-001.yml
amendment_id: MDG-5026-NODATE-correction-001
iso3: MDG
wdpaid: 5026
wdpa_name: Manongarivo
amendment_kind: attribute
amendment_type: correction
valid_from: '1956-02-20'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-784
date: '2015-04-28'
id: '46629'
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-784
temporal_description: Correction de donnees depuis le 1956-02-20 selon décret n. 2015-784
du 2015-04-28.
notes: WDPA incorrectly shows STATUS_YR=2015 (date of boundary modification). Actual
creation was 1956 as Réserve Spéciale (Décret 56-208 du 20 février 1956).
attributes:
STATUS_YR: '1956'Fichier : MDG-5026-NODATE-secondary_zoning-001.yml
amendment_id: MDG-5026-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 5026
wdpa_name: Manongarivo
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Manongarivo. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-5026-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-5026-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-5028-NODATE-secondary_zoning-001.yml
amendment_id: MDG-5028-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 5028
wdpa_name: Manombo
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Manombo. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-5028-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-5028-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-5029-NODATE-secondary_zoning-001.yml
amendment_id: MDG-5029-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 5029
wdpa_name: Ivohibe
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Ivohibe. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-5029-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-5029-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-5035-NODATE-secondary_zoning-001.yml
amendment_id: MDG-5035-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 5035
wdpa_name: Marotandrano
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Marotandrano. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-5035-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-5035-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-5037-2015-boundary_modification-001.yml
amendment_id: MDG-5037-2015-boundary_modification-001
iso3: MDG
wdpaid: 5037
wdpa_name: Ambatovaky
amendment_kind: spatial
amendment_type: boundary_modification
valid_to: '2015-04-21'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-731
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-731
temporal_description: Modification des limites jusqu'au 2015-04-21 selon décret n.
2015-731.
notes: Périmètre antérieur au décret modifiant (géométrie MNP_2010 retenue après vérification
visuelle).
geometry_ref: geoms/MDG-5037-2015-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MNP_2010Géométrie associée : geoms/MDG-5037-2015-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-5037-NODATE-secondary_zoning-001.yml
amendment_id: MDG-5037-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 5037
wdpa_name: Ambatovaky
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Ambatovaky. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-5037-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-5037-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-5038-NODATE-secondary_zoning-001.yml
amendment_id: MDG-5038-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 5038
wdpa_name: Mangerivola
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Mangerivola. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-5038-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-5038-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-5039-2015-boundary_modification-001.yml
amendment_id: MDG-5039-2015-boundary_modification-001
iso3: MDG
wdpaid: 5039
wdpa_name: Nosy Mangabe
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1965-12-14'
valid_to: '2015-04-28'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-775
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-775
temporal_description: Modification des limites du 1965-12-14 au 2015-04-28 selon décret
n. 2015-775.
notes: 'Pre-2015 geometry: main island only (polygon 5 from WDPA_2025, 5.70 km²).
In 2015, 4 small islets were added (polygons 1-4, ~0.28 km²) expanding to 7.29 km²
total.'
geometry_ref: geoms/MDG-5039-2015-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: WDPA_2025_splitGéométrie associée : geoms/MDG-5039-2015-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-5039-2015-status_change-001.yml
amendment_id: MDG-5039-2015-status_change-001
iso3: MDG
wdpaid: 5039
wdpa_name: Nosy Mangabe
amendment_kind: attribute
amendment_type: status_change
valid_from: '1965-12-14'
valid_to: '2015-04-28'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-775
date: '2015-04-28'
id: '46592'
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-775
temporal_description: Changement de statut du 1965-12-14 au 2015-04-28 selon décret
n. 2015-775 du 2015-04-28.
notes: Created as RS (Réserve Spéciale) on 1965-12-14 via Décret 65-795. Status changed
to PN via Décret 2015-775 du 28 avril 2015, with boundary expansion (added 4 small
islets).
attributes:
DESIG: Réserve Spéciale
DESIG_ENG: Special Reserve
IUCN_CAT: IVFichier : MDG-5039-NODATE-secondary_zoning-001.yml
amendment_id: MDG-5039-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 5039
wdpa_name: Nosy Mangabe
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Nosy Mangabe. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-5039-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-5039-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-5040-NODATE-correction-001.yml
amendment_id: MDG-5040-NODATE-correction-001
iso3: MDG
wdpaid: 5040
wdpa_name: Andranomena
amendment_kind: attribute
amendment_type: correction
valid_from: '1958-10-28'
legal_instrument:
source: CNLEGIS
type: décret
number: 58-13
date: '1958-10-28'
id: '21574'
url: https://cnlegis.gov.mg/page_num_find_direct/?58-13
temporal_description: Correction de donnees depuis le 1958-10-28 selon décret n. 58-13
du 1958-10-28.
notes: WDPA incorrectly shows STATUS_YR=2015 (date of creation of PHP Menabe Antimena
which encompasses Andranomena). RS Andranomena was created in 1958 (Décret 58-13)
and retains its own legal and land status according to Goodman et al. 2018.
attributes:
STATUS_YR: '1958'Fichier : MDG-5040-NODATE-secondary_zoning-001.yml
amendment_id: MDG-5040-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 5040
wdpa_name: Andranomena
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Andranomena. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-5040-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-5040-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-5041-2015-boundary_modification-001.yml
amendment_id: MDG-5041-2015-boundary_modification-001
iso3: MDG
wdpaid: 5041
wdpa_name: Cap Sainte Marie
amendment_kind: spatial
amendment_type: boundary_modification
valid_from: '1962-10-24'
valid_to: '2015-04-21'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-734
date: ~
id: ~
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-734
temporal_description: Modification des limites du 1962-10-24 au 2015-04-21 selon décret
n. 2015-734.
notes: Périmètre 1962-2015 avant modification des limites (géométrie MNP_2010 retenue
après vérification visuelle).
geometry_ref: geoms/MDG-5041-2015-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MNP_2010Géométrie associée : geoms/MDG-5041-2015-boundary_modification-001.geojson (1 feature(s), 4)
Fichier : MDG-5041-NODATE-correction-001.yml
amendment_id: MDG-5041-NODATE-correction-001
iso3: MDG
wdpaid: 5041
wdpa_name: Cap Sainte Marie
amendment_kind: attribute
amendment_type: correction
valid_from: '1962-10-24'
legal_instrument:
source: CNLEGIS
type: décret
number: 2015-734
date: '2015-04-21'
id: '44678'
url: https://cnlegis.gov.mg/page_num_find_direct/?2015-734
temporal_description: Correction de donnees depuis le 1962-10-24 selon décret n. 2015-734
du 2015-04-21.
notes: WDPA incorrectly shows STATUS_YR=2015 (date of boundary modification). Actual
creation was 1962 as Réserve Spéciale (Décret 62-527 du 24 octobre 1962).
attributes:
STATUS_YR: '1962'Fichier : MDG-555512161-2008-temporary_protection-001.yml
amendment_id: MDG-555512161-2008-temporary_protection-001
iso3: MDG
wdpaid: 555512161
wdpa_name: Velondriake
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-752.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555512161-2010-temporary_protection-001.yml
amendment_id: MDG-555512161-2010-temporary_protection-001
iso3: MDG
wdpaid: 555512161
wdpa_name: Velondriake
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-752.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555512161-2013-temporary_protection-001.yml
amendment_id: MDG-555512161-2013-temporary_protection-001
iso3: MDG
wdpaid: 555512161
wdpa_name: Velondriake
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-752.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555547961-2008-temporary_protection-001.yml
amendment_id: MDG-555547961-2008-temporary_protection-001
iso3: MDG
wdpaid: 555547961
wdpa_name: Mandrozo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-714.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555547961-2010-temporary_protection-001.yml
amendment_id: MDG-555547961-2010-temporary_protection-001
iso3: MDG
wdpaid: 555547961
wdpa_name: Mandrozo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-714.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555547961-2013-temporary_protection-001.yml
amendment_id: MDG-555547961-2013-temporary_protection-001
iso3: MDG
wdpaid: 555547961
wdpa_name: Mandrozo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-21 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-21 via 2015-714.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555547961-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555547961-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555547961
wdpa_name: Mandrozo
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Mandrozo. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555547961-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555547961-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555548847-2008-temporary_protection-001.yml
amendment_id: MDG-555548847-2008-temporary_protection-001
iso3: MDG
wdpaid: 555548847
wdpa_name: Ankivonjy
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-722.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555548847-2010-temporary_protection-001.yml
amendment_id: MDG-555548847-2010-temporary_protection-001
iso3: MDG
wdpaid: 555548847
wdpa_name: Ankivonjy
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-722.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555548847-2013-temporary_protection-001.yml
amendment_id: MDG-555548847-2013-temporary_protection-001
iso3: MDG
wdpaid: 555548847
wdpa_name: Ankivonjy
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-21 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-21 via 2015-722.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555548848-2008-temporary_protection-001.yml
amendment_id: MDG-555548848-2008-temporary_protection-001
iso3: MDG
wdpaid: 555548848
wdpa_name: Ankarea
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-721.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555548848-2010-temporary_protection-001.yml
amendment_id: MDG-555548848-2010-temporary_protection-001
iso3: MDG
wdpaid: 555548848
wdpa_name: Ankarea
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-721.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555548848-2013-temporary_protection-001.yml
amendment_id: MDG-555548848-2013-temporary_protection-001
iso3: MDG
wdpaid: 555548848
wdpa_name: Ankarea
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-21 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-21 via 2015-721.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555548868-2008-temporary_protection-001.yml
amendment_id: MDG-555548868-2008-temporary_protection-001
iso3: MDG
wdpaid: 555548868
wdpa_name: Ambodivahibe
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-04-28 via 2015-753.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555548868-2010-temporary_protection-001.yml
amendment_id: MDG-555548868-2010-temporary_protection-001
iso3: MDG
wdpaid: 555548868
wdpa_name: Ambodivahibe
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-04-28 via 2015-753.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555548868-2013-temporary_protection-001.yml
amendment_id: MDG-555548868-2013-temporary_protection-001
iso3: MDG
wdpaid: 555548868
wdpa_name: Ambodivahibe
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2017-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2017-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2017-04-28 via 2015-753.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555549449-2008-temporary_protection-001.yml
amendment_id: MDG-555549449-2008-temporary_protection-001
iso3: MDG
wdpaid: 555549449
wdpa_name: Vohidefo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555549449-2010-temporary_protection-001.yml
amendment_id: MDG-555549449-2010-temporary_protection-001
iso3: MDG
wdpaid: 555549449
wdpa_name: Vohidefo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555549449-2013-temporary_protection-001.yml
amendment_id: MDG-555549449-2013-temporary_protection-001
iso3: MDG
wdpaid: 555549449
wdpa_name: Vohidefo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2017-05-05'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2017-05-05 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555549450-2008-temporary_protection-001.yml
amendment_id: MDG-555549450-2008-temporary_protection-001
iso3: MDG
wdpaid: 555549450
wdpa_name: Angavo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555549450-2010-temporary_protection-001.yml
amendment_id: MDG-555549450-2010-temporary_protection-001
iso3: MDG
wdpaid: 555549450
wdpa_name: Angavo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555549450-2013-temporary_protection-001.yml
amendment_id: MDG-555549450-2013-temporary_protection-001
iso3: MDG
wdpaid: 555549450
wdpa_name: Angavo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2018-09-24'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2018-09-24 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555549450-2018-temporary_protection-001.yml
amendment_id: MDG-555549450-2018-temporary_protection-001
iso3: MDG
wdpaid: 555549450
wdpa_name: Angavo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2018-09-24'
legal_instrument:
source: manual
type: arrêté
number: 23548/2018
date: '2018-09-24'
id: ~
url: ~
temporal_description: Protection temporaire depuis le 2018-09-24 selon arrêté n. 23548/2018
du 2018-09-24.
notes: Temporary protection via Arrêté 23548/2018 (2018-09-24). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2018'Fichier : MDG-555549451-2008-temporary_protection-001.yml
amendment_id: MDG-555549451-2008-temporary_protection-001
iso3: MDG
wdpaid: 555549451
wdpa_name: Behara-Tranomaro
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555549451-2010-temporary_protection-001.yml
amendment_id: MDG-555549451-2010-temporary_protection-001
iso3: MDG
wdpaid: 555549451
wdpa_name: Behara-Tranomaro
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555549451-2013-temporary_protection-001.yml
amendment_id: MDG-555549451-2013-temporary_protection-001
iso3: MDG
wdpaid: 555549451
wdpa_name: Behara-Tranomaro
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2017-05-05'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2017-05-05 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555549452-2008-temporary_protection-001.yml
amendment_id: MDG-555549452-2008-temporary_protection-001
iso3: MDG
wdpaid: 555549452
wdpa_name: Sud-Ouest Ifotaky
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555549452-2010-temporary_protection-001.yml
amendment_id: MDG-555549452-2010-temporary_protection-001
iso3: MDG
wdpaid: 555549452
wdpa_name: Sud-Ouest Ifotaky
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555549452-2013-temporary_protection-001.yml
amendment_id: MDG-555549452-2013-temporary_protection-001
iso3: MDG
wdpaid: 555549452
wdpa_name: Sud-Ouest Ifotaky
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2017-05-05'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2017-05-05 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555549460-2008-temporary_protection-001.yml
amendment_id: MDG-555549460-2008-temporary_protection-001
iso3: MDG
wdpaid: 555549460
wdpa_name: Ranobe PK 32
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-12-02'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 21482/2008
date: '2008-12-02'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-12-02 au 2010-12-20 selon arrêté
n. 21482/2008 du 2008-12-02.
notes: Temporary protection via Arrêté 21482/2008 (2008-12-02). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555549460-2010-temporary_protection-001.yml
amendment_id: MDG-555549460-2010-temporary_protection-001
iso3: MDG
wdpaid: 555549460
wdpa_name: Ranobe PK 32
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555549460-2013-temporary_protection-001.yml
amendment_id: MDG-555549460-2013-temporary_protection-001
iso3: MDG
wdpaid: 555549460
wdpa_name: Ranobe PK 32
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2017-05-05'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2017-05-05 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555624855-2014-temporary_protection-001.yml
amendment_id: MDG-555624855-2014-temporary_protection-001
iso3: MDG
wdpaid: 555624855
wdpa_name: Iles Barren
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2014-10-10'
legal_instrument:
source: manual
type: arrêté
number: 30441/2014
date: '2014-10-10'
id: ~
url: ~
temporal_description: Protection temporaire depuis le 2014-10-10 selon arrêté n. 30441/2014
du 2014-10-10.
notes: Temporary protection via Arrêté 30441/2014 (2014-10-10). Legal designation
with binding protections pending permanent status via décret. Still in temporary
protection status.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2014'Fichier : MDG-555697872-2008-temporary_protection-001.yml
amendment_id: MDG-555697872-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697872
wdpa_name: Site Bioculturel d'Antrema
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-712.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697872-2010-temporary_protection-001.yml
amendment_id: MDG-555697872-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697872
wdpa_name: Site Bioculturel d'Antrema
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-712.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697872-2013-temporary_protection-001.yml
amendment_id: MDG-555697872-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697872
wdpa_name: Site Bioculturel d'Antrema
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-21 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-21 via 2015-712.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697872-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697872-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697872
wdpa_name: Site Bioculturel d'Antrema
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Antrema. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697872-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697872-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-555697873-2007-temporary_protection-001.yml
amendment_id: MDG-555697873-2007-temporary_protection-001
iso3: MDG
wdpaid: 555697873
wdpa_name: Lac Alaotra
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2007-01-08'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 381/2007
date: '2007-01-08'
id: ~
url: ~
temporal_description: Protection temporaire du 2007-01-08 au 2015-04-28 selon arrêté
n. 381/2007 du 2007-01-08.
notes: Temporary protection via Arrêté 381/2007 (2007-01-08). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-756.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2007'Fichier : MDG-555697875-2008-temporary_protection-001.yml
amendment_id: MDG-555697875-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697875
wdpa_name: Complexe Lac Forêt Ambondrobe
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Still in temporary
protection status.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697875-2010-temporary_protection-001.yml
amendment_id: MDG-555697875-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697875
wdpa_name: Complexe Lac Forêt Ambondrobe
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Still in temporary
protection status.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697875-2013-temporary_protection-001.yml
amendment_id: MDG-555697875-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697875
wdpa_name: Complexe Lac Forêt Ambondrobe
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire depuis le 2013-05-06 selon arrêté n. 9874/2013
du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Still in temporary protection
status.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697877-2008-temporary_protection-001.yml
amendment_id: MDG-555697877-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697877
wdpa_name: Complexe Zones Humides Mangoky Ihotry
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-12-02'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 21477/2008
date: '2008-12-02'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-12-02 au 2015-04-21 selon arrêté
n. 21477/2008 du 2008-12-02.
notes: Temporary protection via Arrêté 21477/2008 (2008-12-02). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-719.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697877-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697877-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697877
wdpa_name: Complexe Zones Humides Mangoky Ihotry
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Mangoky Ihotry.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697877-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697877-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555697878-2008-temporary_protection-001.yml
amendment_id: MDG-555697878-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697878
wdpa_name: Forêt Naturelle de Tsitongambarika
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-12-02'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 21480/2008
date: '2008-12-02'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-12-02 au 2015-04-21 selon arrêté
n. 21480/2008 du 2008-12-02.
notes: Temporary protection via Arrêté 21480/2008 (2008-12-02). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-720.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697879-2008-temporary_protection-001.yml
amendment_id: MDG-555697879-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697879
wdpa_name: Beanka
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-727.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697879-2010-temporary_protection-001.yml
amendment_id: MDG-555697879-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697879
wdpa_name: Beanka
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-727.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697879-2013-temporary_protection-001.yml
amendment_id: MDG-555697879-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697879
wdpa_name: Beanka
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-21 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-21 via 2015-727.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697879-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697879-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697879
wdpa_name: Beanka
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Beanka. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697879-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697879-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555697880-2008-temporary_protection-001.yml
amendment_id: MDG-555697880-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697880
wdpa_name: Sahafina
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-728.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697880-2010-temporary_protection-001.yml
amendment_id: MDG-555697880-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697880
wdpa_name: Sahafina
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-728.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697880-2013-temporary_protection-001.yml
amendment_id: MDG-555697880-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697880
wdpa_name: Sahafina
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-21 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-21 via 2015-728.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697880-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697880-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697880
wdpa_name: Sahafina
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Sahafina. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697880-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697880-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-555697881-2006-temporary_protection-001.yml
amendment_id: MDG-555697881-2006-temporary_protection-001
iso3: MDG
wdpaid: 555697881
wdpa_name: Corridor Forestier Ambositra Vondrozo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2006-09-15'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 16071/2006
date: '2006-09-15'
id: ~
url: ~
temporal_description: Protection temporaire du 2006-09-15 au 2015-04-28 selon arrêté
n. 16071/2006 du 2006-09-15.
notes: Temporary protection via Arrêté 16071/2006 (2006-09-15). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-755.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2006'Fichier : MDG-555697882-2008-temporary_protection-001.yml
amendment_id: MDG-555697882-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697882
wdpa_name: Massif d'Itremo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 1951-04-21 via 2015-713.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697882-2010-temporary_protection-001.yml
amendment_id: MDG-555697882-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697882
wdpa_name: Massif d'Itremo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 1951-04-21 via 2015-713.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697882-2013-temporary_protection-001.yml
amendment_id: MDG-555697882-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697882
wdpa_name: Massif d'Itremo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire depuis le 2013-05-06 selon arrêté n. 9874/2013
du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 1951-04-21 via 2015-713.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697883-2008-temporary_protection-001.yml
amendment_id: MDG-555697883-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697883
wdpa_name: Maromizaha
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-783.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697883-2010-temporary_protection-001.yml
amendment_id: MDG-555697883-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697883
wdpa_name: Maromizaha
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-783.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697883-2013-temporary_protection-001.yml
amendment_id: MDG-555697883-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697883
wdpa_name: Maromizaha
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-783.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697884-2008-temporary_protection-001.yml
amendment_id: MDG-555697884-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697884
wdpa_name: Ambatofotsy
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-724.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697884-2010-temporary_protection-001.yml
amendment_id: MDG-555697884-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697884
wdpa_name: Ambatofotsy
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-724.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697884-2013-temporary_protection-001.yml
amendment_id: MDG-555697884-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697884
wdpa_name: Ambatofotsy
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-21 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-21 via 2015-724.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697884-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697884-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697884
wdpa_name: Ambatofotsy
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Ambatofotsy. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697884-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697884-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-555697885-2008-temporary_protection-001.yml
amendment_id: MDG-555697885-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697885
wdpa_name: Mangabe-Ranomena-Sahasarotra
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-725.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697885-2010-temporary_protection-001.yml
amendment_id: MDG-555697885-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697885
wdpa_name: Mangabe-Ranomena-Sahasarotra
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-725.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697885-2013-temporary_protection-001.yml
amendment_id: MDG-555697885-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697885
wdpa_name: Mangabe-Ranomena-Sahasarotra
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-21 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-21 via 2015-725.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697886-2008-temporary_protection-001.yml
amendment_id: MDG-555697886-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697886
wdpa_name: Ampotaka Ankorabe
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-726.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697886-2010-temporary_protection-001.yml
amendment_id: MDG-555697886-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697886
wdpa_name: Ampotaka Ankorabe
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-726.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697886-2013-temporary_protection-001.yml
amendment_id: MDG-555697886-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697886
wdpa_name: Ampotaka Ankorabe
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-21 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-21 via 2015-726.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697886-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697886-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697886
wdpa_name: Ampotaka Ankorabe
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Ampotaka Ankorabe.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697886-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697886-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-555697887-2008-temporary_protection-001.yml
amendment_id: MDG-555697887-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697887
wdpa_name: Mahialambo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-748.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697887-2010-temporary_protection-001.yml
amendment_id: MDG-555697887-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697887
wdpa_name: Mahialambo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-748.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697887-2013-temporary_protection-001.yml
amendment_id: MDG-555697887-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697887
wdpa_name: Mahialambo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-748.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697888-2008-temporary_protection-001.yml
amendment_id: MDG-555697888-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697888
wdpa_name: Ampanganandehibe-Behasina
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-749.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697888-2010-temporary_protection-001.yml
amendment_id: MDG-555697888-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697888
wdpa_name: Ampanganandehibe-Behasina
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-749.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697888-2013-temporary_protection-001.yml
amendment_id: MDG-555697888-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697888
wdpa_name: Ampanganandehibe-Behasina
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-749.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697890-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697890-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697890
wdpa_name: Analabe-Betanatanana
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Analabe Betanantanana.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697890-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697890-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-555697891-2008-temporary_protection-001.yml
amendment_id: MDG-555697891-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697891
wdpa_name: Analavelona
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-766.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697891-2010-temporary_protection-001.yml
amendment_id: MDG-555697891-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697891
wdpa_name: Analavelona
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-766.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697891-2013-temporary_protection-001.yml
amendment_id: MDG-555697891-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697891
wdpa_name: Analavelona
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-766.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697891-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697891-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697891
wdpa_name: Analavelona
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Analavelona. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697891-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697891-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-555697892-2008-temporary_protection-001.yml
amendment_id: MDG-555697892-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697892
wdpa_name: Agnalazaha
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-767.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697892-2010-temporary_protection-001.yml
amendment_id: MDG-555697892-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697892
wdpa_name: Agnalazaha
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-767.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697892-2013-temporary_protection-001.yml
amendment_id: MDG-555697892-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697892
wdpa_name: Agnalazaha
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-767.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697892-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697892-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697892
wdpa_name: Agnalazaha
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Agnalazaha. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697892-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697892-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555697893-2008-temporary_protection-001.yml
amendment_id: MDG-555697893-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697893
wdpa_name: Makirovana Tsihomanaomby
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-768.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697893-2010-temporary_protection-001.yml
amendment_id: MDG-555697893-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697893
wdpa_name: Makirovana Tsihomanaomby
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-768.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697893-2013-temporary_protection-001.yml
amendment_id: MDG-555697893-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697893
wdpa_name: Makirovana Tsihomanaomby
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-768.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697893-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697893-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697893
wdpa_name: Makirovana Tsihomanaomby
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Makirovana Tsihomanaomby.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697893-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697893-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555697894-2008-temporary_protection-001.yml
amendment_id: MDG-555697894-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697894
wdpa_name: Ampasindava
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-769.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697894-2010-temporary_protection-001.yml
amendment_id: MDG-555697894-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697894
wdpa_name: Ampasindava
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-769.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697894-2013-temporary_protection-001.yml
amendment_id: MDG-555697894-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697894
wdpa_name: Ampasindava
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-769.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697895-2008-temporary_protection-001.yml
amendment_id: MDG-555697895-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697895
wdpa_name: Galoko Kalobinono
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-770.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697895-2010-temporary_protection-001.yml
amendment_id: MDG-555697895-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697895
wdpa_name: Galoko Kalobinono
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-770.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697895-2013-temporary_protection-001.yml
amendment_id: MDG-555697895-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697895
wdpa_name: Galoko Kalobinono
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-770.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697896-2008-temporary_protection-001.yml
amendment_id: MDG-555697896-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697896
wdpa_name: Oronjia
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2018-04-28 via 2015-771.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697896-2010-temporary_protection-001.yml
amendment_id: MDG-555697896-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697896
wdpa_name: Oronjia
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2018-04-28 via 2015-771.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697896-2013-temporary_protection-001.yml
amendment_id: MDG-555697896-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697896
wdpa_name: Oronjia
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2018-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2018-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2018-04-28 via 2015-771.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697896-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697896-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697896
wdpa_name: Oronjia
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Oronjia. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697896-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697896-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-555697897-2008-temporary_protection-001.yml
amendment_id: MDG-555697897-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697897
wdpa_name: Massif d'Ibity
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-12-02'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 21479/2008
date: '2008-12-02'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-12-02 au 2015-04-28 selon arrêté
n. 21479/2008 du 2008-12-02.
notes: Temporary protection via Arrêté 21479/2008 (2008-12-02). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-772.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697897-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697897-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697897
wdpa_name: Massif d'Ibity
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Ibity. This represents
current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697897-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697897-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-555697898-2008-temporary_protection-001.yml
amendment_id: MDG-555697898-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697898
wdpa_name: Réserve spéciale Pointe à Larrée
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-773.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697898-2010-temporary_protection-001.yml
amendment_id: MDG-555697898-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697898
wdpa_name: Réserve spéciale Pointe à Larrée
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-773.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697898-2013-temporary_protection-001.yml
amendment_id: MDG-555697898-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697898
wdpa_name: Réserve spéciale Pointe à Larrée
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-773.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697898-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697898-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697898
wdpa_name: Réserve spéciale Pointe à Larrée
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Pointe a Larree.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697898-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697898-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555697899-2008-temporary_protection-001.yml
amendment_id: MDG-555697899-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697899
wdpa_name: Vohidava Betsimalao
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-774.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697899-2010-temporary_protection-001.yml
amendment_id: MDG-555697899-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697899
wdpa_name: Vohidava Betsimalao
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-774.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697899-2013-temporary_protection-001.yml
amendment_id: MDG-555697899-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697899
wdpa_name: Vohidava Betsimalao
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-774.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697899-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697899-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697899
wdpa_name: Vohidava Betsimalao
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Vohidava Betsimalaho.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697899-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697899-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555697900-2008-temporary_protection-001.yml
amendment_id: MDG-555697900-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697900
wdpa_name: Ankarabolava
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-793.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697900-2010-temporary_protection-001.yml
amendment_id: MDG-555697900-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697900
wdpa_name: Ankarabolava
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-793.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697900-2013-temporary_protection-001.yml
amendment_id: MDG-555697900-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697900
wdpa_name: Ankarabolava
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-793.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697901-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697901-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697901
wdpa_name: Agnakatrika
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Ankarabolava Agnakatrika.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697901-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697901-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555697902-2008-temporary_protection-001.yml
amendment_id: MDG-555697902-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697902
wdpa_name: Forêt Naturel de Petriky
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-777.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697902-2010-temporary_protection-001.yml
amendment_id: MDG-555697902-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697902
wdpa_name: Forêt Naturel de Petriky
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-777.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697902-2013-temporary_protection-001.yml
amendment_id: MDG-555697902-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697902
wdpa_name: Forêt Naturel de Petriky
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-777.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697905-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697905-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697905
wdpa_name: Mahimborondro
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Mahialambo. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697905-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697905-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555697906-2008-temporary_protection-001.yml
amendment_id: MDG-555697906-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697906
wdpa_name: Bemanevika
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Still in temporary
protection status.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697906-2010-temporary_protection-001.yml
amendment_id: MDG-555697906-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697906
wdpa_name: Bemanevika
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Still in temporary
protection status.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697906-2013-temporary_protection-001.yml
amendment_id: MDG-555697906-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697906
wdpa_name: Bemanevika
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire depuis le 2013-05-06 selon arrêté n. 9874/2013
du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Still in temporary protection
status.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697906-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697906-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697906
wdpa_name: Bemanevika
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Bemanevika. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697906-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697906-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555697907-2008-temporary_protection-001.yml
amendment_id: MDG-555697907-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697907
wdpa_name: COMATSA Nord
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Still in temporary
protection status.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697907-2010-temporary_protection-001.yml
amendment_id: MDG-555697907-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697907
wdpa_name: COMATSA Nord
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Still in temporary
protection status.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697907-2013-temporary_protection-001.yml
amendment_id: MDG-555697907-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697907
wdpa_name: COMATSA Nord
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire depuis le 2013-05-06 selon arrêté n. 9874/2013
du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Still in temporary protection
status.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697907-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697907-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697907
wdpa_name: COMATSA Nord
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: COMATSA Nord Sud.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697907-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697907-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555697908-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697908-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697908
wdpa_name: Loky Manambato
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Manambato. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697908-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697908-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555697909-2007-temporary_protection-001.yml
amendment_id: MDG-555697909-2007-temporary_protection-001
iso3: MDG
wdpaid: 555697909
wdpa_name: Allées des Baobabs
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2007-09-25'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 16231/2007
date: '2007-09-25'
id: ~
url: ~
temporal_description: Protection temporaire du 2007-09-25 au 2015-04-28 selon arrêté
n. 16231/2007 du 2007-09-25.
notes: Temporary protection via Arrêté 16231/2007 (2007-09-25). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-760.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2007'Fichier : MDG-555697909-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697909-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697909
wdpa_name: Allées des Baobabs
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Allée des Baobabs.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697909-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697909-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)
Fichier : MDG-555697910-2008-temporary_protection-001.yml
amendment_id: MDG-555697910-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697910
wdpa_name: Andrafiamena Andavakoera
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-761.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697910-2010-temporary_protection-001.yml
amendment_id: MDG-555697910-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697910
wdpa_name: Andrafiamena Andavakoera
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-761.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697910-2013-temporary_protection-001.yml
amendment_id: MDG-555697910-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697910
wdpa_name: Andrafiamena Andavakoera
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-761.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697910-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697910-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697910
wdpa_name: Andrafiamena Andavakoera
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Andrafiamena Andavakoera.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697910-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697910-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555697911-2013-temporary_protection-001.yml
amendment_id: MDG-555697911-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697911
wdpa_name: Manjakatompo Ankaratra
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-07-18'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 14983/2013
date: '2013-07-18'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-07-18 au 2015-04-21 selon arrêté
n. 14983/2013 du 2013-07-18.
notes: Temporary protection via Arrêté 14983/2013 (2013-07-18). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-711.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697912-2008-temporary_protection-001.yml
amendment_id: MDG-555697912-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697912
wdpa_name: Tsinjoriake
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-781.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697912-2010-temporary_protection-001.yml
amendment_id: MDG-555697912-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697912
wdpa_name: Tsinjoriake
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-28 via 2015-781.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697912-2013-temporary_protection-001.yml
amendment_id: MDG-555697912-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697912
wdpa_name: Tsinjoriake
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-28'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-28 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-28 via 2015-781.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697913-2008-temporary_protection-001.yml
amendment_id: MDG-555697913-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697913
wdpa_name: Ranobe Bay
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697913-2010-temporary_protection-001.yml
amendment_id: MDG-555697913-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697913
wdpa_name: Ranobe Bay
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697913-2013-temporary_protection-001.yml
amendment_id: MDG-555697913-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697913
wdpa_name: Ranobe Bay
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2017-05-05'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2017-05-05 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697914-2008-temporary_protection-001.yml
amendment_id: MDG-555697914-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697914
wdpa_name: Bombetoka Beloboka
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697914-2010-temporary_protection-001.yml
amendment_id: MDG-555697914-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697914
wdpa_name: Bombetoka Beloboka
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697914-2013-temporary_protection-001.yml
amendment_id: MDG-555697914-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697914
wdpa_name: Bombetoka Beloboka
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2017-05-05'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2017-05-05 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697915-2008-temporary_protection-001.yml
amendment_id: MDG-555697915-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697915
wdpa_name: Ambohidray
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697915-2010-temporary_protection-001.yml
amendment_id: MDG-555697915-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697915
wdpa_name: Ambohidray
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697915-2013-temporary_protection-001.yml
amendment_id: MDG-555697915-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697915
wdpa_name: Ambohidray
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2017-05-05'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2017-05-05 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697916-2008-temporary_protection-001.yml
amendment_id: MDG-555697916-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697916
wdpa_name: Ambararata Londa
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697916-2010-temporary_protection-001.yml
amendment_id: MDG-555697916-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697916
wdpa_name: Ambararata Londa
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697916-2013-temporary_protection-001.yml
amendment_id: MDG-555697916-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697916
wdpa_name: Ambararata Londa
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2017-05-05'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2017-05-05 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2017-05-05 via 2015-808.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697917-2008-temporary_protection-001.yml
amendment_id: MDG-555697917-2008-temporary_protection-001
iso3: MDG
wdpaid: 555697917
wdpa_name: Marolambo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-711.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555697917-2010-temporary_protection-001.yml
amendment_id: MDG-555697917-2010-temporary_protection-001
iso3: MDG
wdpaid: 555697917
wdpa_name: Marolambo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-711.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555697917-2013-temporary_protection-001.yml
amendment_id: MDG-555697917-2013-temporary_protection-001
iso3: MDG
wdpaid: 555697917
wdpa_name: Marolambo
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-21 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-21 via 2015-711.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555697917-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697917-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697917
wdpa_name: Marolambo
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Marolambo. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697917-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697917-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555697918-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697918-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697918
wdpa_name: Nosy Hara
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Nosy Hara. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697918-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697918-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555697919-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555697919-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555697919
wdpa_name: Nosy Tanihely
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Nosy Tanihely. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555697919-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555697919-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555785986-2008-temporary_protection-001.yml
amendment_id: MDG-555785986-2008-temporary_protection-001
iso3: MDG
wdpaid: 555785986
wdpa_name: Nosy Ve Androka
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2008-10-17'
valid_to: '2010-12-20'
legal_instrument:
source: manual
type: arrêté
number: 18633/2008
date: '2008-10-17'
id: ~
url: ~
temporal_description: Protection temporaire du 2008-10-17 au 2010-12-20 selon arrêté
n. 18633/2008 du 2008-10-17.
notes: Temporary protection via Arrêté 18633/2008 (2008-10-17). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-717.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2008'Fichier : MDG-555785986-2010-temporary_protection-001.yml
amendment_id: MDG-555785986-2010-temporary_protection-001
iso3: MDG
wdpaid: 555785986
wdpa_name: Nosy Ve Androka
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2013-05-06'
legal_instrument:
source: manual
type: arrêté
number: 52005/2010
date: '2010-12-20'
id: ~
url: ~
temporal_description: Protection temporaire du 2010-12-20 au 2013-05-06 selon arrêté
n. 52005/2010 du 2010-12-20.
notes: Temporary protection via Arrêté 52005/2010 (2010-12-20). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2015-04-21 via 2015-717.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2010'Fichier : MDG-555785986-2013-temporary_protection-001.yml
amendment_id: MDG-555785986-2013-temporary_protection-001
iso3: MDG
wdpaid: 555785986
wdpa_name: Nosy Ve Androka
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2013-05-06'
valid_to: '2015-04-21'
legal_instrument:
source: manual
type: arrêté
number: 9874/2013
date: '2013-05-06'
id: ~
url: ~
temporal_description: Protection temporaire du 2013-05-06 au 2015-04-21 selon arrêté
n. 9874/2013 du 2013-05-06.
notes: Temporary protection via Arrêté 9874/2013 (2013-05-06). Legal designation with
binding protections pending permanent status via décret. Permanent designation obtained
on 2015-04-21 via 2015-717.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2013'Fichier : MDG-555785986-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555785986-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555785986
wdpa_name: Nosy Ve Androka
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Nosy ve Androka.
This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555785986-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555785986-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-555790168-2020-temporary_protection-001.yml
amendment_id: MDG-555790168-2020-temporary_protection-001
iso3: MDG
wdpaid: 555790168
wdpa_name: Tsinjoarivo Ambalaomby
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2020-01-29'
legal_instrument:
source: manual
type: arrêté
number: 2644/2020
date: '2020-01-29'
id: ~
url: ~
temporal_description: Protection temporaire depuis le 2020-01-29 selon arrêté n. 2644/2020
du 2020-01-29.
notes: Temporary protection via Arrêté 2644/2020 (2020-01-29). Legal designation with
binding protections pending permanent status via décret. Still in temporary protection
status.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2020'Fichier : MDG-555790169-2020-temporary_protection-001.yml
amendment_id: MDG-555790169-2020-temporary_protection-001
iso3: MDG
wdpaid: 555790169
wdpa_name: Ivohiboro
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2020-01-29'
legal_instrument:
source: manual
type: arrêté
number: 2645/2020
date: '2020-01-29'
id: ~
url: ~
temporal_description: Protection temporaire depuis le 2020-01-29 selon arrêté n. 2645/2020
du 2020-01-29.
notes: Temporary protection via Arrêté 2645/2020 (2020-01-29). Legal designation with
binding protections pending permanent status via décret. Still in temporary protection
status.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2020'Fichier : MDG-555790175-2017-temporary_protection-001.yml
amendment_id: MDG-555790175-2017-temporary_protection-001
iso3: MDG
wdpaid: 555790175
wdpa_name: Anjajavy
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2017-07-28'
valid_to: '2018-04-17'
legal_instrument:
source: manual
type: arrêté
number: 18176/2017
date: '2017-07-28'
id: ~
url: ~
temporal_description: Protection temporaire du 2017-07-28 au 2018-04-17 selon arrêté
n. 18176/2017 du 2017-07-28.
notes: Temporary protection via Arrêté 18176/2017 (2017-07-28). Legal designation
with binding protections pending permanent status via décret. Permanent designation
obtained on 2018-04-17 via 2018-367.
attributes:
DESIG: Protection Temporaire
DESIG_ENG: Temporary Protection
STATUS: Designated
STATUS_YR: '2017'Fichier : MDG-555790237-NODATE-secondary_zoning-001.yml
amendment_id: MDG-555790237-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 555790237
wdpa_name: Analalava
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Analalava. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-555790237-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-555790237-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-6932-NODATE-secondary_zoning-001.yml
amendment_id: MDG-6932-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 6932
wdpa_name: Ambohitantely
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Ambohitantely. This
represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-6932-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-6932-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Fichier : MDG-900667-NODATE-secondary_zoning-001.yml
amendment_id: MDG-900667-NODATE-secondary_zoning-001
iso3: MDG
wdpaid: 900667
wdpa_name: Sahamalaza - Iles Radama
amendment_kind: spatial
amendment_type: secondary_zoning
legal_instrument:
source: CNLEGIS
type: décret
number: MEDD-2024
date: ~
id: ~
url: ~
temporal_description: Zonage secondaire selon décret n. MEDD-2024.
notes: 'Core zone (noyau dur) validated from MEDD subdivision data. Source: shapefile
transmitted to MEDD, analyzed in 06_subdivisions.qmd. PA label: Sahamalaza - Iles
Radama. This represents current management zoning without temporal validity.'
geometry_ref: geoms/MDG-900667-NODATE-secondary_zoning-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: MEDD_subdivisions_2024Géométrie associée : geoms/MDG-900667-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)
Vérifications de cohérence avant consolidation.
# Charger tous les amendements
all_amendments <- map_dfr(yaml_files, function(yaml_path) {
a <- yaml::read_yaml(yaml_path)
tibble(
amendment_id = a$amendment_id,
wdpaid = a$wdpaid,
amendment_kind = a$amendment_kind,
amendment_type = a$amendment_type,
valid_from = a$valid_from %||% NA_character_,
valid_to = a$valid_to %||% NA_character_,
geometry_ref = a$geometry_ref %||% NA_character_,
yaml_path = yaml_path
)
})
cat("### Vérifications\n\n")### Vérifications
# 1. Doublons d'amendment_id
duplicates <- all_amendments |>
count(amendment_id) |>
filter(n > 1)
if (nrow(duplicates) > 0) {
cat("⚠️ **ATTENTION : amendment_id dupliqués**\n\n")
print(kable(duplicates))
} else {
cat("✓ Pas de doublons d'amendment_id\n\n")
}✓ Pas de doublons d'amendment_id
# 2. Fichiers géométrie manquants
missing_geom <- all_amendments |>
filter(!is.na(geometry_ref)) |>
mutate(
geom_path = file.path(amendments_dir, geometry_ref),
exists = file.exists(geom_path)
) |>
filter(!exists)
if (nrow(missing_geom) > 0) {
cat("⚠️ **ATTENTION : Fichiers géométrie manquants**\n\n")
print(kable(missing_geom |> select(amendment_id, geometry_ref)))
} else {
cat("✓ Tous les fichiers géométrie existent\n\n")
}✓ Tous les fichiers géométrie existent
# 3. Chevauchements temporels par WDPAID et type
overlaps <- all_amendments |>
filter(!is.na(valid_from)) |>
mutate(
valid_from = as.Date(valid_from),
valid_to = if_else(
is.na(valid_to),
as.Date("2100-01-01"),
as.Date(valid_to)
)
) |>
group_by(wdpaid, amendment_type) |>
filter(n() > 1) |>
arrange(wdpaid, valid_from)
if (nrow(overlaps) > 0) {
cat(
"ℹ️ **Aires avec plusieurs amendements du même type (vérifier chevauchements)**\n\n"
)
print(kable(
overlaps |>
select(amendment_id, wdpaid, amendment_type, valid_from, valid_to)
))
} else {
cat("✓ Pas de chevauchements détectés\n\n")
}ℹ️ **Aires avec plusieurs amendements du même type (vérifier chevauchements)**
|amendment_id | wdpaid|amendment_type |valid_from |valid_to |
|:-------------------------------------------|---------:|:---------------------|:----------|:----------|
|MDG-1299-2002-boundary_modification-001 | 1299|boundary_modification |1927-12-31 |2002-08-07 |
|MDG-1299-2015-boundary_modification-001 | 1299|boundary_modification |2002-08-07 |2015-04-21 |
|MDG-2306-NODATE-correction-001 | 2306|correction |1927-12-31 |2100-01-01 |
|MDG-2306-NODATE-correction-002 | 2306|correction |2015-04-28 |2100-01-01 |
|MDG-352240-2006-temporary_protection-001 | 352240|temporary_protection |2006-09-15 |2008-10-17 |
|MDG-352240-2008-temporary_protection-001 | 352240|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-352240-2010-temporary_protection-001 | 352240|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-352240-2013-temporary_protection-001 | 352240|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-352242-2005-temporary_protection-001 | 352242|temporary_protection |2005-12-30 |2007-01-08 |
|MDG-352242-2007-temporary_protection-002 | 352242|temporary_protection |2007-01-08 |2007-01-08 |
|MDG-352242-2007-temporary_protection-001 | 352242|temporary_protection |2007-08-20 |2015-04-28 |
|MDG-352243-2006-temporary_protection-001 | 352243|temporary_protection |2006-03-15 |2007-08-20 |
|MDG-352243-2007-temporary_protection-001 | 352243|temporary_protection |2007-08-20 |2008-10-17 |
|MDG-352243-2008-temporary_protection-001 | 352243|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-352243-2010-temporary_protection-001 | 352243|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-352243-2013-temporary_protection-001 | 352243|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-352247-2006-temporary_protection-001 | 352247|temporary_protection |2006-03-15 |2007-08-20 |
|MDG-352247-2007-temporary_protection-001 | 352247|temporary_protection |2007-08-20 |2015-04-28 |
|MDG-352249-2005-temporary_protection-001 | 352249|temporary_protection |2005-12-30 |2007-01-08 |
|MDG-352249-2007-temporary_protection-001 | 352249|temporary_protection |2007-01-08 |2012-06-19 |
|MDG-352250-2006-temporary_protection-001 | 352250|temporary_protection |2006-05-15 |2007-08-20 |
|MDG-352250-2007-temporary_protection-001 | 352250|temporary_protection |2007-08-20 |2015-04-28 |
|MDG-352255-2006-temporary_protection-001 | 352255|temporary_protection |2006-05-15 |2007-08-20 |
|MDG-352255-2007-temporary_protection-001 | 352255|temporary_protection |2007-08-20 |2008-10-17 |
|MDG-352255-2008-temporary_protection-001 | 352255|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-352255-2010-temporary_protection-001 | 352255|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-352255-2013-temporary_protection-001 | 352255|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-352256-2005-temporary_protection-001 | 352256|temporary_protection |2005-12-30 |2007-01-08 |
|MDG-352256-2007-temporary_protection-001 | 352256|temporary_protection |2007-01-08 |2015-04-28 |
|MDG-354011-2007-temporary_protection-001 | 354011|temporary_protection |2007-08-20 |2008-10-17 |
|MDG-354011-2008-temporary_protection-001 | 354011|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-354011-2010-temporary_protection-001 | 354011|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-354011-2013-temporary_protection-001 | 354011|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-354013-1997-boundary_modification-001 | 354013|boundary_modification |1927-12-31 |1997-08-07 |
|MDG-354013-1997-status_change-001 | 354013|status_change |1927-12-31 |1997-08-07 |
|MDG-354013-2015-boundary_modification-001 | 354013|boundary_modification |1997-08-07 |2015-04-28 |
|MDG-354013-2015-status_change-001 | 354013|status_change |1997-08-07 |2015-04-21 |
|MDG-555512161-2008-temporary_protection-001 | 555512161|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555512161-2010-temporary_protection-001 | 555512161|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555512161-2013-temporary_protection-001 | 555512161|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-555547961-2008-temporary_protection-001 | 555547961|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555547961-2010-temporary_protection-001 | 555547961|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555547961-2013-temporary_protection-001 | 555547961|temporary_protection |2013-05-06 |2015-04-21 |
|MDG-555548847-2008-temporary_protection-001 | 555548847|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555548847-2010-temporary_protection-001 | 555548847|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555548847-2013-temporary_protection-001 | 555548847|temporary_protection |2013-05-06 |2015-04-21 |
|MDG-555548848-2008-temporary_protection-001 | 555548848|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555548848-2010-temporary_protection-001 | 555548848|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555548848-2013-temporary_protection-001 | 555548848|temporary_protection |2013-05-06 |2015-04-21 |
|MDG-555548868-2008-temporary_protection-001 | 555548868|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555548868-2010-temporary_protection-001 | 555548868|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555548868-2013-temporary_protection-001 | 555548868|temporary_protection |2013-05-06 |2017-04-28 |
|MDG-555549449-2008-temporary_protection-001 | 555549449|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555549449-2010-temporary_protection-001 | 555549449|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555549449-2013-temporary_protection-001 | 555549449|temporary_protection |2013-05-06 |2017-05-05 |
|MDG-555549450-2008-temporary_protection-001 | 555549450|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555549450-2010-temporary_protection-001 | 555549450|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555549450-2013-temporary_protection-001 | 555549450|temporary_protection |2013-05-06 |2018-09-24 |
|MDG-555549450-2018-temporary_protection-001 | 555549450|temporary_protection |2018-09-24 |2100-01-01 |
|MDG-555549451-2008-temporary_protection-001 | 555549451|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555549451-2010-temporary_protection-001 | 555549451|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555549451-2013-temporary_protection-001 | 555549451|temporary_protection |2013-05-06 |2017-05-05 |
|MDG-555549452-2008-temporary_protection-001 | 555549452|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555549452-2010-temporary_protection-001 | 555549452|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555549452-2013-temporary_protection-001 | 555549452|temporary_protection |2013-05-06 |2017-05-05 |
|MDG-555549460-2008-temporary_protection-001 | 555549460|temporary_protection |2008-12-02 |2010-12-20 |
|MDG-555549460-2010-temporary_protection-001 | 555549460|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555549460-2013-temporary_protection-001 | 555549460|temporary_protection |2013-05-06 |2017-05-05 |
|MDG-555697872-2008-temporary_protection-001 | 555697872|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697872-2010-temporary_protection-001 | 555697872|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697872-2013-temporary_protection-001 | 555697872|temporary_protection |2013-05-06 |2015-04-21 |
|MDG-555697875-2008-temporary_protection-001 | 555697875|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697875-2010-temporary_protection-001 | 555697875|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697875-2013-temporary_protection-001 | 555697875|temporary_protection |2013-05-06 |2100-01-01 |
|MDG-555697879-2008-temporary_protection-001 | 555697879|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697879-2010-temporary_protection-001 | 555697879|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697879-2013-temporary_protection-001 | 555697879|temporary_protection |2013-05-06 |2015-04-21 |
|MDG-555697880-2008-temporary_protection-001 | 555697880|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697880-2010-temporary_protection-001 | 555697880|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697880-2013-temporary_protection-001 | 555697880|temporary_protection |2013-05-06 |2015-04-21 |
|MDG-555697882-2008-temporary_protection-001 | 555697882|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697882-2010-temporary_protection-001 | 555697882|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697882-2013-temporary_protection-001 | 555697882|temporary_protection |2013-05-06 |2100-01-01 |
|MDG-555697883-2008-temporary_protection-001 | 555697883|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697883-2010-temporary_protection-001 | 555697883|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697883-2013-temporary_protection-001 | 555697883|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-555697884-2008-temporary_protection-001 | 555697884|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697884-2010-temporary_protection-001 | 555697884|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697884-2013-temporary_protection-001 | 555697884|temporary_protection |2013-05-06 |2015-04-21 |
|MDG-555697885-2008-temporary_protection-001 | 555697885|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697885-2010-temporary_protection-001 | 555697885|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697885-2013-temporary_protection-001 | 555697885|temporary_protection |2013-05-06 |2015-04-21 |
|MDG-555697886-2008-temporary_protection-001 | 555697886|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697886-2010-temporary_protection-001 | 555697886|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697886-2013-temporary_protection-001 | 555697886|temporary_protection |2013-05-06 |2015-04-21 |
|MDG-555697887-2008-temporary_protection-001 | 555697887|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697887-2010-temporary_protection-001 | 555697887|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697887-2013-temporary_protection-001 | 555697887|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-555697888-2008-temporary_protection-001 | 555697888|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697888-2010-temporary_protection-001 | 555697888|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697888-2013-temporary_protection-001 | 555697888|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-555697891-2008-temporary_protection-001 | 555697891|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697891-2010-temporary_protection-001 | 555697891|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697891-2013-temporary_protection-001 | 555697891|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-555697892-2008-temporary_protection-001 | 555697892|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697892-2010-temporary_protection-001 | 555697892|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697892-2013-temporary_protection-001 | 555697892|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-555697893-2008-temporary_protection-001 | 555697893|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697893-2010-temporary_protection-001 | 555697893|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697893-2013-temporary_protection-001 | 555697893|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-555697894-2008-temporary_protection-001 | 555697894|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697894-2010-temporary_protection-001 | 555697894|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697894-2013-temporary_protection-001 | 555697894|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-555697895-2008-temporary_protection-001 | 555697895|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697895-2010-temporary_protection-001 | 555697895|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697895-2013-temporary_protection-001 | 555697895|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-555697896-2008-temporary_protection-001 | 555697896|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697896-2010-temporary_protection-001 | 555697896|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697896-2013-temporary_protection-001 | 555697896|temporary_protection |2013-05-06 |2018-04-28 |
|MDG-555697898-2008-temporary_protection-001 | 555697898|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697898-2010-temporary_protection-001 | 555697898|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697898-2013-temporary_protection-001 | 555697898|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-555697899-2008-temporary_protection-001 | 555697899|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697899-2010-temporary_protection-001 | 555697899|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697899-2013-temporary_protection-001 | 555697899|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-555697900-2008-temporary_protection-001 | 555697900|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697900-2010-temporary_protection-001 | 555697900|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697900-2013-temporary_protection-001 | 555697900|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-555697902-2008-temporary_protection-001 | 555697902|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697902-2010-temporary_protection-001 | 555697902|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697902-2013-temporary_protection-001 | 555697902|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-555697906-2008-temporary_protection-001 | 555697906|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697906-2010-temporary_protection-001 | 555697906|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697906-2013-temporary_protection-001 | 555697906|temporary_protection |2013-05-06 |2100-01-01 |
|MDG-555697907-2008-temporary_protection-001 | 555697907|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697907-2010-temporary_protection-001 | 555697907|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697907-2013-temporary_protection-001 | 555697907|temporary_protection |2013-05-06 |2100-01-01 |
|MDG-555697910-2008-temporary_protection-001 | 555697910|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697910-2010-temporary_protection-001 | 555697910|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697910-2013-temporary_protection-001 | 555697910|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-555697912-2008-temporary_protection-001 | 555697912|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697912-2010-temporary_protection-001 | 555697912|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697912-2013-temporary_protection-001 | 555697912|temporary_protection |2013-05-06 |2015-04-28 |
|MDG-555697913-2008-temporary_protection-001 | 555697913|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697913-2010-temporary_protection-001 | 555697913|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697913-2013-temporary_protection-001 | 555697913|temporary_protection |2013-05-06 |2017-05-05 |
|MDG-555697914-2008-temporary_protection-001 | 555697914|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697914-2010-temporary_protection-001 | 555697914|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697914-2013-temporary_protection-001 | 555697914|temporary_protection |2013-05-06 |2017-05-05 |
|MDG-555697915-2008-temporary_protection-001 | 555697915|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697915-2010-temporary_protection-001 | 555697915|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697915-2013-temporary_protection-001 | 555697915|temporary_protection |2013-05-06 |2017-05-05 |
|MDG-555697916-2008-temporary_protection-001 | 555697916|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697916-2010-temporary_protection-001 | 555697916|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697916-2013-temporary_protection-001 | 555697916|temporary_protection |2013-05-06 |2017-05-05 |
|MDG-555697917-2008-temporary_protection-001 | 555697917|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555697917-2010-temporary_protection-001 | 555697917|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555697917-2013-temporary_protection-001 | 555697917|temporary_protection |2013-05-06 |2015-04-21 |
|MDG-555785986-2008-temporary_protection-001 | 555785986|temporary_protection |2008-10-17 |2010-12-20 |
|MDG-555785986-2010-temporary_protection-001 | 555785986|temporary_protection |2010-12-20 |2013-05-06 |
|MDG-555785986-2013-temporary_protection-001 | 555785986|temporary_protection |2013-05-06 |2015-04-21 |
# 4. Dates incohérentes (valid_to < valid_from)
invalid_dates <- all_amendments |>
filter(!is.na(valid_from), !is.na(valid_to)) |>
mutate(
valid_from = as.Date(valid_from),
valid_to = as.Date(valid_to)
) |>
filter(valid_to < valid_from)
if (nrow(invalid_dates) > 0) {
cat("⚠️ **ATTENTION : Dates incohérentes (fin < début)**\n\n")
print(kable(invalid_dates |> select(amendment_id, valid_from, valid_to)))
} else {
cat("✓ Pas de dates incohérentes\n\n")
}✓ Pas de dates incohérentes
pa_summary <- all_amendments |>
group_by(wdpaid) |>
summarise(
Nombre_amendements = n(),
Types = paste(unique(amendment_type), collapse = ", "),
Spatiaux = sum(amendment_kind == "spatial"),
Attributs = sum(amendment_kind == "attribute"),
.groups = "drop"
) |>
arrange(desc(Nombre_amendements))
datatable(
pa_summary,
options = list(pageLength = 10),
caption = "Nombre d'amendements par aire protégée"
)