diff --git a/CHANGELOG.md b/CHANGELOG.md index c93377f1..6d8ceca8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.9.18] - 2024-06-24 + +### Added + +- Specify countries per theme when running via the command line + +### Fixed + +- Thanks to bugfix in `openpyxl`, added 3W data for: BFA, CAF, COD, NER +- Updated 3W data for: MLI, SOM, ETH, SDN, SSD +- Avoid overwriting orgs with multiple org types + ## [0.9.17] - 2024-06-10 ### Changed diff --git a/pyproject.toml b/pyproject.toml index 3f562610..62ee4bcf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ requires-python = ">=3.8" dependencies = [ "hapi-schema>=0.8.9", "hdx-python-api>= 6.2.9", - "hdx-python-country>= 3.7.2", + "hdx-python-country>= 3.7.2, <3.7.3", "hdx-python-database[postgresql]>= 1.3.1", "hdx-python-scraper>= 2.3.7", "hdx-python-utilities>= 3.6.9", diff --git a/requirements.txt b/requirements.txt index 734b127c..0ed7e86d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -24,7 +24,7 @@ ckanapi==4.8 # via hdx-python-api click==8.1.7 # via typer -coverage==7.5.3 +coverage==7.5.4 # via pytest-cov cryptography==42.0.8 # via pyopenssl @@ -40,11 +40,11 @@ docopt==0.6.2 # num2words docutils==0.21.2 # via defopt -email-validator==2.1.1 +email-validator==2.2.0 # via hdx-python-api et-xmlfile==1.1.0 # via openpyxl -filelock==3.14.0 +filelock==3.15.4 # via virtualenv frictionless==5.17.0 # via hdx-python-utilities @@ -71,9 +71,9 @@ hdx-python-country==3.7.2 # hdx-python-scraper hdx-python-database==1.3.1 # via hapi-pipelines (pyproject.toml) -hdx-python-scraper==2.3.7 +hdx-python-scraper==2.3.8 # via hapi-pipelines (pyproject.toml) -hdx-python-utilities==3.6.9 +hdx-python-utilities==3.7.0 # via # hapi-pipelines (pyproject.toml) # hdx-python-api @@ -89,7 +89,7 @@ idna==3.7 # requests ijson==3.3.0 # via hdx-python-utilities -inflect==7.2.1 +inflect==7.3.0 # via quantulum3 iniconfig==2.0.0 # via pytest @@ -118,7 +118,7 @@ makefun==1.15.2 # via hdx-python-api markdown-it-py==3.0.0 # via rich -marko==2.0.3 +marko==2.1.2 # via frictionless markupsafe==2.1.5 # via jinja2 @@ -134,7 +134,7 @@ num2words==0.5.13 # via quantulum3 oauthlib==3.2.2 # via requests-oauthlib -openpyxl==3.1.3 +openpyxl==3.1.4 # via hdx-python-utilities packaging==24.1 # via pytest @@ -166,7 +166,7 @@ pyasn1-modules==0.4.0 # via google-auth pycparser==2.22 # via cffi -pydantic==2.7.3 +pydantic==2.7.4 # via frictionless pydantic-core==2.18.4 # via pydantic @@ -190,7 +190,7 @@ pytest-cov==5.0.0 # via hapi-pipelines (pyproject.toml) pytest-mock==3.14.0 # via hapi-pipelines (pyproject.toml) -python-dateutil==2.8.2 +python-dateutil==2.9.0.post0 # via # frictionless # hdx-python-utilities @@ -242,7 +242,7 @@ ruamel-yaml==0.18.6 # via hdx-python-utilities ruamel-yaml-clib==0.2.8 # via ruamel-yaml -setuptools==70.0.0 +setuptools==70.1.0 # via ckanapi shellingham==1.5.4 # via typer @@ -259,7 +259,7 @@ six==1.16.0 # sphinxcontrib-napoleon sphinxcontrib-napoleon==0.7 # via defopt -sqlalchemy==2.0.30 +sqlalchemy==2.0.31 # via # hapi-pipelines (pyproject.toml) # hapi-schema @@ -281,7 +281,6 @@ typer==0.12.3 typing-extensions==4.12.2 # via # frictionless - # inflect # psycopg # pydantic # pydantic-core @@ -292,13 +291,13 @@ unidecode==1.3.8 # via # libhxl # pyphonetics -urllib3==2.2.1 +urllib3==2.2.2 # via # libhxl # requests validators==0.28.3 # via frictionless -virtualenv==20.26.2 +virtualenv==20.26.3 # via pre-commit wheel==0.43.0 # via libhxl diff --git a/src/hapi/pipelines/app/__main__.py b/src/hapi/pipelines/app/__main__.py index 3ca92d63..e04cc5d7 100755 --- a/src/hapi/pipelines/app/__main__.py +++ b/src/hapi/pipelines/app/__main__.py @@ -54,7 +54,13 @@ def parse_args(): default=None, help="Database connection parameters. Overrides --db-uri.", ) - parser.add_argument("-th", "--themes", default=None, help="Themes to run") + th_help = ( + "Themes to run. Can pass a single theme or multiple themes " + "separated by commas. You can also append a colon to the " + "theme name and pass ISO3s separated by a pipe. For example: " + "population:AFG|COD,poverty_rate:BFA,funding" + ) + parser.add_argument("-th", "--themes", default=None, help=th_help) parser.add_argument( "-sc", "--scrapers", default=None, help="Scrapers to run" ) @@ -181,7 +187,11 @@ def main( if len(theme_strs) == 1: themes_to_run[theme_strs[0]] = None else: - themes_to_run[theme_strs[0]] = theme_strs[1] + # Split values by pipe for multiple countries + values = theme_strs[1].split("|") + themes_to_run[theme_strs[0]] = ( + values if len(values) > 1 else values[0] + ) else: themes_to_run = None if args.scrapers: diff --git a/src/hapi/pipelines/configs/core.yaml b/src/hapi/pipelines/configs/core.yaml index 237ad095..8534196c 100755 --- a/src/hapi/pipelines/configs/core.yaml +++ b/src/hapi/pipelines/configs/core.yaml @@ -219,6 +219,7 @@ org_type: org_type_map: academy: "431" agence un: "447" + agence du systeme des nations unies: "447" autre type: "443" civile society: "501" cooperation internationale: "501" @@ -229,9 +230,11 @@ org_type_map: gov: "435" govt: "435" ingo: "437" + institution etatique: "435" international institution: "438" local ngo: "504" mouv cr: "445" + mouvement croix rouge: "445" mouvement de la croix rouge: "445" movimiento de la cruz roja media luna roja: "445" nations unies: "447" @@ -242,6 +245,7 @@ org_type_map: ong internacional: "437" ong internationale: "437" ong nat: "441" + ong national: "441" ong nacional: "441" ong nationale: "441" organisation des nations unies: "447" @@ -262,8 +266,11 @@ org_type_map: sector_map: abna: "SHL" + abri: "SHL" + abri bna: "SHL" abris: "SHL" abris ame: "SHL" + abris/ame: "SHL" abris/bna: "SHL" abris/bna/cccm: "SHL" abris / nfi: "SHL" @@ -273,6 +280,7 @@ sector_map: agriculture: "FSC" agua saneamiento e higiene: "WSH" all: "Intersectoral" + ame: "SHL" alojamiento de emergencia: "SHL" alojamiento de emergencia (shelter): "SHL" alojamientos y asentamientos: "SHL" @@ -302,16 +310,20 @@ sector_map: epah: "WSH" erl: "ERY" esnfi: "SHL" + explosive hazards: "PRO-MIN" food: "FSC" food security and agriculture: "FSC" food security and livelihoods: "FSC" food security and nutrition: "FSC" food security livelihood: "FSC" fsl: "FSC" + gestion des sites d'accueil temporaires: "SHL" gbv: "PRO-GBV" + hlp: "PRO-HLP" humanitaire: "Hum" hygiene: "WSH" hygiene assainissement: "WSH" + intercluster: "Multi" # From Somalia 3W, hopefully not to be confused with intersectoral logement terre et biens: "PRO-HLP" logistica: "LOG" logistique: "LOG" @@ -330,11 +342,17 @@ sector_map: operational presence protection: "PRO" pronna: "PRO-CPN" propg: "PRO" + proteccion infantil: "PRO-CPN" protection: "PRO" protection de l'enfance: "PRO-CPN" protection de l'enfant: "PRO-CPN" protection generale: "PRO" - proteccion infantil: "PRO-CPN" + protection logement terre et propriete: "PRO-HLP" + protection ltb: "PRO-HLP" + protection lutte anti mines: "PRO-MIN" + protection protection de l'enfant: "PRO-CPN" + protection violences basees sur le genre: "PRO-GBV" + protection vgb: "PRO-GBV" proteccion: "PRO" provbg: "PRO-GBV" psea: "PRO-GBV" @@ -368,6 +386,7 @@ sector_map: shelter and non food items: "SHL" site management: "CCM" snfi: "SHL" + telecommunications: "TEL" telecomunicaciones de emergencia: "TEL" telecommunications d'urgence: "TEL" vbg: "PRO-GBV" diff --git a/src/hapi/pipelines/configs/operational_presence.yaml b/src/hapi/pipelines/configs/operational_presence.yaml index f93b3b5d..07e8a60c 100644 --- a/src/hapi/pipelines/configs/operational_presence.yaml +++ b/src/hapi/pipelines/configs/operational_presence.yaml @@ -6,9 +6,9 @@ operational_presence_error_messages: operational_presence_default: scrapers_with_defaults: - "operational_presence_afg" - # - "operational_presence_caf" + - "operational_presence_caf" - "operational_presence_cmr" - # - "operational_presence_cod" + - "operational_presence_cod" - "operational_presence_col" - "operational_presence_eth" - "operational_presence_gtm" @@ -55,56 +55,30 @@ operational_presence_admintwo: - "#org +type +name" - "#sector +cluster +name" -# operational_presence_bfa: -# dataset: "burkina-faso-presence-operationnelle" -# resource: "3W Burkina Faso November-December 2023" -# format: "xlsx" -# sheet: "MATRICE" -# headers: 2 -# source_date: -# start: "01/11/2023" -# end: "31/12/2023" -# use_hxl: True -# admin: -# - ~ -# - "#adm2+name" -# admin_exact: False -# input: -# - "#org+name" -# - "#sector" -# list: -# - "#org+name" -# - "#sector" -# output: -# - "org_name" -# - "sector" -# output_hxl: -# - "#org+name" -# - "#sector" - -# operational_presence_caf: -# dataset: "republique-centrafricaine-presence-operationnelle" -# resource: "3W_CAR_Dec2023" -# format: "xlsx" -# sheet: "Compil_3W_VF" -# headers: 1 -# source_date: -# start: "01/10/2023" -# end: "31/12/2023" -# admin: -# - ~ -# - "PCODE2" -# admin_exact: True -# input: -# - "Description_Acteur" -# - "ACTEUR" -# - "TYPE_ORG" -# - "SECTEUR" -# list: -# - "Description_Acteur" -# - "ACTEUR" -# - "TYPE_ORG" -# - "SECTEUR" + operational_presence_caf: + dataset: "republique-centrafricaine-presence-operationnelle" + resource: "3W_CAR_Dec2023" + format: "xlsx" + sheet: "COMPILALL" + headers: 1 + source_date: + start: "01/10/2023" + end: "31/12/2023" + use_hxl: True + admin: + - ~ + - "#adm2+code" + admin_exact: True + input: + - "#org+description" + - "#org+acronym" + - "#org+type" + - "#sector" + list: + - "#org+description" + - "#org+acronym" + - "#org+type" + - "#sector" operational_presence_cmr: dataset: "cameroon-5w-operational-presence" @@ -130,29 +104,39 @@ operational_presence_admintwo: - "implementing_org_type" - "clusters" -# operational_presence_cod: -# dataset: "drc_presence_operationnelle" -# resource: "rdc-3w_February-2024" -# format: "xlsx" -# sheet: "data" -# headers: 1 -# source_date: -# start: "01/12/2023" -# end: "28/02/2024" -# admin: -# - ~ -# - "adm2_pcode" -# admin_exact: True -# input: -# - "implementing_org_name" -# - "implementing_org_acronym" -# - "implementing_org_type" -# - "sectors" -# list: -# - "implementing_org_name" -# - "implementing_org_acronym" -# - "implementing_org_type" -# - "sectors" + operational_presence_cod: + dataset: "drc_presence_operationnelle" + resource: "rdc-3w_avril-2024.xlsx" + format: "xlsx" + sheet: "Compilation_VF" + headers: 1 + source_date: + start: "01/04/2024" + end: "30/04/2024" + admin: + - ~ + - "Code Terrtoire" + admin_exact: True + input: + - "NOM ORGANISATION + (cette colonne est renseignée automatiquement selon la selection dans le colonne A)" + - "ACCRONYME + (Choisir dans la liste déroulante)" + - "TYPE ORGANISATION + (cette colonne est renseignée automatiquement selon la selection dans le colonne B)" + - "CLUSTER + (Choisir dans la liste déroulante) + Pour les projets humanitaires uniquement" + list: + - "NOM ORGANISATION + (cette colonne est renseignée automatiquement selon la selection dans le colonne A)" + - "ACCRONYME + (Choisir dans la liste déroulante)" + - "TYPE ORGANISATION + (cette colonne est renseignée automatiquement selon la selection dans le colonne B)" + - "CLUSTER + (Choisir dans la liste déroulante) + Pour les projets humanitaires uniquement" operational_presence_col: dataset: "colombia-4ws" @@ -244,13 +228,13 @@ operational_presence_admintwo: operational_presence_mli: dataset: "mali-operational-presence" - resource: "MALI_3W_December_2023" + resource: "MALI 3W_Mars_2024" format: "xlsx" sheet: "ML_5W" headers: 1 source_date: - start: "01/10/2023" - end: "31/12/2023" + start: "01/03/2024" + end: "31/03/2024" use_hxl: False admin: - ~ @@ -318,30 +302,36 @@ operational_presence_admintwo: - "#sector +cluster" operational_presence_som: - dataset: "somalia-who-is-doing-what-and-where-3w" - resource: "3w_-operational-presence_Jan_Nov-2023.xlsx" + dataset: "somalia-operational-presence" + resource: "3Ws_All_Clusters_1st_Qtr_2024.xlsx" format: "xlsx" - sheet: "Jan- Nov 2023" + sheet: "1st Qtr 3Ws" headers: 1 + use_hxl: True source_date: - start: "01/01/2023" - end: "30/11/2023" + start: "01/01/2024" + end: "31/03/2024" admin: - ~ - - "District_Pcode" + - "#adm2+code" admin_exact: True input: - - "Organization Name" - - "Organization Type" + - "#org+name" + - "#org+type" + - "#sector+cluster+name" list: - - "Organization Name" - - "Organization Type" + - "#org+name" + - "#org+type" + - "#sector+cluster+name" output: - "org_name" - "org_type_name" + - "sector" output_hxl: - "#org+name" - "#org+type+name" + - "#sector" + operational_presence_ven: dataset: "venezuela-who-does-what-and-where-3w" @@ -420,16 +410,43 @@ operational_presence_adminone: - "Cluster" operational_presence_national: + + # missing org acronym / name distinction, org types + # pcodes are only available for admin 3, and they are broken in the spreadsheet + operational_presence_bfa: + dataset: "burkina-faso-presence-operationnelle" + resource: "3W Burkina Faso January-February 2024" + format: "xlsx" + sheet: "MATRICE" + headers: 2 + source_date: + start: "01/01/2024" + end: "29/02/2024" + use_hxl: True + admin_single: "BFA" + input: + - "#org+name" + - "#sector" + list: + - "#org+name" + - "#sector" + output: + - "org_name" + - "sector" + output_hxl: + - "#org+name" + - "#sector" + operational_presence_eth: dataset: "ethiopia-operational-presence" - resource: "Ethiopia Who is Doing What Where (4W) - March 2024.xlsx" + resource: "Ethiopia Who is Doing What Where (4W) - April 2024.xlsx" format: "xlsx" - sheet: "March 2024" + sheet: "April 2024" headers: 1 use_hxl: True source_date: - start: "01/03/2024" - end: "31/03/2024" + start: "01/04/2024" + end: "30/04/2024" admin_single: "ETH" input: - "#org+impl+name" @@ -442,34 +459,40 @@ operational_presence_national: - "#org+impl+type" - "#sector+cluster" -# operational_presence_ner: -# dataset: "niger-operational-presence" -# resource: "NER_Sep_2023" -# format: "xlsx" -# sheet: "3W_Data_T2" -# headers: 4 -# source_date: -# start: "01/07/2023" -# end: "30/09/2023" -# admin_single: "NER" -# input: -# - "NOM ORGANISATION -# (cette colonne est renseignée automatiquement selon la selection dans le colonne A)" -# - "ACCRONYME -# (Choisir dans la liste déroulante)" -# - "TYPE ORGANISATION -# (cette colonne est renseignée automatiquement selon la selection dans le colonne B)" -# - "SECTEUR/DOMAINE -# (Choisir dans la liste déroulante)" -# list: -# - "NOM ORGANISATION -# (cette colonne est renseignée automatiquement selon la selection dans le colonne A)" -# - "ACCRONYME -# (Choisir dans la liste déroulante)" -# - "TYPE ORGANISATION -# (cette colonne est renseignée automatiquement selon la selection dans le colonne B)" -# - "SECTEUR/DOMAINE -# (Choisir dans la liste déroulante)" + operational_presence_ner: + dataset: "niger-operational-presence" + resource: "NER_Sep_2023" + format: "xlsx" + sheet: "3W_Data_T2" + headers: + - 4 + - 5 + source_date: + start: "01/07/2023" + end: "30/09/2023" + admin_single: "NER" + input: + - "NOM ORGANISATION + (cette colonne est renseignée automatiquement selon la selection dans le colonne A)" + - "ACCRONYME + (Choisir dans la liste déroulante) + #org+acronym" + - "TYPE ORGANISATION + (cette colonne est renseignée automatiquement selon la selection dans le colonne B)" + - "CLUSTER + (Choisir dans la liste déroulante) + #sector" + list: + - "NOM ORGANISATION + (cette colonne est renseignée automatiquement selon la selection dans le colonne A)" + - "ACCRONYME + (Choisir dans la liste déroulante) + #org+acronym" + - "TYPE ORGANISATION + (cette colonne est renseignée automatiquement selon la selection dans le colonne B)" + - "CLUSTER + (Choisir dans la liste déroulante) + #sector" operational_presence_pse: dataset: "state-of-palestine-who-does-what-and-where-3ws" @@ -494,13 +517,13 @@ operational_presence_national: operational_presence_sdn: dataset: "sudan-operational-presence" - resource: "2024-consolidated-3w-data-jan-to-31-march.xlsx" + resource: "2024-consolidated-3w-data-jan-to-31-May.xlsx" format: "xlsx" sheet: "3W_master_data" headers: 1 source_date: start: "01/01/2024" - end: "31/03/2024" + end: "31/05/2024" admin_single: "SDN" input: - "Organization" @@ -515,21 +538,21 @@ operational_presence_national: operational_presence_ssd: dataset: "south-sudan-operational-presence" - resource: "ss_20240412_3w_oerational presence_Jan to Feb_2024.xlsx" + resource: "ss_20240511_3w_oerational presence_Jan to Apr_2024.xlsx" format: "xlsx" sheet: "data" headers: 1 source_date: start: "01/01/2024" - end: "28/02/2024" + end: "30/04/2024" admin_single: "SSD" input: - - "Organization" + - "Name of organization" - "Acronym" - "Type" - "Cluster" list: - - "Organization" + - "Name of organization" - "Acronym" - "Type" - "Cluster" diff --git a/src/hapi/pipelines/database/operational_presence.py b/src/hapi/pipelines/database/operational_presence.py index 0544b7c0..0763c47e 100644 --- a/src/hapi/pipelines/database/operational_presence.py +++ b/src/hapi/pipelines/database/operational_presence.py @@ -52,32 +52,46 @@ def populate(self, debug=False): operational_presence_rows = [] if debug: debug_rows = [] - number_duplicates = 0 errors = set() for dataset in self._results.values(): dataset_name = dataset["hdx_stub"] time_period_start = dataset["time_period"]["start"] time_period_end = dataset["time_period"]["end"] + number_duplicates = 0 for admin_level, admin_results in dataset["results"].items(): resource_id = admin_results["hapi_resource_metadata"]["hdx_id"] hxl_tags = admin_results["headers"][1] values = admin_results["values"] - + # Add this check to see if there is no data, otherwise get a confusing + # sqlalchemy error + if not values[0]: + raise RuntimeError( + f"Admin level {admin_level} in dataset" + f" {dataset_name} has no data, " + f"please check configuration" + ) + # Config must contain an org name org_name_index = hxl_tags.index("#org+name") + # If config is missing org acronym, use the org name try: org_acronym_index = hxl_tags.index("#org+acronym") except ValueError: org_acronym_index = hxl_tags.index("#org+name") + # If config is missing org type, set to None try: org_type_name_index = hxl_tags.index("#org+type+name") except ValueError: org_type_name_index = None + # If config is missing sector, add to error messages try: sector_index = hxl_tags.index("#sector") except ValueError: - add_message(errors, dataset_name, "missing sector") + add_message( + errors, + dataset_name, + "missing sector in config, dataset skipped", + ) continue - for admin_code, org_names in values[org_name_index].items(): for i, org_name_orig in enumerate(org_names): admin2_code = admins.get_admin2_code_based_on_level( @@ -89,7 +103,13 @@ def populate(self, debug=False): if not org_name_orig: org_name_orig = org_acronym_orig sector_orig = values[sector_index][admin_code][i] + # Skip rows that are missing a sector if not sector_orig: + add_message( + errors, + dataset_name, + f"org {org_name_orig} missing sector", + ) continue org_type_orig = None if org_type_name_index: @@ -187,6 +207,12 @@ def populate(self, debug=False): operational_presence_rows.append( operational_presence_row ) + if number_duplicates: + add_message( + errors, + dataset_name, + f"{number_duplicates} duplicate rows found", + ) if debug: write_list_to_csv( join("saved_data", "debug_operational_presence.csv"), @@ -194,14 +220,13 @@ def populate(self, debug=False): ) return + logger.info("Writing to org table") self._org.populate_multiple() + logger.info("Writing to operational presence table") batch_populate( operational_presence_rows, self._session, DBOperationalPresence ) - logger.warning( - f"There were {number_duplicates} duplicate operational presence rows!" - ) for dataset, msg in self._config.get( "conflict_event_error_messages", dict() ).items(): diff --git a/src/hapi/pipelines/database/org.py b/src/hapi/pipelines/database/org.py index cbf42379..61df906b 100644 --- a/src/hapi/pipelines/database/org.py +++ b/src/hapi/pipelines/database/org.py @@ -62,9 +62,10 @@ def add_or_match_org( ) if key in self.data: org_type_old = self.data[key][2] - if org_type_old: - # TODO: should we flag these units? - return + if org_type and not org_type_old: + self.data[key][2] = org_type + # TODO: should we flag orgs if we find more than one org type? + return self.data[ ( clean_name(acronym).upper(), diff --git a/tests/fixtures/input/mali-operational-presence.json b/tests/fixtures/input/mali-operational-presence.json index a5c2b693..5f692f6d 100644 --- a/tests/fixtures/input/mali-operational-presence.json +++ b/tests/fixtures/input/mali-operational-presence.json @@ -1 +1 @@ -{"archived": false, "creator_user_id": "65d9c488-3b0a-4f1d-89c4-f5a2ce5bd6be", "data_update_frequency": "180", "dataset_date": "[2016-11-01T00:00:00 TO 2023-12-31T23:59:59]", "dataset_preview": "resource_id", "dataset_source": "Humanitarian partners", "due_date": "2024-08-28T12:33:46", "has_geodata": false, "has_quickcharts": true, "has_showcases": false, "id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "is_requestdata_type": false, "isopen": false, "last_modified": "2024-03-01T12:33:46.790264", "license_id": "cc-by-igo", "license_title": "Creative Commons Attribution for Intergovernmental Organisations", "license_url": "http://creativecommons.org/licenses/by/3.0/igo/legalcode", "maintainer": "00e199a9-665e-4d58-8dbb-b3f7458dc02b", "maintainer_email": "ouane@un.org", "metadata_created": "2017-08-14T10:18:54.537494", "metadata_modified": "2024-05-02T10:49:41.858756", "methodology": "Registry", "name": "mali-operational-presence", "notes": "The Who does What Where (3W) is a core humanitarian coordination dataset. It is critical to know where humanitarian organizations are working and what they are doing in order to identify gaps and plan for future humanitarian response. This dataset includes a list of humanitarian organizations operating in Mali at Admin 3.\r\n", "num_resources": 17, "num_tags": 4, "organization": {"id": "380d709f-ab7f-484d-b5a4-b3ddbd192b3a", "name": "ocha-mali", "title": "OCHA Mali", "type": "organization", "description": "United Nations Office for the Coordination of Humanitarian Affairs Mali country office", "image_url": "", "created": "2014-07-16T13:21:42.112999", "is_organization": true, "approval_status": "approved", "state": "active"}, "overdue_date": "2024-09-27T12:33:46", "owner_org": "380d709f-ab7f-484d-b5a4-b3ddbd192b3a", "package_creator": "dabo", "pageviews_last_14_days": 7, "private": false, "qa_completed": false, "review_date": "2021-12-28T09:54:43.209766", "solr_additions": "{\"countries\": [\"Mali\"]}", "state": "active", "subnational": "1", "title": "Mali: Operational Presence", "total_res_downloads": 3412, "type": "dataset", "url": null, "version": null, "groups": [{"description": "", "display_name": "Mali", "id": "mli", "image_display_url": "", "name": "mli", "title": "Mali"}], "tags": [{"display_name": "hxl", "id": "a0fbb23a-6aad-4ccc-8062-e9ef9f20e5d2", "name": "hxl", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "operational capacity", "id": "d8a59526-9f9a-4c71-b38f-5d9f2eb1615a", "name": "operational capacity", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "operational presence", "id": "a25059f9-7e1f-49be-b629-ccccd97a95f8", "name": "operational presence", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "who is doing what and where-3w-4w-5w", "id": "ec53893c-6dba-4656-978b-4a32289ea2eb", "name": "who is doing what and where-3w-4w-5w", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}], "relationships_as_subject": [], "relationships_as_object": [], "is_fresh": true, "update_status": "fresh", "x_resource_grouping": [], "resources": [{"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b28928be-1847-408f-b3cd-9b87b596c710/download/", "cache_last_updated": null, "cache_url": null, "created": "2024-03-01T12:33:46.907689", "dataset_preview_enabled": true, "datastore_active": false, "description": "MALI_3W_December_2023", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b28928be-1847-408f-b3cd-9b87b596c710/download/mali-3w-presence-operationnelle-december-2023.xlsx", "format": "XLSX", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2024-03-01T12:33:46.593582\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2024-03-01T12:34:08.377739\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b28928be-1847-408f-b3cd-9b87b596c710/download/mali-3w-presence-operationnelle-december-2023.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"ML_5W\", \"is_hidden\": false, \"nrows\": 24090, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"183cac5babbb17371be02fd802565bd7\", \"hxl_header_hash\": \"b3bbec428c31d2d95cc7184b44e6e022\", \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Program Organization\", \"Bailleur de fond\", \"admin1Pcod\", \"Region\", \"admin2Pcod\", \"Cercle\", \"admin3Pcod\", \"Commune\", \"Village\", \"Cluster\"], \"hxl_headers\": [\"#org+acronym\", \"#org+name\", \"#org+type\", \"\", \"#actor\", \"#adm1+code\", \"#adm1+name\", \"#adm2+code\", \"#adm2+name\", \"#adm3+code\", \"\", \"\", \"#sector\"]}, {\"name\": \"TCD\", \"is_hidden\": false, \"nrows\": 12, \"ncols\": 5, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"Feuil1\", \"is_hidden\": true, \"nrows\": 66, \"ncols\": 16, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"ListOrganisation\", \"is_hidden\": true, \"nrows\": 477, \"ncols\": 2, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"2cd6259ad82ecc6baef941883e5f6bfe\", \"hxl_header_hash\": null, \"headers\": [\"Acronyme\", \"Nom organisation\"], \"hxl_headers\": null}, {\"name\": \"ONGN\", \"is_hidden\": true, \"nrows\": 1925, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Region\", \"Cercle\", \"Commune\", \"Cluster\"], \"hxl_headers\": null}, {\"name\": \"Synthese\", \"is_hidden\": true, \"nrows\": 13888, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Region\", \"Cercle\", \"Commune\", \"Cluster\"], \"hxl_headers\": null}, {\"name\": \"ML_5W (2)\", \"is_hidden\": true, \"nrows\": 7452, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"67e69147cee73143ec83246f859268e7\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Program Organization\", \"Bailleur de fond\", \"admin1Pcod\", \"Region\", \"admin2Pcod\", \"Cercle\", \"admin3Pcod\", \"Commune\", \"Village\", \"Cluster\", \"HRP\", \"Project Title\", \"Date d\\u00e9but\", \"Date fin\", \"Activit\\u00e9s\", \"Montant Cash Transfert (USD)\", \"Total Personnes cibl\\u00e9es\", \"Total Femmescibl\\u00e9es\", \"Total Hommes cibl\\u00e9s\", \"Total Filles cibl\\u00e9es (<18)\", \"Total Gar\\u00e7ons cibl\\u00e9s (<18)\", \"Total Femmes adultes cibl\\u00e9s (> =18)\", \"Total Hommes adultes cibl\\u00e9s (> =18)\", \"Femmes \\u00e2g\\u00e9es cibl\\u00e9es (> =59)\", \"Hommes \\u00e2g\\u00e9s cibl\\u00e9s (> =59)\", \"Personnes vivant avec Handicap cibl\\u00e9es\", \"Total No. atteintes\", \"Total Femmes atteintes\", \"Total Hommes atteints\", \"Total Adult Femmes atteintes (> =18)\", \"Total Adult Hommes atteints (> =18)\", \"Total Filles atteintes (<18)\", \"Total Gar\\u00e7ons atteints (<18)\", \"Femmes ag\\u00e9es atteintes (> =59)\", \"Hommes ag\\u00e9s atteints (> =59)\", \"Personnes vivant avec Handicap atteintes\", \"Remarques\"], \"hxl_headers\": null}, {\"name\": \"Admin\", \"is_hidden\": true, \"nrows\": 720, \"ncols\": 12, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"848dae1712f5bd291cf1524217b08bd0\", \"hxl_header_hash\": null, \"headers\": [\"Admin1\", \"Admin1_Pcode\", \"\", \"Admin1\", \"Admin1_Pcode\", \"Admin2\", \"Admin2_Pcode\", \"\", \"Admin2\", \"Admin2_Pcode\", \"Admin3\", \"Admin3_Pcode\"], \"hxl_headers\": null}]}}]", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b28928be-1847-408f-b3cd-9b87b596c710/download/mali-3w-presence-operationnelle-december-2023.xlsx", "id": "b28928be-1847-408f-b3cd-9b87b596c710", "last_modified": "2024-03-01T12:33:46.790264", "metadata_modified": "2024-03-01T12:36:44.929508", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "MALI_3W_December_2023", "originalHash": 1357368503, "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "position": 0, "resource_type": "file.upload", "size": 3819621, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b28928be-1847-408f-b3cd-9b87b596c710/download/mali-3w-presence-operationnelle-december-2023.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/aa0efd37-f743-4f47-8570-dff08735218f/download/", "cache_last_updated": null, "cache_url": null, "created": "2023-12-08T14:51:32.598022", "dataset_preview_enabled": false, "datastore_active": false, "description": "MALI_3W_September_2023", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/aa0efd37-f743-4f47-8570-dff08735218f/download/mali-3w_troisieme-trimestre2023.xlsx", "format": "XLSX", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2023-12-08T14:51:32.307047\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2023-12-08T14:51:48.271834\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/aa0efd37-f743-4f47-8570-dff08735218f/download/mali-3w_troisieme-trimestre2023.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"ML_3W\", \"is_hidden\": false, \"nrows\": 11170, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"183cac5babbb17371be02fd802565bd7\", \"hxl_header_hash\": \"bbb1f31f8030f8a2e3e68f80575c3b3c\", \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Program Organization\", \"Bailleur de fond\", \"admin1Pcod\", \"Region\", \"admin2Pcod\", \"Cercle\", \"admin3Pcod\", \"Commune\", \"Village\", \"Cluster\"], \"hxl_headers\": [\"#org+acronym\", \"#org+name\", \"#org+type\", \"\", \"#actor\", \"#adm1+code\", \"#adm1+name\", \"#adm2+code\", \"#adm2+name\", \"\", \"\", \"\", \"#sector\"]}, {\"name\": \"TCD\", \"is_hidden\": false, \"nrows\": 12, \"ncols\": 5, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"Feuil1\", \"is_hidden\": true, \"nrows\": 66, \"ncols\": 16, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"ListOrganisation\", \"is_hidden\": true, \"nrows\": 477, \"ncols\": 2, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"2cd6259ad82ecc6baef941883e5f6bfe\", \"hxl_header_hash\": null, \"headers\": [\"Acronyme\", \"Nom organisation\"], \"hxl_headers\": null}, {\"name\": \"ONGN\", \"is_hidden\": true, \"nrows\": 1925, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Region\", \"Cercle\", \"Commune\", \"Cluster\"], \"hxl_headers\": null}, {\"name\": \"Synthese\", \"is_hidden\": true, \"nrows\": 13888, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Region\", \"Cercle\", \"Commune\", \"Cluster\"], \"hxl_headers\": null}, {\"name\": \"ML_5W (2)\", \"is_hidden\": true, \"nrows\": 7452, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"67e69147cee73143ec83246f859268e7\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Program Organization\", \"Bailleur de fond\", \"admin1Pcod\", \"Region\", \"admin2Pcod\", \"Cercle\", \"admin3Pcod\", \"Commune\", \"Village\", \"Cluster\", \"HRP\", \"Project Title\", \"Date d\\u00e9but\", \"Date fin\", \"Activit\\u00e9s\", \"Montant Cash Transfert (USD)\", \"Total Personnes cibl\\u00e9es\", \"Total Femmescibl\\u00e9es\", \"Total Hommes cibl\\u00e9s\", \"Total Filles cibl\\u00e9es (<18)\", \"Total Gar\\u00e7ons cibl\\u00e9s (<18)\", \"Total Femmes adultes cibl\\u00e9s (> =18)\", \"Total Hommes adultes cibl\\u00e9s (> =18)\", \"Femmes \\u00e2g\\u00e9es cibl\\u00e9es (> =59)\", \"Hommes \\u00e2g\\u00e9s cibl\\u00e9s (> =59)\", \"Personnes vivant avec Handicap cibl\\u00e9es\", \"Total No. atteintes\", \"Total Femmes atteintes\", \"Total Hommes atteints\", \"Total Adult Femmes atteintes (> =18)\", \"Total Adult Hommes atteints (> =18)\", \"Total Filles atteintes (<18)\", \"Total Gar\\u00e7ons atteints (<18)\", \"Femmes ag\\u00e9es atteintes (> =59)\", \"Hommes ag\\u00e9s atteints (> =59)\", \"Personnes vivant avec Handicap atteintes\", \"Remarques\"], \"hxl_headers\": null}, {\"name\": \"Admin\", \"is_hidden\": true, \"nrows\": 720, \"ncols\": 12, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"848dae1712f5bd291cf1524217b08bd0\", \"hxl_header_hash\": null, \"headers\": [\"Admin1\", \"Admin1_Pcode\", \"\", \"Admin1\", \"Admin1_Pcode\", \"Admin2\", \"Admin2_Pcode\", \"\", \"Admin2\", \"Admin2_Pcode\", \"Admin3\", \"Admin3_Pcode\"], \"hxl_headers\": null}]}}]", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/aa0efd37-f743-4f47-8570-dff08735218f/download/mali-3w_troisieme-trimestre2023.xlsx", "id": "aa0efd37-f743-4f47-8570-dff08735218f", "last_modified": "2023-12-08T14:51:32.401544", "metadata_modified": "2023-12-08T14:51:48.472521", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "MALI_3W_September_2023", "originalHash": "-988266717", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "position": 1, "resource_type": "file.upload", "size": 2553303, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/aa0efd37-f743-4f47-8570-dff08735218f/download/mali-3w_troisieme-trimestre2023.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a92fd2e8-4cbc-4366-92a8-1ffbbd6659d1/download/", "cache_last_updated": null, "cache_url": null, "created": "2023-09-28T10:45:28.055088", "dataset_preview_enabled": false, "datastore_active": false, "description": "5W Mali June 2023", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a92fd2e8-4cbc-4366-92a8-1ffbbd6659d1/download/mali-3w_maj-2.xlsx", "format": "XLSX", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2023-09-28T10:45:27.737524\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2023-09-28T10:46:19.130741\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a92fd2e8-4cbc-4366-92a8-1ffbbd6659d1/download/mali-3w_maj-2.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"ML_5W\", \"is_hidden\": false, \"nrows\": 11758, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"67e69147cee73143ec83246f859268e7\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Program Organization\", \"Bailleur de fond\", \"admin1Pcod\", \"Region\", \"admin2Pcod\", \"Cercle\", \"admin3Pcod\", \"Commune\", \"Village\", \"Cluster\", \"HRP\", \"Project Title\", \"Date d\\u00e9but\", \"Date fin\", \"Activit\\u00e9s\", \"Montant Cash Transfert (USD)\", \"Total Personnes cibl\\u00e9es\", \"Total Femmescibl\\u00e9es\", \"Total Hommes cibl\\u00e9s\", \"Total Filles cibl\\u00e9es (<18)\", \"Total Gar\\u00e7ons cibl\\u00e9s (<18)\", \"Total Femmes adultes cibl\\u00e9s (> =18)\", \"Total Hommes adultes cibl\\u00e9s (> =18)\", \"Femmes \\u00e2g\\u00e9es cibl\\u00e9es (> =59)\", \"Hommes \\u00e2g\\u00e9s cibl\\u00e9s (> =59)\", \"Personnes vivant avec Handicap cibl\\u00e9es\", \"Total No. atteintes\", \"Total Femmes atteintes\", \"Total Hommes atteints\", \"Total Adult Femmes atteintes (> =18)\", \"Total Adult Hommes atteints (> =18)\", \"Total Filles atteintes (<18)\", \"Total Gar\\u00e7ons atteints (<18)\", \"Femmes ag\\u00e9es atteintes (> =59)\", \"Hommes ag\\u00e9s atteints (> =59)\", \"Personnes vivant avec Handicap atteintes\", \"Remarques\"], \"hxl_headers\": null}, {\"name\": \"TCD\", \"is_hidden\": false, \"nrows\": 56, \"ncols\": 14, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"ListOrganisation\", \"is_hidden\": true, \"nrows\": 477, \"ncols\": 2, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"2cd6259ad82ecc6baef941883e5f6bfe\", \"hxl_header_hash\": null, \"headers\": [\"Acronyme\", \"Nom organisation\"], \"hxl_headers\": null}, {\"name\": \"ONGN\", \"is_hidden\": true, \"nrows\": 1925, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Region\", \"Cercle\", \"Commune\", \"Cluster\"], \"hxl_headers\": null}, {\"name\": \"Synthese\", \"is_hidden\": true, \"nrows\": 13888, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Region\", \"Cercle\", \"Commune\", \"Cluster\"], \"hxl_headers\": null}, {\"name\": \"ML_5W (2)\", \"is_hidden\": true, \"nrows\": 7452, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"67e69147cee73143ec83246f859268e7\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Program Organization\", \"Bailleur de fond\", \"admin1Pcod\", \"Region\", \"admin2Pcod\", \"Cercle\", \"admin3Pcod\", \"Commune\", \"Village\", \"Cluster\", \"HRP\", \"Project Title\", \"Date d\\u00e9but\", \"Date fin\", \"Activit\\u00e9s\", \"Montant Cash Transfert (USD)\", \"Total Personnes cibl\\u00e9es\", \"Total Femmescibl\\u00e9es\", \"Total Hommes cibl\\u00e9s\", \"Total Filles cibl\\u00e9es (<18)\", \"Total Gar\\u00e7ons cibl\\u00e9s (<18)\", \"Total Femmes adultes cibl\\u00e9s (> =18)\", \"Total Hommes adultes cibl\\u00e9s (> =18)\", \"Femmes \\u00e2g\\u00e9es cibl\\u00e9es (> =59)\", \"Hommes \\u00e2g\\u00e9s cibl\\u00e9s (> =59)\", \"Personnes vivant avec Handicap cibl\\u00e9es\", \"Total No. atteintes\", \"Total Femmes atteintes\", \"Total Hommes atteints\", \"Total Adult Femmes atteintes (> =18)\", \"Total Adult Hommes atteints (> =18)\", \"Total Filles atteintes (<18)\", \"Total Gar\\u00e7ons atteints (<18)\", \"Femmes ag\\u00e9es atteintes (> =59)\", \"Hommes ag\\u00e9s atteints (> =59)\", \"Personnes vivant avec Handicap atteintes\", \"Remarques\"], \"hxl_headers\": null}, {\"name\": \"Admin\", \"is_hidden\": true, \"nrows\": 720, \"ncols\": 12, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"848dae1712f5bd291cf1524217b08bd0\", \"hxl_header_hash\": null, \"headers\": [\"Admin1\", \"Admin1_Pcode\", \"\", \"Admin1\", \"Admin1_Pcode\", \"Admin2\", \"Admin2_Pcode\", \"\", \"Admin2\", \"Admin2_Pcode\", \"Admin3\", \"Admin3_Pcode\"], \"hxl_headers\": null}]}}]", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a92fd2e8-4cbc-4366-92a8-1ffbbd6659d1/download/mali-3w_maj-2.xlsx", "id": "a92fd2e8-4cbc-4366-92a8-1ffbbd6659d1", "last_modified": "2023-09-28T10:45:27.842338", "metadata_modified": "2023-12-06T06:39:22.150534", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "MALI_3W_June_2023", "originalHash": "-988266717", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "position": 2, "resource_type": "file.upload", "size": 6845204, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a92fd2e8-4cbc-4366-92a8-1ffbbd6659d1/download/mali-3w_maj-2.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/cc1fdf79-9b6d-4e7b-bb60-c2c21d1fbcc6/download/", "cache_last_updated": null, "cache_url": null, "created": "2023-05-29T13:24:11.886644", "dataset_preview_enabled": false, "datastore_active": false, "description": "5W Mali Mars 2023", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/cc1fdf79-9b6d-4e7b-bb60-c2c21d1fbcc6/download/mali_3w-presence-operationnelle-premier-trismestre-2023.xlsx", "format": "XLSX", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2023-05-29T13:24:11.540312\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2023-05-29T13:24:29.847168\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": null, \"format\": \"XLSX\", \"sheets\": [{\"name\": \"ML_5W\", \"is_hidden\": false, \"nrows\": 10554, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"67e69147cee73143ec83246f859268e7\", \"hxl_header_hash\": \"334f91cd889f43172a52ae16f588324a\"}, {\"name\": \"ListOrganisation\", \"is_hidden\": true, \"nrows\": 477, \"ncols\": 2, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"2cd6259ad82ecc6baef941883e5f6bfe\", \"hxl_header_hash\": null}, {\"name\": \"ONGN\", \"is_hidden\": true, \"nrows\": 1925, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null}, {\"name\": \"Synthese\", \"is_hidden\": true, \"nrows\": 13888, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null}, {\"name\": \"Analyse\", \"is_hidden\": false, \"nrows\": 13, \"ncols\": 5, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"18267251cad310b4a9ae205cd52e48aa\", \"hxl_header_hash\": null}, {\"name\": \"ML_5W (2)\", \"is_hidden\": true, \"nrows\": 7452, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"67e69147cee73143ec83246f859268e7\", \"hxl_header_hash\": null}, {\"name\": \"Admin\", \"is_hidden\": true, \"nrows\": 720, \"ncols\": 12, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"848dae1712f5bd291cf1524217b08bd0\", \"hxl_header_hash\": null}]}}]", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/cc1fdf79-9b6d-4e7b-bb60-c2c21d1fbcc6/download/mali_3w-presence-operationnelle-premier-trismestre-2023.xlsx", "id": "cc1fdf79-9b6d-4e7b-bb60-c2c21d1fbcc6", "last_modified": "2023-05-29T13:24:11.705001", "metadata_modified": "2024-03-01T12:36:44.929839", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "Mali_5W_Mars_ 2023.xlsx", "originalHash": "-988266717", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "pii_predict_score": 0.7829160250103557, "pii_report_flag": "FINDINGS", "pii_report_id": "/resources/cc1fdf79-9b6d-4e7b-bb60-c2c21d1fbcc6/pii.2023-05-29T13-24-14.main.json", "pii_timestamp": "2023-05-29T13:27:47.136000", "position": 3, "resource_type": "file.upload", "size": 2437269, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/cc1fdf79-9b6d-4e7b-bb60-c2c21d1fbcc6/download/mali_3w-presence-operationnelle-premier-trismestre-2023.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b43e88da-3376-445c-a9e2-6dc259973b3e/download/", "cache_last_updated": null, "cache_url": null, "created": "2022-12-14T12:28:59.029921", "dataset_preview_enabled": false, "datastore_active": false, "description": "5W Mali June 2022", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b43e88da-3376-445c-a9e2-6dc259973b3e/download/mali-5w.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b43e88da-3376-445c-a9e2-6dc259973b3e/download/mali-5w.xlsx", "id": "b43e88da-3376-445c-a9e2-6dc259973b3e", "last_modified": "2022-12-14T12:28:58.279966", "metadata_modified": "2023-05-29T13:24:11.866087", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "5W_MLI_December_2022", "originalHash": "-988266717", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "pii_predict_score": 0.5602018455980524, "pii_report_flag": "FINDINGS", "pii_report_id": "/resources/b43e88da-3376-445c-a9e2-6dc259973b3e/pii.2022-12-14T12-29-05.main.json", "pii_timestamp": "2022-12-14T12:31:31.157000", "position": 4, "resource_type": "file.upload", "size": 2327276, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b43e88da-3376-445c-a9e2-6dc259973b3e/download/mali-5w.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/3a9b274c-3281-429e-990d-4d9c0be77dcd/download/", "cache_last_updated": null, "cache_url": null, "created": "2022-09-30T12:25:23.357686", "dataset_preview_enabled": false, "datastore_active": false, "description": "5W Mali June 2022", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/3a9b274c-3281-429e-990d-4d9c0be77dcd/download/mali-5w_presence-operationnel-dexieme-trimestre-2.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/3a9b274c-3281-429e-990d-4d9c0be77dcd/download/mali-5w_presence-operationnel-dexieme-trimestre-2.xlsx", "id": "3a9b274c-3281-429e-990d-4d9c0be77dcd", "last_modified": "2022-12-02T17:08:01.550696", "metadata_modified": "2022-12-14T12:29:02.783677", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "5W_MLI_June_2022", "originalHash": 1810441166, "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "position": 5, "resource_type": "file.upload", "size": 3019237, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/3a9b274c-3281-429e-990d-4d9c0be77dcd/download/mali-5w_presence-operationnel-dexieme-trimestre-2.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/6ef3deba-a523-45d3-8804-c49a38b31975/download/", "cache_last_updated": null, "cache_url": null, "created": "2022-04-28T14:29:53.319153", "dataset_preview_enabled": false, "datastore_active": false, "description": "5W Mali March 2022", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/6ef3deba-a523-45d3-8804-c49a38b31975/download/mali-5w_mars-2022.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/6ef3deba-a523-45d3-8804-c49a38b31975/download/mali-5w_mars-2022.xlsx", "id": "6ef3deba-a523-45d3-8804-c49a38b31975", "last_modified": "2022-04-28T14:29:52.594393", "metadata_modified": "2022-10-19T23:48:15.592744", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "5W_MLI_Mar2022", "originalHash": 681351314, "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "position": 6, "resource_type": "file.upload", "size": 3962625, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/6ef3deba-a523-45d3-8804-c49a38b31975/download/mali-5w_mars-2022.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/5e6d5b5b-ebd4-44af-afad-a4bbba4ab665/download/", "cache_last_updated": null, "cache_url": null, "created": "2021-12-17T09:45:17.545371", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali December 2021", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/5e6d5b5b-ebd4-44af-afad-a4bbba4ab665/download/mali_5w_decembre2021.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/5e6d5b5b-ebd4-44af-afad-a4bbba4ab665/download/mali_5w_decembre2021.xlsx", "id": "5e6d5b5b-ebd4-44af-afad-a4bbba4ab665", "last_modified": "2021-12-17T09:45:16.952001", "metadata_modified": "2022-09-30T12:25:23.184602", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "3W_MLI_Dec2021", "originalHash": -671534968, "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "pii_is_sensitive": false, "position": 7, "resource_type": "file.upload", "size": 960315, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/5e6d5b5b-ebd4-44af-afad-a4bbba4ab665/download/mali_5w_decembre2021.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/86f31370-7614-417a-9b3d-6f008daa4637/download/", "cache_last_updated": null, "cache_url": null, "created": "2021-11-25T13:41:50.433011", "dataset_preview_enabled": false, "datastore_active": false, "description": "5W Mali August 2021", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/86f31370-7614-417a-9b3d-6f008daa4637/download/mli_5w_2021.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/86f31370-7614-417a-9b3d-6f008daa4637/download/mli_5w_2021.xlsx", "id": "86f31370-7614-417a-9b3d-6f008daa4637", "last_modified": "2021-11-25T13:46:27.234466", "metadata_modified": "2022-09-30T12:25:23.184769", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "5W_Mali_August2021.xlsx", "originalHash": 2047537863, "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "pii_is_sensitive": false, "pii_predict_score": 0.09747086295684172, "pii_report_flag": "FINDINGS", "pii_report_id": "/resources/86f31370-7614-417a-9b3d-6f008daa4637/pii.2021-11-25T13-46-29.main.json", "pii_timestamp": "2021-11-25T13:47:51.450000", "position": 8, "resource_type": "file.upload", "size": 831415, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/86f31370-7614-417a-9b3d-6f008daa4637/download/mli_5w_2021.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a36895aa-95c9-426e-b807-b7ae9625837a/download/", "cache_last_updated": null, "cache_url": null, "created": "2021-01-26T10:36:06.135921", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali Jul 2020", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a36895aa-95c9-426e-b807-b7ae9625837a/download/mli_ocha_3w_20201007_vf.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a36895aa-95c9-426e-b807-b7ae9625837a/download/mli_ocha_3w_20201007_vf.xlsx", "id": "a36895aa-95c9-426e-b807-b7ae9625837a", "last_modified": "2021-01-26T10:36:05.126282", "metadata_modified": "2022-09-30T12:25:23.184981", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "mli_ocha_3w_20201007_vf.xlsx", "originalHash": "-988266717", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "position": 9, "resource_type": "file.upload", "size": 892273, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a36895aa-95c9-426e-b807-b7ae9625837a/download/mli_ocha_3w_20201007_vf.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/bd1b2e3f-6601-434b-bca5-cd82272b8020/download/", "cache_last_updated": null, "cache_url": null, "created": "2020-05-15T14:33:45.738362", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W April 2020", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/bd1b2e3f-6601-434b-bca5-cd82272b8020/download/3w_mli_avril-2020_vf.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/bd1b2e3f-6601-434b-bca5-cd82272b8020/download/3w_mli_avril-2020_vf.xlsx", "id": "bd1b2e3f-6601-434b-bca5-cd82272b8020", "last_modified": "2020-05-15T14:33:44.268281", "metadata_modified": "2022-09-30T12:25:23.185143", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "3W_MLI_Apr2020", "originalHash": "416825748", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "position": 10, "resource_type": "file.upload", "size": 319226, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/bd1b2e3f-6601-434b-bca5-cd82272b8020/download/3w_mli_avril-2020_vf.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/7ca25c7a-452e-434a-b01b-fac27d3e325b/download/", "cache_last_updated": null, "cache_url": null, "created": "2019-12-03T15:53:13.835943", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali December 2019", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/7ca25c7a-452e-434a-b01b-fac27d3e325b/download/3w_mli_nov2019.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/7ca25c7a-452e-434a-b01b-fac27d3e325b/download/3w_mli_nov2019.xlsx", "id": "7ca25c7a-452e-434a-b01b-fac27d3e325b", "last_modified": "2019-12-03T15:53:13.239034", "metadata_modified": "2022-09-30T12:25:23.185302", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "3W_MLI_Dec2019", "originalHash": "-366584721", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "position": 11, "resource_type": "file.upload", "size": 311146, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/7ca25c7a-452e-434a-b01b-fac27d3e325b/download/3w_mli_nov2019.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/843fd9ce-0362-4a2c-91c8-6b5714a8bef4/download/", "cache_last_updated": null, "cache_url": null, "created": "2018-12-27T12:15:28.922780", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali December 2018", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/843fd9ce-0362-4a2c-91c8-6b5714a8bef4/download/mali_3wop_decembre_2018.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/843fd9ce-0362-4a2c-91c8-6b5714a8bef4/download/mali_3wop_decembre_2018.xlsx", "id": "843fd9ce-0362-4a2c-91c8-6b5714a8bef4", "last_modified": "2019-01-22T14:37:40.134777", "metadata_modified": "2022-09-30T12:25:23.185457", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "3W_MLI_Dec2018", "originalHash": "-221574218", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "position": 12, "resource_type": "file.upload", "size": 83343, "state": "active", "tracking_summary[recent]": "0", "tracking_summary[total]": "0", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/843fd9ce-0362-4a2c-91c8-6b5714a8bef4/download/mali_3wop_decembre_2018.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/55fbdb38-1517-4bde-97bf-dac0b05d9cbd/download/", "cache_last_updated": null, "cache_url": null, "created": "2018-08-23T11:08:52.262584", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali August 2018", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/55fbdb38-1517-4bde-97bf-dac0b05d9cbd/download/mali_3wop_august_2018_eng.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/55fbdb38-1517-4bde-97bf-dac0b05d9cbd/download/mali_3wop_august_2018_eng.xlsx", "id": "55fbdb38-1517-4bde-97bf-dac0b05d9cbd", "last_modified": "2018-08-23T11:08:51.882278", "metadata_modified": "2022-09-30T12:25:23.185624", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "3W_MLI_Aug2018", "originalHash": "-1384762142", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "position": 13, "resource_type": "file.upload", "size": 38454, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/55fbdb38-1517-4bde-97bf-dac0b05d9cbd/download/mali_3wop_august_2018_eng.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b8f708da-e596-456c-b550-f88959970d21/download/", "cache_last_updated": null, "cache_url": null, "created": "2018-01-09T10:39:43.815902", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali December 2017", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b8f708da-e596-456c-b550-f88959970d21/download/mali_3wop_decembre-2017.xls", "format": "XLS", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b8f708da-e596-456c-b550-f88959970d21/download/mali_3wop_decembre-2017.xls", "id": "b8f708da-e596-456c-b550-f88959970d21", "last_modified": "2018-01-09T10:39:43.170281", "metadata_modified": "2022-09-30T12:25:23.185776", "microdata": false, "mimetype": null, "mimetype_inner": null, "name": "3W_MLI_Dec2017", "originalHash": "-815647867", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "position": 14, "resource_type": "file.upload", "size": 92160, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b8f708da-e596-456c-b550-f88959970d21/download/mali_3wop_decembre-2017.xls", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/1ac80d41-4fd0-4f65-8f04-2cd98f4c09b1/download/", "cache_last_updated": null, "cache_url": null, "created": "2017-08-14T10:18:56.626082", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali June 2017", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/1ac80d41-4fd0-4f65-8f04-2cd98f4c09b1/download/mali_3wop_juin-2017.xls", "format": "XLS", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/1ac80d41-4fd0-4f65-8f04-2cd98f4c09b1/download/mali_3wop_juin-2017.xls", "id": "1ac80d41-4fd0-4f65-8f04-2cd98f4c09b1", "last_modified": "2017-08-14T10:18:56.382914", "metadata_modified": "2022-09-30T12:25:23.193094", "microdata": false, "mimetype": null, "mimetype_inner": null, "name": "3W_MLI_Juin 2017", "originalHash": "-1895260185", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "position": 15, "resource_type": "file.upload", "size": 101888, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/1ac80d41-4fd0-4f65-8f04-2cd98f4c09b1/download/mali_3wop_juin-2017.xls", "url_type": "upload"}, {"cache_last_updated": null, "cache_url": null, "created": "2020-01-03T08:07:24.653246", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali Nov 2016", "download_url": "https://data.humdata.org/dataset/mali-who-does-what-where-3w", "format": "Web App", "hash": "", "hdx_rel_url": "https://data.humdata.org/dataset/mali-who-does-what-where-3w", "id": "c12479a4-0a65-423b-a651-9c79c8886395", "last_modified": "2020-01-03T08:07:24.419407", "metadata_modified": "2023-03-03T04:47:37.186863", "microdata": false, "mimetype": null, "mimetype_inner": null, "name": "3W_MLI_Nov 2016", "originalHash": "1116936704", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "position": 16, "resource_type": "api", "size": null, "state": "active", "url": "https://data.humdata.org/dataset/4037c956-8c24-45a0-9150-0235b17eb522/resource/1b9a03ac-7f39-4277-9638-da503e886238/download/mali_3wop_nov_2016.xlsm", "url_type": "api"}]} +{"archived": false, "creator_user_id": "65d9c488-3b0a-4f1d-89c4-f5a2ce5bd6be", "data_update_frequency": "180", "dataset_date": "[2016-11-01T00:00:00 TO 2023-12-31T23:59:59]", "dataset_preview": "resource_id", "dataset_source": "Humanitarian partners", "due_date": "2024-12-08T08:45:45", "has_geodata": false, "has_quickcharts": true, "has_showcases": false, "id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "is_requestdata_type": false, "isopen": false, "last_modified": "2024-06-11T08:45:45.885831", "license_id": "cc-by-igo", "license_title": "Creative Commons Attribution for Intergovernmental Organisations", "license_url": "http://creativecommons.org/licenses/by/3.0/igo/legalcode", "maintainer": "00e199a9-665e-4d58-8dbb-b3f7458dc02b", "maintainer_email": null, "metadata_created": "2017-08-14T10:18:54.537494", "metadata_modified": "2024-06-11T08:45:59.469344", "methodology": "Registry", "name": "mali-operational-presence", "notes": "The Who does What Where (3W) is a core humanitarian coordination dataset. It is critical to know where humanitarian organizations are working and what they are doing in order to identify gaps and plan for future humanitarian response. This dataset includes a list of humanitarian organizations operating in Mali at Admin 3.\r\n", "num_resources": 18, "num_tags": 4, "organization": {"id": "380d709f-ab7f-484d-b5a4-b3ddbd192b3a", "name": "ocha-mali", "title": "OCHA Mali", "type": "organization", "description": "United Nations Office for the Coordination of Humanitarian Affairs Mali country office", "image_url": "", "created": "2014-07-16T13:21:42.112999", "is_organization": true, "approval_status": "approved", "state": "active"}, "overdue_date": "2025-01-07T08:45:45", "owner_org": "380d709f-ab7f-484d-b5a4-b3ddbd192b3a", "package_creator": "dabo", "pageviews_last_14_days": 11, "private": false, "qa_completed": false, "review_date": "2021-12-28T09:54:43.209766", "solr_additions": "{\"countries\": [\"Mali\"]}", "state": "active", "subnational": "1", "title": "Mali: Operational Presence", "total_res_downloads": 3729, "type": "dataset", "url": null, "version": null, "groups": [{"description": "", "display_name": "Mali", "id": "mli", "image_display_url": "", "name": "mli", "title": "Mali"}], "tags": [{"display_name": "hxl", "id": "a0fbb23a-6aad-4ccc-8062-e9ef9f20e5d2", "name": "hxl", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "operational capacity", "id": "d8a59526-9f9a-4c71-b38f-5d9f2eb1615a", "name": "operational capacity", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "operational presence", "id": "a25059f9-7e1f-49be-b629-ccccd97a95f8", "name": "operational presence", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "who is doing what and where-3w-4w-5w", "id": "ec53893c-6dba-4656-978b-4a32289ea2eb", "name": "who is doing what and where-3w-4w-5w", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}], "relationships_as_subject": [], "relationships_as_object": [], "is_fresh": true, "update_status": "fresh", "x_resource_grouping": [], "resources": [{"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/28c2bfa5-e0a3-4f66-b450-51641f337b9e/download/", "cache_last_updated": null, "cache_url": null, "created": "2024-06-11T08:45:46.037060", "dataset_preview_enabled": false, "datastore_active": false, "description": "MALI_3W_Mars_2024", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/28c2bfa5-e0a3-4f66-b450-51641f337b9e/download/mali-5w_po-mars-2024.xlsx", "format": "XLSX", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2024-06-11T08:45:45.692716\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2024-06-11T08:45:59.074215\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/28c2bfa5-e0a3-4f66-b450-51641f337b9e/download/mali-5w_po-mars-2024.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"ML_5W\", \"is_hidden\": false, \"nrows\": 10916, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"183cac5babbb17371be02fd802565bd7\", \"hxl_header_hash\": \"b3bbec428c31d2d95cc7184b44e6e022\", \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Program Organization\", \"Bailleur de fond\", \"admin1Pcod\", \"Region\", \"admin2Pcod\", \"Cercle\", \"admin3Pcod\", \"Commune\", \"Village\", \"Cluster\"], \"hxl_headers\": [\"#org+acronym\", \"#org+name\", \"#org+type\", \"\", \"#actor\", \"#adm1+code\", \"#adm1+name\", \"#adm2+code\", \"#adm2+name\", \"#adm3+code\", \"\", \"\", \"#sector\"]}, {\"name\": \"Feuil1\", \"is_hidden\": true, \"nrows\": 18, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"TCD\", \"is_hidden\": false, \"nrows\": 149, \"ncols\": 25, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"Arch\", \"is_hidden\": true, \"nrows\": 11829, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"67e69147cee73143ec83246f859268e7\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Program Organization\", \"Bailleur de fond\", \"admin1Pcod\", \"Region\", \"admin2Pcod\", \"Cercle\", \"admin3Pcod\", \"Commune\", \"Village\", \"Cluster\", \"HRP\", \"Project Title\", \"Date d\\u00e9but\", \"Date fin\", \"Activit\\u00e9s\", \"Montant Cash Transfert (USD)\", \"Total Personnes cibl\\u00e9es\", \"Total Femmescibl\\u00e9es\", \"Total Hommes cibl\\u00e9s\", \"Total Filles cibl\\u00e9es (<18)\", \"Total Gar\\u00e7ons cibl\\u00e9s (<18)\", \"Total Femmes adultes cibl\\u00e9s (> =18)\", \"Total Hommes adultes cibl\\u00e9s (> =18)\", \"Femmes \\u00e2g\\u00e9es cibl\\u00e9es (> =59)\", \"Hommes \\u00e2g\\u00e9s cibl\\u00e9s (> =59)\", \"Personnes vivant avec Handicap cibl\\u00e9es\", \"Total No. atteintes\", \"Total Femmes atteintes\", \"Total Hommes atteints\", \"Total Adult Femmes atteintes (> =18)\", \"Total Adult Hommes atteints (> =18)\", \"Total Filles atteintes (<18)\", \"Total Gar\\u00e7ons atteints (<18)\", \"Femmes ag\\u00e9es atteintes (> =59)\", \"Hommes ag\\u00e9s atteints (> =59)\", \"Personnes vivant avec Handicap atteintes\", \"Remarques\"], \"hxl_headers\": null}, {\"name\": \"ListOrganisation\", \"is_hidden\": true, \"nrows\": 477, \"ncols\": 2, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"2cd6259ad82ecc6baef941883e5f6bfe\", \"hxl_header_hash\": null, \"headers\": [\"Acronyme\", \"Nom organisation\"], \"hxl_headers\": null}, {\"name\": \"ONGN\", \"is_hidden\": true, \"nrows\": 1925, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Region\", \"Cercle\", \"Commune\", \"Cluster\"], \"hxl_headers\": null}, {\"name\": \"Synthese\", \"is_hidden\": true, \"nrows\": 13888, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Region\", \"Cercle\", \"Commune\", \"Cluster\"], \"hxl_headers\": null}, {\"name\": \"ML_5W (2)\", \"is_hidden\": true, \"nrows\": 7452, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"67e69147cee73143ec83246f859268e7\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Program Organization\", \"Bailleur de fond\", \"admin1Pcod\", \"Region\", \"admin2Pcod\", \"Cercle\", \"admin3Pcod\", \"Commune\", \"Village\", \"Cluster\", \"HRP\", \"Project Title\", \"Date d\\u00e9but\", \"Date fin\", \"Activit\\u00e9s\", \"Montant Cash Transfert (USD)\", \"Total Personnes cibl\\u00e9es\", \"Total Femmescibl\\u00e9es\", \"Total Hommes cibl\\u00e9s\", \"Total Filles cibl\\u00e9es (<18)\", \"Total Gar\\u00e7ons cibl\\u00e9s (<18)\", \"Total Femmes adultes cibl\\u00e9s (> =18)\", \"Total Hommes adultes cibl\\u00e9s (> =18)\", \"Femmes \\u00e2g\\u00e9es cibl\\u00e9es (> =59)\", \"Hommes \\u00e2g\\u00e9s cibl\\u00e9s (> =59)\", \"Personnes vivant avec Handicap cibl\\u00e9es\", \"Total No. atteintes\", \"Total Femmes atteintes\", \"Total Hommes atteints\", \"Total Adult Femmes atteintes (> =18)\", \"Total Adult Hommes atteints (> =18)\", \"Total Filles atteintes (<18)\", \"Total Gar\\u00e7ons atteints (<18)\", \"Femmes ag\\u00e9es atteintes (> =59)\", \"Hommes ag\\u00e9s atteints (> =59)\", \"Personnes vivant avec Handicap atteintes\", \"Remarques\"], \"hxl_headers\": null}, {\"name\": \"Admin\", \"is_hidden\": true, \"nrows\": 720, \"ncols\": 12, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"848dae1712f5bd291cf1524217b08bd0\", \"hxl_header_hash\": null, \"headers\": [\"Admin1\", \"Admin1_Pcode\", \"\", \"Admin1\", \"Admin1_Pcode\", \"Admin2\", \"Admin2_Pcode\", \"\", \"Admin2\", \"Admin2_Pcode\", \"Admin3\", \"Admin3_Pcode\"], \"hxl_headers\": null}]}}]", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/28c2bfa5-e0a3-4f66-b450-51641f337b9e/download/mali-5w_po-mars-2024.xlsx", "id": "28c2bfa5-e0a3-4f66-b450-51641f337b9e", "last_modified": "2024-06-11T08:45:45.885831", "metadata_modified": "2024-06-11T08:45:59.491680", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "MALI 3W_Mars_2024", "originalHash": "-988266717", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "position": 0, "resource_type": "file.upload", "size": 3688417, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/28c2bfa5-e0a3-4f66-b450-51641f337b9e/download/mali-5w_po-mars-2024.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b28928be-1847-408f-b3cd-9b87b596c710/download/", "cache_last_updated": null, "cache_url": null, "created": "2024-03-01T12:33:46.907689", "dataset_preview_enabled": true, "datastore_active": false, "description": "MALI_3W_December_2023", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b28928be-1847-408f-b3cd-9b87b596c710/download/mali-3w-presence-operationnelle-december-2023.xlsx", "format": "XLSX", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2024-03-01T12:33:46.593582\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2024-03-01T12:34:08.377739\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b28928be-1847-408f-b3cd-9b87b596c710/download/mali-3w-presence-operationnelle-december-2023.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"ML_5W\", \"is_hidden\": false, \"nrows\": 24090, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"183cac5babbb17371be02fd802565bd7\", \"hxl_header_hash\": \"b3bbec428c31d2d95cc7184b44e6e022\", \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Program Organization\", \"Bailleur de fond\", \"admin1Pcod\", \"Region\", \"admin2Pcod\", \"Cercle\", \"admin3Pcod\", \"Commune\", \"Village\", \"Cluster\"], \"hxl_headers\": [\"#org+acronym\", \"#org+name\", \"#org+type\", \"\", \"#actor\", \"#adm1+code\", \"#adm1+name\", \"#adm2+code\", \"#adm2+name\", \"#adm3+code\", \"\", \"\", \"#sector\"]}, {\"name\": \"TCD\", \"is_hidden\": false, \"nrows\": 12, \"ncols\": 5, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"Feuil1\", \"is_hidden\": true, \"nrows\": 66, \"ncols\": 16, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"ListOrganisation\", \"is_hidden\": true, \"nrows\": 477, \"ncols\": 2, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"2cd6259ad82ecc6baef941883e5f6bfe\", \"hxl_header_hash\": null, \"headers\": [\"Acronyme\", \"Nom organisation\"], \"hxl_headers\": null}, {\"name\": \"ONGN\", \"is_hidden\": true, \"nrows\": 1925, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Region\", \"Cercle\", \"Commune\", \"Cluster\"], \"hxl_headers\": null}, {\"name\": \"Synthese\", \"is_hidden\": true, \"nrows\": 13888, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Region\", \"Cercle\", \"Commune\", \"Cluster\"], \"hxl_headers\": null}, {\"name\": \"ML_5W (2)\", \"is_hidden\": true, \"nrows\": 7452, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"67e69147cee73143ec83246f859268e7\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Program Organization\", \"Bailleur de fond\", \"admin1Pcod\", \"Region\", \"admin2Pcod\", \"Cercle\", \"admin3Pcod\", \"Commune\", \"Village\", \"Cluster\", \"HRP\", \"Project Title\", \"Date d\\u00e9but\", \"Date fin\", \"Activit\\u00e9s\", \"Montant Cash Transfert (USD)\", \"Total Personnes cibl\\u00e9es\", \"Total Femmescibl\\u00e9es\", \"Total Hommes cibl\\u00e9s\", \"Total Filles cibl\\u00e9es (<18)\", \"Total Gar\\u00e7ons cibl\\u00e9s (<18)\", \"Total Femmes adultes cibl\\u00e9s (> =18)\", \"Total Hommes adultes cibl\\u00e9s (> =18)\", \"Femmes \\u00e2g\\u00e9es cibl\\u00e9es (> =59)\", \"Hommes \\u00e2g\\u00e9s cibl\\u00e9s (> =59)\", \"Personnes vivant avec Handicap cibl\\u00e9es\", \"Total No. atteintes\", \"Total Femmes atteintes\", \"Total Hommes atteints\", \"Total Adult Femmes atteintes (> =18)\", \"Total Adult Hommes atteints (> =18)\", \"Total Filles atteintes (<18)\", \"Total Gar\\u00e7ons atteints (<18)\", \"Femmes ag\\u00e9es atteintes (> =59)\", \"Hommes ag\\u00e9s atteints (> =59)\", \"Personnes vivant avec Handicap atteintes\", \"Remarques\"], \"hxl_headers\": null}, {\"name\": \"Admin\", \"is_hidden\": true, \"nrows\": 720, \"ncols\": 12, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"848dae1712f5bd291cf1524217b08bd0\", \"hxl_header_hash\": null, \"headers\": [\"Admin1\", \"Admin1_Pcode\", \"\", \"Admin1\", \"Admin1_Pcode\", \"Admin2\", \"Admin2_Pcode\", \"\", \"Admin2\", \"Admin2_Pcode\", \"Admin3\", \"Admin3_Pcode\"], \"hxl_headers\": null}]}}]", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b28928be-1847-408f-b3cd-9b87b596c710/download/mali-3w-presence-operationnelle-december-2023.xlsx", "id": "b28928be-1847-408f-b3cd-9b87b596c710", "last_modified": "2024-03-01T12:33:46.790264", "metadata_modified": "2024-06-11T08:45:46.017938", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "MALI_3W_December_2023", "originalHash": 1357368503, "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "position": 1, "resource_type": "file.upload", "size": 3819621, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b28928be-1847-408f-b3cd-9b87b596c710/download/mali-3w-presence-operationnelle-december-2023.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/aa0efd37-f743-4f47-8570-dff08735218f/download/", "cache_last_updated": null, "cache_url": null, "created": "2023-12-08T14:51:32.598022", "dataset_preview_enabled": false, "datastore_active": false, "description": "MALI_3W_September_2023", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/aa0efd37-f743-4f47-8570-dff08735218f/download/mali-3w_troisieme-trimestre2023.xlsx", "format": "XLSX", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2023-12-08T14:51:32.307047\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2023-12-08T14:51:48.271834\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/aa0efd37-f743-4f47-8570-dff08735218f/download/mali-3w_troisieme-trimestre2023.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"ML_3W\", \"is_hidden\": false, \"nrows\": 11170, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"183cac5babbb17371be02fd802565bd7\", \"hxl_header_hash\": \"bbb1f31f8030f8a2e3e68f80575c3b3c\", \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Program Organization\", \"Bailleur de fond\", \"admin1Pcod\", \"Region\", \"admin2Pcod\", \"Cercle\", \"admin3Pcod\", \"Commune\", \"Village\", \"Cluster\"], \"hxl_headers\": [\"#org+acronym\", \"#org+name\", \"#org+type\", \"\", \"#actor\", \"#adm1+code\", \"#adm1+name\", \"#adm2+code\", \"#adm2+name\", \"\", \"\", \"\", \"#sector\"]}, {\"name\": \"TCD\", \"is_hidden\": false, \"nrows\": 12, \"ncols\": 5, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"Feuil1\", \"is_hidden\": true, \"nrows\": 66, \"ncols\": 16, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"ListOrganisation\", \"is_hidden\": true, \"nrows\": 477, \"ncols\": 2, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"2cd6259ad82ecc6baef941883e5f6bfe\", \"hxl_header_hash\": null, \"headers\": [\"Acronyme\", \"Nom organisation\"], \"hxl_headers\": null}, {\"name\": \"ONGN\", \"is_hidden\": true, \"nrows\": 1925, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Region\", \"Cercle\", \"Commune\", \"Cluster\"], \"hxl_headers\": null}, {\"name\": \"Synthese\", \"is_hidden\": true, \"nrows\": 13888, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Region\", \"Cercle\", \"Commune\", \"Cluster\"], \"hxl_headers\": null}, {\"name\": \"ML_5W (2)\", \"is_hidden\": true, \"nrows\": 7452, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"67e69147cee73143ec83246f859268e7\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Program Organization\", \"Bailleur de fond\", \"admin1Pcod\", \"Region\", \"admin2Pcod\", \"Cercle\", \"admin3Pcod\", \"Commune\", \"Village\", \"Cluster\", \"HRP\", \"Project Title\", \"Date d\\u00e9but\", \"Date fin\", \"Activit\\u00e9s\", \"Montant Cash Transfert (USD)\", \"Total Personnes cibl\\u00e9es\", \"Total Femmescibl\\u00e9es\", \"Total Hommes cibl\\u00e9s\", \"Total Filles cibl\\u00e9es (<18)\", \"Total Gar\\u00e7ons cibl\\u00e9s (<18)\", \"Total Femmes adultes cibl\\u00e9s (> =18)\", \"Total Hommes adultes cibl\\u00e9s (> =18)\", \"Femmes \\u00e2g\\u00e9es cibl\\u00e9es (> =59)\", \"Hommes \\u00e2g\\u00e9s cibl\\u00e9s (> =59)\", \"Personnes vivant avec Handicap cibl\\u00e9es\", \"Total No. atteintes\", \"Total Femmes atteintes\", \"Total Hommes atteints\", \"Total Adult Femmes atteintes (> =18)\", \"Total Adult Hommes atteints (> =18)\", \"Total Filles atteintes (<18)\", \"Total Gar\\u00e7ons atteints (<18)\", \"Femmes ag\\u00e9es atteintes (> =59)\", \"Hommes ag\\u00e9s atteints (> =59)\", \"Personnes vivant avec Handicap atteintes\", \"Remarques\"], \"hxl_headers\": null}, {\"name\": \"Admin\", \"is_hidden\": true, \"nrows\": 720, \"ncols\": 12, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"848dae1712f5bd291cf1524217b08bd0\", \"hxl_header_hash\": null, \"headers\": [\"Admin1\", \"Admin1_Pcode\", \"\", \"Admin1\", \"Admin1_Pcode\", \"Admin2\", \"Admin2_Pcode\", \"\", \"Admin2\", \"Admin2_Pcode\", \"Admin3\", \"Admin3_Pcode\"], \"hxl_headers\": null}]}}]", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/aa0efd37-f743-4f47-8570-dff08735218f/download/mali-3w_troisieme-trimestre2023.xlsx", "id": "aa0efd37-f743-4f47-8570-dff08735218f", "last_modified": "2023-12-08T14:51:32.401544", "metadata_modified": "2023-12-08T14:51:48.472521", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "MALI_3W_September_2023", "originalHash": "-988266717", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "position": 2, "resource_type": "file.upload", "size": 2553303, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/aa0efd37-f743-4f47-8570-dff08735218f/download/mali-3w_troisieme-trimestre2023.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a92fd2e8-4cbc-4366-92a8-1ffbbd6659d1/download/", "cache_last_updated": null, "cache_url": null, "created": "2023-09-28T10:45:28.055088", "dataset_preview_enabled": false, "datastore_active": false, "description": "5W Mali June 2023", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a92fd2e8-4cbc-4366-92a8-1ffbbd6659d1/download/mali-3w_maj-2.xlsx", "format": "XLSX", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2023-09-28T10:45:27.737524\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2023-09-28T10:46:19.130741\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a92fd2e8-4cbc-4366-92a8-1ffbbd6659d1/download/mali-3w_maj-2.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"ML_5W\", \"is_hidden\": false, \"nrows\": 11758, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"67e69147cee73143ec83246f859268e7\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Program Organization\", \"Bailleur de fond\", \"admin1Pcod\", \"Region\", \"admin2Pcod\", \"Cercle\", \"admin3Pcod\", \"Commune\", \"Village\", \"Cluster\", \"HRP\", \"Project Title\", \"Date d\\u00e9but\", \"Date fin\", \"Activit\\u00e9s\", \"Montant Cash Transfert (USD)\", \"Total Personnes cibl\\u00e9es\", \"Total Femmescibl\\u00e9es\", \"Total Hommes cibl\\u00e9s\", \"Total Filles cibl\\u00e9es (<18)\", \"Total Gar\\u00e7ons cibl\\u00e9s (<18)\", \"Total Femmes adultes cibl\\u00e9s (> =18)\", \"Total Hommes adultes cibl\\u00e9s (> =18)\", \"Femmes \\u00e2g\\u00e9es cibl\\u00e9es (> =59)\", \"Hommes \\u00e2g\\u00e9s cibl\\u00e9s (> =59)\", \"Personnes vivant avec Handicap cibl\\u00e9es\", \"Total No. atteintes\", \"Total Femmes atteintes\", \"Total Hommes atteints\", \"Total Adult Femmes atteintes (> =18)\", \"Total Adult Hommes atteints (> =18)\", \"Total Filles atteintes (<18)\", \"Total Gar\\u00e7ons atteints (<18)\", \"Femmes ag\\u00e9es atteintes (> =59)\", \"Hommes ag\\u00e9s atteints (> =59)\", \"Personnes vivant avec Handicap atteintes\", \"Remarques\"], \"hxl_headers\": null}, {\"name\": \"TCD\", \"is_hidden\": false, \"nrows\": 56, \"ncols\": 14, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"ListOrganisation\", \"is_hidden\": true, \"nrows\": 477, \"ncols\": 2, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"2cd6259ad82ecc6baef941883e5f6bfe\", \"hxl_header_hash\": null, \"headers\": [\"Acronyme\", \"Nom organisation\"], \"hxl_headers\": null}, {\"name\": \"ONGN\", \"is_hidden\": true, \"nrows\": 1925, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Region\", \"Cercle\", \"Commune\", \"Cluster\"], \"hxl_headers\": null}, {\"name\": \"Synthese\", \"is_hidden\": true, \"nrows\": 13888, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Region\", \"Cercle\", \"Commune\", \"Cluster\"], \"hxl_headers\": null}, {\"name\": \"ML_5W (2)\", \"is_hidden\": true, \"nrows\": 7452, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"67e69147cee73143ec83246f859268e7\", \"hxl_header_hash\": null, \"headers\": [\"Organisation Accronyme\", \"Nom Organisation\", \"Type Organisation\", \"Program Organization\", \"Bailleur de fond\", \"admin1Pcod\", \"Region\", \"admin2Pcod\", \"Cercle\", \"admin3Pcod\", \"Commune\", \"Village\", \"Cluster\", \"HRP\", \"Project Title\", \"Date d\\u00e9but\", \"Date fin\", \"Activit\\u00e9s\", \"Montant Cash Transfert (USD)\", \"Total Personnes cibl\\u00e9es\", \"Total Femmescibl\\u00e9es\", \"Total Hommes cibl\\u00e9s\", \"Total Filles cibl\\u00e9es (<18)\", \"Total Gar\\u00e7ons cibl\\u00e9s (<18)\", \"Total Femmes adultes cibl\\u00e9s (> =18)\", \"Total Hommes adultes cibl\\u00e9s (> =18)\", \"Femmes \\u00e2g\\u00e9es cibl\\u00e9es (> =59)\", \"Hommes \\u00e2g\\u00e9s cibl\\u00e9s (> =59)\", \"Personnes vivant avec Handicap cibl\\u00e9es\", \"Total No. atteintes\", \"Total Femmes atteintes\", \"Total Hommes atteints\", \"Total Adult Femmes atteintes (> =18)\", \"Total Adult Hommes atteints (> =18)\", \"Total Filles atteintes (<18)\", \"Total Gar\\u00e7ons atteints (<18)\", \"Femmes ag\\u00e9es atteintes (> =59)\", \"Hommes ag\\u00e9s atteints (> =59)\", \"Personnes vivant avec Handicap atteintes\", \"Remarques\"], \"hxl_headers\": null}, {\"name\": \"Admin\", \"is_hidden\": true, \"nrows\": 720, \"ncols\": 12, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"848dae1712f5bd291cf1524217b08bd0\", \"hxl_header_hash\": null, \"headers\": [\"Admin1\", \"Admin1_Pcode\", \"\", \"Admin1\", \"Admin1_Pcode\", \"Admin2\", \"Admin2_Pcode\", \"\", \"Admin2\", \"Admin2_Pcode\", \"Admin3\", \"Admin3_Pcode\"], \"hxl_headers\": null}]}}]", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a92fd2e8-4cbc-4366-92a8-1ffbbd6659d1/download/mali-3w_maj-2.xlsx", "id": "a92fd2e8-4cbc-4366-92a8-1ffbbd6659d1", "last_modified": "2023-09-28T10:45:27.842338", "metadata_modified": "2023-12-06T06:39:22.150534", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "MALI_3W_June_2023", "originalHash": "-988266717", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "position": 3, "resource_type": "file.upload", "size": 6845204, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a92fd2e8-4cbc-4366-92a8-1ffbbd6659d1/download/mali-3w_maj-2.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/cc1fdf79-9b6d-4e7b-bb60-c2c21d1fbcc6/download/", "cache_last_updated": null, "cache_url": null, "created": "2023-05-29T13:24:11.886644", "dataset_preview_enabled": false, "datastore_active": false, "description": "5W Mali Mars 2023", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/cc1fdf79-9b6d-4e7b-bb60-c2c21d1fbcc6/download/mali_3w-presence-operationnelle-premier-trismestre-2023.xlsx", "format": "XLSX", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2023-05-29T13:24:11.540312\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2023-05-29T13:24:29.847168\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": null, \"format\": \"XLSX\", \"sheets\": [{\"name\": \"ML_5W\", \"is_hidden\": false, \"nrows\": 10554, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"67e69147cee73143ec83246f859268e7\", \"hxl_header_hash\": \"334f91cd889f43172a52ae16f588324a\"}, {\"name\": \"ListOrganisation\", \"is_hidden\": true, \"nrows\": 477, \"ncols\": 2, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"2cd6259ad82ecc6baef941883e5f6bfe\", \"hxl_header_hash\": null}, {\"name\": \"ONGN\", \"is_hidden\": true, \"nrows\": 1925, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null}, {\"name\": \"Synthese\", \"is_hidden\": true, \"nrows\": 13888, \"ncols\": 11, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"681fa246b5a6eef64f8432fb36b73433\", \"hxl_header_hash\": null}, {\"name\": \"Analyse\", \"is_hidden\": false, \"nrows\": 13, \"ncols\": 5, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"18267251cad310b4a9ae205cd52e48aa\", \"hxl_header_hash\": null}, {\"name\": \"ML_5W (2)\", \"is_hidden\": true, \"nrows\": 7452, \"ncols\": 40, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"67e69147cee73143ec83246f859268e7\", \"hxl_header_hash\": null}, {\"name\": \"Admin\", \"is_hidden\": true, \"nrows\": 720, \"ncols\": 12, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": \"848dae1712f5bd291cf1524217b08bd0\", \"hxl_header_hash\": null}]}}]", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/cc1fdf79-9b6d-4e7b-bb60-c2c21d1fbcc6/download/mali_3w-presence-operationnelle-premier-trismestre-2023.xlsx", "id": "cc1fdf79-9b6d-4e7b-bb60-c2c21d1fbcc6", "last_modified": "2023-05-29T13:24:11.705001", "metadata_modified": "2024-03-01T12:36:44.929839", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "Mali_5W_Mars_ 2023.xlsx", "originalHash": "-988266717", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "pii_predict_score": 0.7829160250103557, "pii_report_flag": "FINDINGS", "pii_report_id": "/resources/cc1fdf79-9b6d-4e7b-bb60-c2c21d1fbcc6/pii.2023-05-29T13-24-14.main.json", "pii_timestamp": "2023-05-29T13:27:47.136000", "position": 4, "resource_type": "file.upload", "size": 2437269, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/cc1fdf79-9b6d-4e7b-bb60-c2c21d1fbcc6/download/mali_3w-presence-operationnelle-premier-trismestre-2023.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b43e88da-3376-445c-a9e2-6dc259973b3e/download/", "cache_last_updated": null, "cache_url": null, "created": "2022-12-14T12:28:59.029921", "dataset_preview_enabled": false, "datastore_active": false, "description": "5W Mali June 2022", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b43e88da-3376-445c-a9e2-6dc259973b3e/download/mali-5w.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b43e88da-3376-445c-a9e2-6dc259973b3e/download/mali-5w.xlsx", "id": "b43e88da-3376-445c-a9e2-6dc259973b3e", "last_modified": "2022-12-14T12:28:58.279966", "metadata_modified": "2023-05-29T13:24:11.866087", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "5W_MLI_December_2022", "originalHash": "-988266717", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "pii_predict_score": 0.5602018455980524, "pii_report_flag": "FINDINGS", "pii_report_id": "/resources/b43e88da-3376-445c-a9e2-6dc259973b3e/pii.2022-12-14T12-29-05.main.json", "pii_timestamp": "2022-12-14T12:31:31.157000", "position": 5, "resource_type": "file.upload", "size": 2327276, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b43e88da-3376-445c-a9e2-6dc259973b3e/download/mali-5w.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/3a9b274c-3281-429e-990d-4d9c0be77dcd/download/", "cache_last_updated": null, "cache_url": null, "created": "2022-09-30T12:25:23.357686", "dataset_preview_enabled": false, "datastore_active": false, "description": "5W Mali June 2022", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/3a9b274c-3281-429e-990d-4d9c0be77dcd/download/mali-5w_presence-operationnel-dexieme-trimestre-2.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/3a9b274c-3281-429e-990d-4d9c0be77dcd/download/mali-5w_presence-operationnel-dexieme-trimestre-2.xlsx", "id": "3a9b274c-3281-429e-990d-4d9c0be77dcd", "last_modified": "2022-12-02T17:08:01.550696", "metadata_modified": "2022-12-14T12:29:02.783677", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "5W_MLI_June_2022", "originalHash": 1810441166, "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "position": 6, "resource_type": "file.upload", "size": 3019237, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/3a9b274c-3281-429e-990d-4d9c0be77dcd/download/mali-5w_presence-operationnel-dexieme-trimestre-2.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/6ef3deba-a523-45d3-8804-c49a38b31975/download/", "cache_last_updated": null, "cache_url": null, "created": "2022-04-28T14:29:53.319153", "dataset_preview_enabled": false, "datastore_active": false, "description": "5W Mali March 2022", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/6ef3deba-a523-45d3-8804-c49a38b31975/download/mali-5w_mars-2022.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/6ef3deba-a523-45d3-8804-c49a38b31975/download/mali-5w_mars-2022.xlsx", "id": "6ef3deba-a523-45d3-8804-c49a38b31975", "last_modified": "2022-04-28T14:29:52.594393", "metadata_modified": "2022-10-19T23:48:15.592744", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "5W_MLI_Mar2022", "originalHash": 681351314, "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "position": 7, "resource_type": "file.upload", "size": 3962625, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/6ef3deba-a523-45d3-8804-c49a38b31975/download/mali-5w_mars-2022.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/5e6d5b5b-ebd4-44af-afad-a4bbba4ab665/download/", "cache_last_updated": null, "cache_url": null, "created": "2021-12-17T09:45:17.545371", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali December 2021", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/5e6d5b5b-ebd4-44af-afad-a4bbba4ab665/download/mali_5w_decembre2021.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/5e6d5b5b-ebd4-44af-afad-a4bbba4ab665/download/mali_5w_decembre2021.xlsx", "id": "5e6d5b5b-ebd4-44af-afad-a4bbba4ab665", "last_modified": "2021-12-17T09:45:16.952001", "metadata_modified": "2022-09-30T12:25:23.184602", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "3W_MLI_Dec2021", "originalHash": -671534968, "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "pii_is_sensitive": false, "position": 8, "resource_type": "file.upload", "size": 960315, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/5e6d5b5b-ebd4-44af-afad-a4bbba4ab665/download/mali_5w_decembre2021.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/86f31370-7614-417a-9b3d-6f008daa4637/download/", "cache_last_updated": null, "cache_url": null, "created": "2021-11-25T13:41:50.433011", "dataset_preview_enabled": false, "datastore_active": false, "description": "5W Mali August 2021", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/86f31370-7614-417a-9b3d-6f008daa4637/download/mli_5w_2021.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/86f31370-7614-417a-9b3d-6f008daa4637/download/mli_5w_2021.xlsx", "id": "86f31370-7614-417a-9b3d-6f008daa4637", "last_modified": "2021-11-25T13:46:27.234466", "metadata_modified": "2022-09-30T12:25:23.184769", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "5W_Mali_August2021.xlsx", "originalHash": 2047537863, "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "pii_is_sensitive": false, "pii_predict_score": 0.09747086295684172, "pii_report_flag": "FINDINGS", "pii_report_id": "/resources/86f31370-7614-417a-9b3d-6f008daa4637/pii.2021-11-25T13-46-29.main.json", "pii_timestamp": "2021-11-25T13:47:51.450000", "position": 9, "resource_type": "file.upload", "size": 831415, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/86f31370-7614-417a-9b3d-6f008daa4637/download/mli_5w_2021.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a36895aa-95c9-426e-b807-b7ae9625837a/download/", "cache_last_updated": null, "cache_url": null, "created": "2021-01-26T10:36:06.135921", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali Jul 2020", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a36895aa-95c9-426e-b807-b7ae9625837a/download/mli_ocha_3w_20201007_vf.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a36895aa-95c9-426e-b807-b7ae9625837a/download/mli_ocha_3w_20201007_vf.xlsx", "id": "a36895aa-95c9-426e-b807-b7ae9625837a", "last_modified": "2021-01-26T10:36:05.126282", "metadata_modified": "2022-09-30T12:25:23.184981", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "mli_ocha_3w_20201007_vf.xlsx", "originalHash": "-988266717", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "pii": "false", "position": 10, "resource_type": "file.upload", "size": 892273, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/a36895aa-95c9-426e-b807-b7ae9625837a/download/mli_ocha_3w_20201007_vf.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/bd1b2e3f-6601-434b-bca5-cd82272b8020/download/", "cache_last_updated": null, "cache_url": null, "created": "2020-05-15T14:33:45.738362", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W April 2020", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/bd1b2e3f-6601-434b-bca5-cd82272b8020/download/3w_mli_avril-2020_vf.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/bd1b2e3f-6601-434b-bca5-cd82272b8020/download/3w_mli_avril-2020_vf.xlsx", "id": "bd1b2e3f-6601-434b-bca5-cd82272b8020", "last_modified": "2020-05-15T14:33:44.268281", "metadata_modified": "2022-09-30T12:25:23.185143", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "3W_MLI_Apr2020", "originalHash": "416825748", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "position": 11, "resource_type": "file.upload", "size": 319226, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/bd1b2e3f-6601-434b-bca5-cd82272b8020/download/3w_mli_avril-2020_vf.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/7ca25c7a-452e-434a-b01b-fac27d3e325b/download/", "cache_last_updated": null, "cache_url": null, "created": "2019-12-03T15:53:13.835943", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali December 2019", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/7ca25c7a-452e-434a-b01b-fac27d3e325b/download/3w_mli_nov2019.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/7ca25c7a-452e-434a-b01b-fac27d3e325b/download/3w_mli_nov2019.xlsx", "id": "7ca25c7a-452e-434a-b01b-fac27d3e325b", "last_modified": "2019-12-03T15:53:13.239034", "metadata_modified": "2022-09-30T12:25:23.185302", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "3W_MLI_Dec2019", "originalHash": "-366584721", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "position": 12, "resource_type": "file.upload", "size": 311146, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/7ca25c7a-452e-434a-b01b-fac27d3e325b/download/3w_mli_nov2019.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/843fd9ce-0362-4a2c-91c8-6b5714a8bef4/download/", "cache_last_updated": null, "cache_url": null, "created": "2018-12-27T12:15:28.922780", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali December 2018", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/843fd9ce-0362-4a2c-91c8-6b5714a8bef4/download/mali_3wop_decembre_2018.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/843fd9ce-0362-4a2c-91c8-6b5714a8bef4/download/mali_3wop_decembre_2018.xlsx", "id": "843fd9ce-0362-4a2c-91c8-6b5714a8bef4", "last_modified": "2019-01-22T14:37:40.134777", "metadata_modified": "2022-09-30T12:25:23.185457", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "3W_MLI_Dec2018", "originalHash": "-221574218", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "position": 13, "resource_type": "file.upload", "size": 83343, "state": "active", "tracking_summary[recent]": "0", "tracking_summary[total]": "0", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/843fd9ce-0362-4a2c-91c8-6b5714a8bef4/download/mali_3wop_decembre_2018.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/55fbdb38-1517-4bde-97bf-dac0b05d9cbd/download/", "cache_last_updated": null, "cache_url": null, "created": "2018-08-23T11:08:52.262584", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali August 2018", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/55fbdb38-1517-4bde-97bf-dac0b05d9cbd/download/mali_3wop_august_2018_eng.xlsx", "format": "XLSX", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/55fbdb38-1517-4bde-97bf-dac0b05d9cbd/download/mali_3wop_august_2018_eng.xlsx", "id": "55fbdb38-1517-4bde-97bf-dac0b05d9cbd", "last_modified": "2018-08-23T11:08:51.882278", "metadata_modified": "2022-09-30T12:25:23.185624", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "3W_MLI_Aug2018", "originalHash": "-1384762142", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "position": 14, "resource_type": "file.upload", "size": 38454, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/55fbdb38-1517-4bde-97bf-dac0b05d9cbd/download/mali_3wop_august_2018_eng.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b8f708da-e596-456c-b550-f88959970d21/download/", "cache_last_updated": null, "cache_url": null, "created": "2018-01-09T10:39:43.815902", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali December 2017", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b8f708da-e596-456c-b550-f88959970d21/download/mali_3wop_decembre-2017.xls", "format": "XLS", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b8f708da-e596-456c-b550-f88959970d21/download/mali_3wop_decembre-2017.xls", "id": "b8f708da-e596-456c-b550-f88959970d21", "last_modified": "2018-01-09T10:39:43.170281", "metadata_modified": "2022-09-30T12:25:23.185776", "microdata": false, "mimetype": null, "mimetype_inner": null, "name": "3W_MLI_Dec2017", "originalHash": "-815647867", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "position": 15, "resource_type": "file.upload", "size": 92160, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/b8f708da-e596-456c-b550-f88959970d21/download/mali_3wop_decembre-2017.xls", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/1ac80d41-4fd0-4f65-8f04-2cd98f4c09b1/download/", "cache_last_updated": null, "cache_url": null, "created": "2017-08-14T10:18:56.626082", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali June 2017", "download_url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/1ac80d41-4fd0-4f65-8f04-2cd98f4c09b1/download/mali_3wop_juin-2017.xls", "format": "XLS", "hash": "", "hdx_rel_url": "/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/1ac80d41-4fd0-4f65-8f04-2cd98f4c09b1/download/mali_3wop_juin-2017.xls", "id": "1ac80d41-4fd0-4f65-8f04-2cd98f4c09b1", "last_modified": "2017-08-14T10:18:56.382914", "metadata_modified": "2022-09-30T12:25:23.193094", "microdata": false, "mimetype": null, "mimetype_inner": null, "name": "3W_MLI_Juin 2017", "originalHash": "-1895260185", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "position": 16, "resource_type": "file.upload", "size": 101888, "state": "active", "url": "https://data.humdata.org/dataset/d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3/resource/1ac80d41-4fd0-4f65-8f04-2cd98f4c09b1/download/mali_3wop_juin-2017.xls", "url_type": "upload"}, {"cache_last_updated": null, "cache_url": null, "created": "2020-01-03T08:07:24.653246", "dataset_preview_enabled": false, "datastore_active": false, "description": "3W Mali Nov 2016", "download_url": "https://data.humdata.org/dataset/mali-who-does-what-where-3w", "format": "Web App", "hash": "", "hdx_rel_url": "https://data.humdata.org/dataset/mali-who-does-what-where-3w", "id": "c12479a4-0a65-423b-a651-9c79c8886395", "last_modified": "2020-01-03T08:07:24.419407", "metadata_modified": "2023-03-03T04:47:37.186863", "microdata": false, "mimetype": null, "mimetype_inner": null, "name": "3W_MLI_Nov 2016", "originalHash": "1116936704", "package_id": "d7ab89e4-bcb2-4127-be3c-5e8cf804ffd3", "position": 17, "resource_type": "api", "size": null, "state": "active", "url": "https://data.humdata.org/dataset/4037c956-8c24-45a0-9150-0235b17eb522/resource/1b9a03ac-7f39-4277-9638-da503e886238/download/mali_3wop_nov_2016.xlsm", "url_type": "api"}]} diff --git a/tests/fixtures/input/operational_presence_mli_mali_3w_december_2023.xlsx b/tests/fixtures/input/operational_presence_mli_mali_3w_december_2023.xlsx deleted file mode 100644 index 8bc351b0..00000000 Binary files a/tests/fixtures/input/operational_presence_mli_mali_3w_december_2023.xlsx and /dev/null differ diff --git a/tests/fixtures/input/operational_presence_mli_mali_3w_mars_2024.xlsx b/tests/fixtures/input/operational_presence_mli_mali_3w_mars_2024.xlsx new file mode 100644 index 00000000..7008f5d4 Binary files /dev/null and b/tests/fixtures/input/operational_presence_mli_mali_3w_mars_2024.xlsx differ diff --git a/tests/test_main.py b/tests/test_main.py index 12798e7c..78d1ed32 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -138,7 +138,7 @@ def test_pipelines(self, configuration, folder): count = session.scalar(select(func.count(DBAdmin2.id))) check.equal(count, 6160) count = session.scalar(select(func.count(DBOrg.acronym))) - check.equal(count, 568) + check.equal(count, 565) count = session.scalar(select(func.count(DBOrgType.code))) check.equal(count, 18) count = session.scalar(select(func.count(DBSector.code))) @@ -162,7 +162,7 @@ def test_pipelines(self, configuration, folder): func.count(DBOperationalPresence.resource_hdx_id) ) ) - check.equal(count, 14070) + check.equal(count, 13478) count = session.scalar( select(func.count(DBFoodSecurity.resource_hdx_id)) )