This repository contains archived data from NeuroVault.org.
The data has been dumped from a subset production database concerned with the "statsmaps" application, and censoring has been performed to remove user related information.
Within the statsmaps subset, the following tables are included:
statmaps_collectionThis is the main table that indexes NeuroVault Collections. Critically theidcolumn is the primary key for the table, and is used to link to other tables (refered to in other tables ascollection_id)statmaps_collection_contributorsAssociation of collections withuser_id
statmaps_basecollectionitemThis is the main table that indexes NeuroVault Collection Items. Critically theidcolumn is the primary key for the table, and is used to link to other tables asbasecollectionitem_ptr_idstatmaps_imageImages are a type of Collection Item. This table contains the image specific information. The columnbasecollectionitem_ptr_idin this table corresponds tostatmaps_basecollectionitem.idstatmaps_statisticmapStatisticMaps are a type of Images, with additional meta-data, such assmoothness_fwhm,cognitive_paradigm_cogatlas_id. The columnimage_ptr_id'in this table corresponds tostatmaps_basecollectionitem.id&statmaps_image.basecollectionitem_ptr_idstatmaps_atlasAtlases are a type of Images, with an additional reference tolabel_description_file. the columnimage_ptr_idrefers tostatmaps_basecollectionitem.id&statmaps_image.basecollectionitem_ptr_id.
statmaps_cognitiveatlastaskMapping ofcog_atlas_id(referenced instatmaps_statisticmap) to task namesstatmaps_cognitiveatlascontrastMapping ofcog_atlas_idreferenced instatmaps_statisticmap) to contrast names
statmaps_collection_communitiesGrouping of collections into "communities".statmaps_communitiesListing of communities. This is specific to two communities, "Developmental Neuroscience" and "Nutritional Neuroscience"
In order to quickly explore the contents of these CSV files, it may be convenient to import them into an SQLite database. The 'create_db.sh' script creates such a database (with the primary and foreign key constraints mentioned above) and fills it. It can be used like this:
tar xzf november_2022.tar.gz
cd november_2022
../create_db.sh
sqlite3 neurovault.sqlite3