The UNFPA Global Learning Map is an interactive visualization that educates users on 2019 UNFPA initiatives by each member country. It was created by Caitlin Wang, Drefnie R. Limprevil, Emily Colladay, and Garret Kutzko in partnership with UNFPA.
Click here to see the visualization
Or visit the project site which documents the motivation behind our project, our design process, and includes a video demo
Follow these steps to setup this project on your local machine:
- Clone this repository:
git clone https://github.com/NEU-DS-4200-S20/s-l-project-un2.git
cd s-l-project-un2
- Start a simple python webserver. E.g., one of these commands:
python -m http.server 8000
python3 -m http.server 8000
py -m http.server 8000
- Visit
http://localhost:8000
.
├── data # CSV data files
├── favicons # Favicons for site
├── files # Project files such as the video demo
├── images # Images used
├── js # JavaScript files
├── index.html # Home page/site entry point
├── visualization.html # Standalone page for the visualization
├── style.css # CSS stylesheet
├── LICENSE # Source code license
└── README.md
├── ...
├── js
| ├── dropdown.js # Logic for our custom dropdowns
| ├── visualization.js # Main code for visualization
├── ...