Evacuation Centers and Shelters Dataset in the Philippines. In all honesty, I made this dataset to finish a school project and I wondered why is there no central dataset for evacuation centers in the Philippines. With this being said, I publish this dataset to the public to help others who might need it.
Important
The dataset might not cover all evacuation centers and shelters in the Philippines. It may also include some outdated information since it was only pulled from OSM. Please use with caution. You may contribute to this dataset by submitting a pull request.
The evacuation center dataset was retrieved using the Overpass Turbo API (a web-based data filtering tool for OpenStreetMap) with the following query:
[out:json][timeout:25];
{{geocodeArea:Philippines}}->.searchArea;
(
node["social_facility"="shelter"](area.searchArea);
way["social_facility"="shelter"](area.searchArea);
relation["social_facility"="shelter"](area.searchArea);
node["social_facility:for"="displaced"](area.searchArea);
way["social_facility:for"="displaced"](area.searchArea);
relation["social_facility:for"="displaced"](area.searchArea);
node["emergency:social_facility"="shelter"](area.searchArea);
way["emergency:social_facility"="shelter"](area.searchArea);
relation["emergency:social_facility"="shelter"](area.searchArea);
node["emergency:social_facility:for"="displaced"](area.searchArea);
way["emergency:social_facility:for"="displaced"](area.searchArea);
relation["emergency:social_facility:for"="displaced"](area.searchArea);
);
out body;
>;
out skel qt;
I exported the files in GeoJSON format as I assume that it will be beneficial to visualize this using GeoPandas. However, it is easy to load it using vanilla pandas. With this being said, the repository includes the following files:
ph_evacs_raw.geojson
- The raw dataset queried from OSM.ph_evacs_cleaned.geojson
- The cleaned dataset.main.ipynb
- The Jupyter Notebook used to clean the dataset.
The cleaned dataset includes the following columns:
id
- The unique identifier of the evacuation center.name
- The name of the evacuation center.city
- The city where the evacuation center is located.municipality
- The municipality where the evacuation center is located.place
- The place where the evacuation center is located.province
- The province where the evacuation center is located.capacity
- The capacity of the evacuation center.type
- The type of evacuation center.geometry
- The geometry of the evacuation center.
In the cleaned dataset, the evacuation centers are classified into the following types:
Barangay Hall
- A barangay hall that can be used as an evacuation center.Campus
- A daycare, elementary, school, college, or university that can be used as an evacuation center.Church
- A church or place of worship that can be used as an evacuation center.Field
- An open field that can be used as an evacuation center.Hospital
- A hospital, medical center, clinic that can be used as an evacuation center.Shelter
- A dedicated shelter or evacuation center.Sports Center
- A covered court, sports complex, or sports center that can be used as an evacuation center.
As mentioned above, the dataset might not be complete and may contain outdated information. If you have any suggestions or contributions, please feel free to submit a pull request. I would be happy to review and merge them. It's alright if you're just going to add one evacuation center or shelter. Every contribution counts.