Skip to content

brainstorm1313/memorial_data

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 

Repository files navigation

memorial-data

Data from Memorial (http://memo.ru) in machine readable form:

  • victims of terror of 1930s in Moscow
  • lists of 2614978 victims across Russia
  • geodata for objects of terror

##mos.memo.ru

Scraped from source: http://mos.memo.ru

Main datafile is: data/mos.memo.ru/all.csv, includes addresses.

Includes downloading and parsing script.

Portion of these data (Lubyanka area) was geocoded and put on the map here: http://october29.ru/wp/gorod/

License: code - GNU GPL v2 or any later version, data - unknown, possibly CC-BY

Related links:

##lists.memo.ru-disk

Data extracted from the MySQL database distributed on "Жертвы политического террора в СССР" disk.

Added SQL queries for create and fill tables.

Date fields convert rule: day = db_field & 31; // may be empty month = (db_field >> 5) & 15; // may be empty year =( (db_field >> 9) & 255) + 1800;

SQL: REABDATE_STR = case when REABDATE > 0 then concat( if(REABDATE & 31 > 0, concat(lpad( REABDATE & 31,2,'0'),'.'),''), if((REABDATE >> 5) & 15 > 0, concat(lpad( (REABDATE >> 5) & 15,2,'0'),'.'),''), if((REABDATE >> 9) & 255 > 0, ((REABDATE >> 9) & 255) + 1800,'') ) else null end

Main datafiles are: data/lists.memo.ru-disk, no addresses

License: unknown, possibly CC-BY

Related links:

##topography of terror

Geodata used on the 'Topography of terror' map: http://topos.memo.ru/karta. License: ODbL (OpenStreetMap is a source for building outlines).

Related links:

About

Data on history of terror in Moscow from various projects with Memorial

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • HTML 99.9%
  • Python 0.1%