A web application for the bachelor's thesis on »Geospatial visualization of Wikipedia news reports about armed conflicts«
Visit the demo website at: global-conflicts.github.io
Install npm and run:
cd frontend/npm run devAfter that, the server is available under localhost:3000.
The output of individual pipeline modules can be found in the the data/ folder.
If you want to compile the dataset on your own, install Python and run:
cd tools/pip install -r requirements.txtNext, this command scrapes data from Wikipedia and Wikidata and stores plain text files in a given folder:
python3 scraper.py 2022-02-20 | python3 parser.py | python3 extractor.py "Armed attacks and conflicts" "Armed conflicts and attacks" | python3 locator.py | python3 jsonifier.py ../frontend/src/data/incidents.json
The dataset can now be used by the frontend.
