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_collection
This is the main table that indexes NeuroVault Collections. Critically theid
column is the primary key for the table, and is used to link to other tables (refered to in other tables ascollection_id
)statmaps_collection_contributors
Association of collections withuser_id
statmaps_basecollectionitem
This is the main table that indexes NeuroVault Collection Items. Critically theid
column is the primary key for the table, and is used to link to other tables asbasecollectionitem_ptr_id
statmaps_image
Images are a type of Collection Item. This table contains the image specific information. The columnbasecollectionitem_ptr_id
in this table corresponds tostatmaps_basecollectionitem.id
statmaps_statisticmap
StatisticMaps 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_id
statmaps_atlas
Atlases are a type of Images, with an additional reference tolabel_description_file
. the columnimage_ptr_id
refers tostatmaps_basecollectionitem.id
&statmaps_image.basecollectionitem_ptr_id
.
statmaps_cognitiveatlastask
Mapping ofcog_atlas_id
(referenced instatmaps_statisticmap
) to task namesstatmaps_cognitiveatlascontrast
Mapping ofcog_atlas_id
referenced instatmaps_statisticmap
) to contrast names
statmaps_collection_communities
Grouping of collections into "communities".statmaps_communities
Listing 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