8  Registre des amendements YAML

8.1 Vue d’ensemble

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.

Voir le code
library(tidyverse)
library(yaml)
library(sf)
library(DT)
library(knitr)

# Répertoire des amendements
amendments_dir <- "data/amendments"

8.2 Statistiques du registre

Voir le code
# 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 : 106 
Voir le code
# Lire tous les amendements pour statistiques
amendments_list <- map(yaml_files, ~ yaml::read_yaml(.x))

# 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")
Distribution des types d’amendements
Type d’amendement Nombre
boundary_modification 18
correction 16
secondary_zoning 17
status_change 13
temporary_protection 42
Voir le code
# 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")
Distribution par nature d’amendement
Nature Nombre
attribute 71
spatial 35

8.3 Liste interactive des amendements

Voir le code
# 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",
  options = list(
    pageLength = 25,
    autoWidth = TRUE,
    scrollX = TRUE
  ),
  caption = "Registre complet des amendements (filtrable par colonne)"
)

8.4 Contenu YAML brut

Affichage du contenu de chaque fichier YAML dans son format original.

Voir le code
# 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")
}

8.4.1 MDG-10634-2015-boundary_modification-001 - Beza Mahafaly (WDPAID: 10634)

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
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_2010

Géométrie associée : geoms/MDG-10634-2015-boundary_modification-001.geojson (1 feature(s), 7)


8.4.2 MDG-1299-2002-status_change-001 - Ankarafantsika (WDPAID: 1299)

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
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: Ia

8.4.3 MDG-1299-2015-boundary_modification-001 - Ankarafantsika (WDPAID: 1299)

Fichier : 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
notes: Périmètre 2002-2015 avant modification des limites (géométrie ANGAP_2002 retenue
  après vérification visuelle). Périmètres pré-2002 en cours de re-vectorisation.
geometry_ref: geoms/MDG-1299-2015-boundary_modification-001.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: ANGAP_2002

Géométrie associée : geoms/MDG-1299-2015-boundary_modification-001.geojson (1 feature(s), 4)


8.4.4 MDG-1299-NODATE-correction-001 - Ankarafantsika (WDPAID: 1299)

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
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'

8.4.5 MDG-166880-2008-temporary_protection-001 - Complexe Tsimembo Manambolomaty (WDPAID: 166880)

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: ~
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'

8.4.6 MDG-166880-NODATE-secondary_zoning-001 - Complexe Tsimembo Manambolomaty (WDPAID: 166880)

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: ~
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_2024

Géométrie associée : geoms/MDG-166880-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)


8.4.7 MDG-20272-NODATE-correction-001 - Befotaka Midongy (WDPAID: 20272)

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: CNLEGIS
  type: décret
  number: 97-1451
  date: '1997-12-18'
  id: '34596'
  url: https://cnlegis.gov.mg/page_num_find_direct/?97-1451
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 (Décret 97-1451),
  incorporating parts of the Soarano and Befotaka classified forests from 1953.
attributes:
  STATUS_YR: '1997'

8.4.8 MDG-2303-1997-status_change-001 - Andohahela (WDPAID: 2303)

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: ~
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: Ia

8.4.9 MDG-2303-2015-boundary_modification-001 - Andohahela (WDPAID: 2303)

Fichier : 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
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-2011

Géométrie associée : geoms/MDG-2303-2015-boundary_modification-001.geojson (1 feature(s), 7)


8.4.10 MDG-2303-NODATE-correction-001 - Andohahela (WDPAID: 2303)

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: ~
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'

8.4.11 MDG-2305-1998-status_change-001 - Marojejy (WDPAID: 2305)

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
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: Ia

8.4.12 MDG-2306-NODATE-correction-001 - Tsaratanana (WDPAID: 2306)

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: ~
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: Ia

8.4.13 MDG-2306-NODATE-correction-002 - Tsaratanana (WDPAID: 2306)

Fichier : 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: ~
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'

8.4.14 MDG-2307-2002-status_change-001 - Tsimanampesotse (WDPAID: 2307)

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
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: Ia

8.4.15 MDG-2307-2015-boundary_modification-001 - Tsimanampesotse (WDPAID: 2307)

Fichier : 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
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_2010

Géométrie associée : geoms/MDG-2307-2015-boundary_modification-001.geojson (1 feature(s), 4)


8.4.16 MDG-2307-NODATE-correction-001 - Tsimanampesotse (WDPAID: 2307)

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
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'

8.4.17 MDG-2308-1998-status_change-001 - Andringitra (WDPAID: 2308)

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
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: Ia

8.4.18 MDG-2309-2002-status_change-001 - Namoroka (WDPAID: 2309)

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
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: Ia

8.4.19 MDG-2309-NODATE-correction-001 - Namoroka (WDPAID: 2309)

Fichier : 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
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'

8.4.20 MDG-2310-NODATE-correction-001 - Betampona (WDPAID: 2310)

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: ~
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'

8.4.21 MDG-2311-2011-boundary_modification-001 - Lokobe (WDPAID: 2311)

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
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_2010

Géométrie associée : geoms/MDG-2311-2011-boundary_modification-001.geojson (1 feature(s), 4)


8.4.22 MDG-2311-2011-status_change-001 - Lokobe (WDPAID: 2311)

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
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: Ia

8.4.23 MDG-2314-2015-boundary_modification-001 - Montagne d’Ambre (WDPAID: 2314)

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
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_split

Géométrie associée : geoms/MDG-2314-2015-boundary_modification-001.geojson (1 feature(s), 4)


8.4.24 MDG-2314-2015-status_change-001 - Montagne d’Ambre (WDPAID: 2314)

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
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: II

8.4.25 MDG-303700-2015-boundary_modification-001 - Kirindy Mite (WDPAID: 303700)

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
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_2010

Géométrie associée : geoms/MDG-303700-2015-boundary_modification-001.geojson (1 feature(s), 4)


8.4.26 MDG-303702-2011-boundary_modification-001 - Bemaraha (WDPAID: 303702)

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
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_2010

Géométrie associée : geoms/MDG-303702-2011-boundary_modification-001.geojson (1 feature(s), 4)


8.4.27 MDG-303702-2011-status_change-001 - Bemaraha (WDPAID: 303702)

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
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: Ia

8.4.28 MDG-303702-NODATE-correction-001 - Bemaraha (WDPAID: 303702)

Fichier : 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
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'

8.4.29 MDG-352239-2007-temporary_protection-001 - Ambatotsirongorongo (WDPAID: 352239)

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: ~
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'

8.4.30 MDG-352240-2006-temporary_protection-001 - Analalava (WDPAID: 352240)

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: '2015-04-28'
legal_instrument:
  source: manual
  type: arrêté
  number: 16072/2006
  date: '2006-09-15'
  id: ~
  url: ~
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'

8.4.31 MDG-352242-2005-temporary_protection-001 - Complexe Anjozorobe Angavo (WDPAID: 352242)

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: '2015-04-28'
legal_instrument:
  source: manual
  type: arrêté
  number: 20023/2005
  date: '2005-12-30'
  id: ~
  url: ~
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'

8.4.32 MDG-352242-2007-temporary_protection-002 - Complexe Anjozorobe Angavo (WDPAID: 352242)

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: '2015-04-28'
legal_instrument:
  source: manual
  type: arrêté
  number: 380/2007
  date: '2007-01-08'
  id: ~
  url: ~
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'

8.4.33 MDG-352242-2007-temporary_protection-003 - Complexe Anjozorobe Angavo (WDPAID: 352242)

Fichier : MDG-352242-2007-temporary_protection-003.yml

amendment_id: MDG-352242-2007-temporary_protection-003
iso3: MDG
wdpaid: 352242
wdpa_name: Complexe Anjozorobe Angavo
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: 382/2007
  date: '2007-01-08'
  id: ~
  url: ~
notes: Temporary protection via Arrêté 382/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'

8.4.34 MDG-352242-2007-temporary_protection-004 - Complexe Anjozorobe Angavo (WDPAID: 352242)

Fichier : MDG-352242-2007-temporary_protection-004.yml

amendment_id: MDG-352242-2007-temporary_protection-004
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: ~
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'

8.4.35 MDG-352242-NODATE-secondary_zoning-001 - Complexe Anjozorobe Angavo (WDPAID: 352242)

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: ~
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_2024

Géométrie associée : geoms/MDG-352242-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)


8.4.36 MDG-352243-2006-temporary_protection-001 - Ankodida (WDPAID: 352243)

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: '2015-04-28'
legal_instrument:
  source: manual
  type: arrêté
  number: 3749/2006
  date: '2006-03-15'
  id: ~
  url: ~
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'

8.4.37 MDG-352243-2007-temporary_protection-002 - Ankodida (WDPAID: 352243)

Fichier : MDG-352243-2007-temporary_protection-002.yml

amendment_id: MDG-352243-2007-temporary_protection-002
iso3: MDG
wdpaid: 352243
wdpa_name: Ankodida
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: 13615/2007
  date: '2007-08-20'
  id: ~
  url: ~
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'

8.4.38 MDG-352244-2006-temporary_protection-001 - Corridor forestier Bongolava (WDPAID: 352244)

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'
legal_instrument:
  source: manual
  type: arrêté
  number: 16069/2006
  date: '2006-09-15'
  id: ~
  url: ~
notes: Temporary protection via Arrêté 16069/2006 (2006-09-15). 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: '2006'

8.4.39 MDG-352247-2006-temporary_protection-001 - Nord fotaky (WDPAID: 352247)

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: '2015-04-28'
legal_instrument:
  source: manual
  type: arrêté
  number: 3748/2006
  date: '2006-03-15'
  id: ~
  url: ~
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'

8.4.40 MDG-352247-2007-temporary_protection-002 - Nord fotaky (WDPAID: 352247)

Fichier : MDG-352247-2007-temporary_protection-002.yml

amendment_id: MDG-352247-2007-temporary_protection-002
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: ~
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'

8.4.41 MDG-352248-2007-temporary_protection-001 - Complexe Zones Humides Mahavavy Kinkony (WDPAID: 352248)

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: ~
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'

8.4.42 MDG-352249-2005-temporary_protection-001 - Makira (WDPAID: 352249)

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: '2012-06-19'
legal_instrument:
  source: manual
  type: arrêté
  number: 20022/2005
  date: '2005-12-30'
  id: ~
  url: ~
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'

8.4.43 MDG-352249-2007-temporary_protection-002 - Makira (WDPAID: 352249)

Fichier : MDG-352249-2007-temporary_protection-002.yml

amendment_id: MDG-352249-2007-temporary_protection-002
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: ~
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'

8.4.44 MDG-352250-2006-temporary_protection-001 - Mandena (WDPAID: 352250)

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: '2015-04-28'
legal_instrument:
  source: manual
  type: arrêté
  number: 7878/2006
  date: '2006-05-15'
  id: ~
  url: ~
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'

8.4.45 MDG-352250-2007-temporary_protection-002 - Mandena (WDPAID: 352250)

Fichier : MDG-352250-2007-temporary_protection-002.yml

amendment_id: MDG-352250-2007-temporary_protection-002
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: ~
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'

8.4.46 MDG-352251-2006-temporary_protection-001 - Menabe Antimena (WDPAID: 352251)

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: ~
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'

8.4.47 MDG-352251-NODATE-secondary_zoning-001 - Menabe Antimena (WDPAID: 352251)

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: ~
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_2024

Géométrie associée : geoms/MDG-352251-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)


8.4.48 MDG-352252-2006-temporary_protection-001 - Ambohitr’Antsingy Montagne des Français (WDPAID: 352252)

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: ~
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'

8.4.49 MDG-352253-2007-temporary_protection-001 - Amoron’i Onilahy (WDPAID: 352253)

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: ~
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'

8.4.50 MDG-352255-2006-temporary_protection-001 - Ambatoatsinanana (WDPAID: 352255)

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: '2015-04-28'
legal_instrument:
  source: manual
  type: arrêté
  number: 7879/2006
  date: '2006-05-15'
  id: ~
  url: ~
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'

8.4.51 MDG-352255-2007-temporary_protection-002 - Ambatoatsinanana (WDPAID: 352255)

Fichier : MDG-352255-2007-temporary_protection-002.yml

amendment_id: MDG-352255-2007-temporary_protection-002
iso3: MDG
wdpaid: 352255
wdpa_name: Ambatoatsinanana
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: 13616/2007
  date: '2007-08-20'
  id: ~
  url: ~
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'

8.4.52 MDG-352256-2005-temporary_protection-001 - Corridor Ankeniheny Zahamena (WDPAID: 352256)

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: '2015-04-28'
legal_instrument:
  source: manual
  type: arrêté
  number: 20021/2005
  date: '2005-12-30'
  id: ~
  url: ~
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'

8.4.53 MDG-352256-2007-temporary_protection-002 - Corridor Ankeniheny Zahamena (WDPAID: 352256)

Fichier : MDG-352256-2007-temporary_protection-002.yml

amendment_id: MDG-352256-2007-temporary_protection-002
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: ~
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'

8.4.54 MDG-354011-2007-temporary_protection-001 - Réserve de Tampolo (WDPAID: 354011)

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'
legal_instrument:
  source: manual
  type: arrêté
  number: 13612/2007
  date: '2007-08-20'
  id: ~
  url: ~
notes: Temporary protection via Arrêté 13612/2007 (2007-08-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: '2007'

8.4.55 MDG-354012-2007-temporary_protection-001 - Mikea (WDPAID: 354012)

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: ~
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'

8.4.56 MDG-354013-1997-boundary_modification-001 - Zahamena (WDPAID: 354013)

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: ~
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_2010

Géométrie associée : geoms/MDG-354013-1997-boundary_modification-001.geojson (1 feature(s), 4)


8.4.57 MDG-354013-1997-status_change-001 - Zahamena (WDPAID: 354013)

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: ~
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: Ia

8.4.58 MDG-354013-2015-boundary_modification-001 - Zahamena (WDPAID: 354013)

Fichier : 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
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_2002

Géométrie associée : geoms/MDG-354013-2015-boundary_modification-001.geojson (1 feature(s), 7)


8.4.59 MDG-354013-2015-boundary_modification-002 - Zahamena (WDPAID: 354013)

Fichier : MDG-354013-2015-boundary_modification-002.yml

amendment_id: MDG-354013-2015-boundary_modification-002
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
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-002.geojson
geometry_crs_epsg: 4326
geometry_source_dataset_id: ANGAP_2002

Géométrie associée : geoms/MDG-354013-2015-boundary_modification-002.geojson (1 feature(s), 7)


8.4.60 MDG-354013-2015-status_change-001 - Zahamena (WDPAID: 354013)

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: ~
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+Ia

8.4.61 MDG-5021-2015-boundary_modification-001 - Analamazaotra (WDPAID: 5021)

Fichier : 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
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_2010

Géométrie associée : geoms/MDG-5021-2015-boundary_modification-001.geojson (1 feature(s), 4)


8.4.62 MDG-5021-NODATE-correction-001 - Analamazaotra (WDPAID: 5021)

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
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'

8.4.63 MDG-5022-NODATE-correction-001 - Analamerana (WDPAID: 5022)

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: ~
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'

8.4.64 MDG-5023-2015-boundary_modification-001 - Anjanaharibe_sud (WDPAID: 5023)

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
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_2010

Géométrie associée : geoms/MDG-5023-2015-boundary_modification-001.geojson (1 feature(s), 4)


8.4.65 MDG-5023-NODATE-correction-001 - Anjanaharibe_sud (WDPAID: 5023)

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
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'

8.4.66 MDG-5024-NODATE-correction-001 - Ankarana (WDPAID: 5024)

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: ~
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'

8.4.67 MDG-5025-2015-boundary_modification-001 - 5025 (WDPAID: 5025)

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: ~
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_split

Géométrie associée : geoms/MDG-5025-2015-boundary_modification-001.geojson (1 feature(s), 7)


8.4.68 MDG-5025-2015-status_change-001 - 5025 (WDPAID: 5025)

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: ~
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'

8.4.69 MDG-5026-2015-boundary_modification-001 - Manongarivo (WDPAID: 5026)

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
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_2010

Géométrie associée : geoms/MDG-5026-2015-boundary_modification-001.geojson (1 feature(s), 4)


8.4.70 MDG-5026-NODATE-correction-001 - Manongarivo (WDPAID: 5026)

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
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'

8.4.71 MDG-5037-2015-boundary_modification-001 - Ambatovaky (WDPAID: 5037)

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
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_2010

Géométrie associée : geoms/MDG-5037-2015-boundary_modification-001.geojson (1 feature(s), 4)


8.4.72 MDG-5039-2015-boundary_modification-001 - Nosy Mangabe (WDPAID: 5039)

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
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_split

Géométrie associée : geoms/MDG-5039-2015-boundary_modification-001.geojson (1 feature(s), 4)


8.4.73 MDG-5039-2015-status_change-001 - Nosy Mangabe (WDPAID: 5039)

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
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: IV

8.4.74 MDG-5040-NODATE-correction-001 - Andranomena (WDPAID: 5040)

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
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'

8.4.75 MDG-5041-2015-boundary_modification-001 - Cap Sainte Marie (WDPAID: 5041)

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
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_2010

Géométrie associée : geoms/MDG-5041-2015-boundary_modification-001.geojson (1 feature(s), 4)


8.4.76 MDG-5041-NODATE-correction-001 - Cap Sainte Marie (WDPAID: 5041)

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
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'

8.4.77 MDG-555547961-NODATE-secondary_zoning-001 - Mandrozo (WDPAID: 555547961)

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: ~
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_2024

Géométrie associée : geoms/MDG-555547961-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)


8.4.78 MDG-555549450-2018-temporary_protection-001 - Angavo (WDPAID: 555549450)

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'
valid_to: '2021-09-15'
legal_instrument:
  source: manual
  type: arrêté
  number: 23548/2018
  date: '2018-09-24'
  id: ~
  url: ~
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 2021-09-15 via 2021-919.
attributes:
  DESIG: Protection Temporaire
  DESIG_ENG: Temporary Protection
  STATUS: Designated
  STATUS_YR: '2018'

8.4.79 MDG-555549460-2008-temporary_protection-001 - Ranobe PK 32 (WDPAID: 555549460)

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'
legal_instrument:
  source: manual
  type: arrêté
  number: 21482/2008
  date: '2008-12-02'
  id: ~
  url: ~
notes: Temporary protection via Arrêté 21482/2008 (2008-12-02). 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'

8.4.80 MDG-555624855-2014-temporary_protection-001 - Iles Barren (WDPAID: 555624855)

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: ~
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'

8.4.81 MDG-555697872-NODATE-secondary_zoning-001 - Site Bioculturel d’Antrema (WDPAID: 555697872)

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: ~
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_2024

Géométrie associée : geoms/MDG-555697872-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)


8.4.82 MDG-555697873-2007-temporary_protection-001 - Lac Alaotra (WDPAID: 555697873)

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: ~
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'

8.4.83 MDG-555697877-2008-temporary_protection-001 - Complexe Zones Humides Mangoky Ihotry (WDPAID: 555697877)

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: ~
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'

8.4.84 MDG-555697877-NODATE-secondary_zoning-001 - Complexe Zones Humides Mangoky Ihotry (WDPAID: 555697877)

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: ~
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_2024

Géométrie associée : geoms/MDG-555697877-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)


8.4.85 MDG-555697878-2008-temporary_protection-001 - Forêt Naturelle de Tsitongambarika (WDPAID: 555697878)

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'
legal_instrument:
  source: manual
  type: arrêté
  number: 21480/2008
  date: '2008-12-02'
  id: ~
  url: ~
notes: Temporary protection via Arrêté 21480/2008 (2008-12-02). 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'

8.4.86 MDG-555697879-NODATE-secondary_zoning-001 - Beanka (WDPAID: 555697879)

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: ~
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_2024

Géométrie associée : geoms/MDG-555697879-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)


8.4.87 MDG-555697880-NODATE-secondary_zoning-001 - Sahafina (WDPAID: 555697880)

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: ~
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_2024

Géométrie associée : geoms/MDG-555697880-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)


8.4.88 MDG-555697881-2006-temporary_protection-001 - Corridor Forestier Ambositra Vondrozo (WDPAID: 555697881)

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: ~
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'

8.4.89 MDG-555697884-NODATE-secondary_zoning-001 - Ambatofotsy (WDPAID: 555697884)

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: ~
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_2024

Géométrie associée : geoms/MDG-555697884-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)


8.4.90 MDG-555697886-NODATE-secondary_zoning-001 - Ampotaka Ankorabe (WDPAID: 555697886)

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: ~
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_2024

Géométrie associée : geoms/MDG-555697886-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)


8.4.91 MDG-555697890-NODATE-secondary_zoning-001 - Analabe-Betanatanana (WDPAID: 555697890)

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: ~
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_2024

Géométrie associée : geoms/MDG-555697890-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)


8.4.92 MDG-555697897-2008-temporary_protection-001 - Massif d’Ibity (WDPAID: 555697897)

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: ~
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'

8.4.93 MDG-555697905-NODATE-secondary_zoning-001 - Mahimborondro (WDPAID: 555697905)

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: ~
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_2024

Géométrie associée : geoms/MDG-555697905-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)


8.4.94 MDG-555697906-NODATE-secondary_zoning-001 - Bemanevika (WDPAID: 555697906)

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: ~
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_2024

Géométrie associée : geoms/MDG-555697906-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)


8.4.95 MDG-555697908-NODATE-secondary_zoning-001 - Loky Manambato (WDPAID: 555697908)

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: ~
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_2024

Géométrie associée : geoms/MDG-555697908-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)


8.4.96 MDG-555697909-2007-temporary_protection-001 - Allées des Baobabs (WDPAID: 555697909)

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: ~
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'

8.4.97 MDG-555697909-NODATE-secondary_zoning-001 - Allées des Baobabs (WDPAID: 555697909)

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: ~
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_2024

Géométrie associée : geoms/MDG-555697909-NODATE-secondary_zoning-001.geojson (1 feature(s), 4)


8.4.98 MDG-555697910-NODATE-secondary_zoning-001 - Andrafiamena Andavakoera (WDPAID: 555697910)

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: ~
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_2024

Géométrie associée : geoms/MDG-555697910-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)


8.4.99 MDG-555697911-2013-temporary_protection-001 - Manjakatompo Ankaratra (WDPAID: 555697911)

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'
legal_instrument:
  source: manual
  type: arrêté
  number: 14983/2013
  date: '2013-07-18'
  id: ~
  url: ~
notes: Temporary protection via Arrêté 14983/2013 (2013-07-18). 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'

8.4.100 MDG-555785986-2008-temporary_protection-001 - Nosy Ve Androka (WDPAID: 555785986)

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: '2015-04-21'
legal_instrument:
  source: manual
  type: arrêté
  number: 18633/2008
  date: '2008-10-17'
  id: ~
  url: ~
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'

8.4.101 MDG-555785986-2010-temporary_protection-002 - Nosy Ve Androka (WDPAID: 555785986)

Fichier : MDG-555785986-2010-temporary_protection-002.yml

amendment_id: MDG-555785986-2010-temporary_protection-002
iso3: MDG
wdpaid: 555785986
wdpa_name: Nosy Ve Androka
amendment_kind: attribute
amendment_type: temporary_protection
valid_from: '2010-12-20'
valid_to: '2015-04-21'
legal_instrument:
  source: manual
  type: arrêté
  number: 52005/2010
  date: '2010-12-20'
  id: ~
  url: ~
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'

8.4.102 MDG-555785986-2013-temporary_protection-003 - Nosy Ve Androka (WDPAID: 555785986)

Fichier : MDG-555785986-2013-temporary_protection-003.yml

amendment_id: MDG-555785986-2013-temporary_protection-003
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: ~
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'

8.4.103 MDG-555790168-2020-temporary_protection-001 - Tsinjoarivo Ambalaomby (WDPAID: 555790168)

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: ~
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'

8.4.104 MDG-555790169-2020-temporary_protection-001 - Ivohiboro (WDPAID: 555790169)

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: ~
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'

8.4.105 MDG-555790175-2017-temporary_protection-001 - Anjajavy (WDPAID: 555790175)

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: ~
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'

8.4.106 MDG-555790237-NODATE-secondary_zoning-001 - Analalava (WDPAID: 555790237)

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: ~
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_2024

Géométrie associée : geoms/MDG-555790237-NODATE-secondary_zoning-001.geojson (1 feature(s), 7)


8.5 Validation du registre

Vérifications de cohérence avant consolidation.

Voir le code
# 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
Voir le code
# 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
Voir le code
# 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
Voir le code
# 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-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-352242-2005-temporary_protection-001    |    352242|temporary_protection  |2005-12-30 |2015-04-28 |
|MDG-352242-2007-temporary_protection-002    |    352242|temporary_protection  |2007-01-08 |2015-04-28 |
|MDG-352242-2007-temporary_protection-003    |    352242|temporary_protection  |2007-01-08 |2015-04-28 |
|MDG-352242-2007-temporary_protection-004    |    352242|temporary_protection  |2007-08-20 |2015-04-28 |
|MDG-352243-2006-temporary_protection-001    |    352243|temporary_protection  |2006-03-15 |2015-04-28 |
|MDG-352243-2007-temporary_protection-002    |    352243|temporary_protection  |2007-08-20 |2015-04-28 |
|MDG-352247-2006-temporary_protection-001    |    352247|temporary_protection  |2006-03-15 |2015-04-28 |
|MDG-352247-2007-temporary_protection-002    |    352247|temporary_protection  |2007-08-20 |2015-04-28 |
|MDG-352249-2005-temporary_protection-001    |    352249|temporary_protection  |2005-12-30 |2012-06-19 |
|MDG-352249-2007-temporary_protection-002    |    352249|temporary_protection  |2007-01-08 |2012-06-19 |
|MDG-352250-2006-temporary_protection-001    |    352250|temporary_protection  |2006-05-15 |2015-04-28 |
|MDG-352250-2007-temporary_protection-002    |    352250|temporary_protection  |2007-08-20 |2015-04-28 |
|MDG-352255-2006-temporary_protection-001    |    352255|temporary_protection  |2006-05-15 |2015-04-28 |
|MDG-352255-2007-temporary_protection-002    |    352255|temporary_protection  |2007-08-20 |2015-04-28 |
|MDG-352256-2005-temporary_protection-001    |    352256|temporary_protection  |2005-12-30 |2015-04-28 |
|MDG-352256-2007-temporary_protection-002    |    352256|temporary_protection  |2007-01-08 |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-boundary_modification-002   |    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-555785986-2008-temporary_protection-001 | 555785986|temporary_protection  |2008-10-17 |2015-04-21 |
|MDG-555785986-2010-temporary_protection-002 | 555785986|temporary_protection  |2010-12-20 |2015-04-21 |
|MDG-555785986-2013-temporary_protection-003 | 555785986|temporary_protection  |2013-05-06 |2015-04-21 |
Voir le code
# 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

8.6 Résumé par aire protégée

Voir le code
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"
)