bids_atlas.datasets.get_AAL¶
- bids_atlas.datasets.get_AAL(target_space=None, resolution=None, path=None)[source]¶
Download the AAL atlas in specified target space and resolution, providing it in a BIDS-Atlas compliant manner.
- Parameters:
target_space (string) – Target space the atlas should be provided in. If None, the atlas will be provided in MNI152NLin6Asym. Default = None.
resolution (string) – Resolution the atlas should be provided in. If None, the atlas will be provided in 2mm resolution. Default = None.
path (string) – Path where the atlas will be saved. If None, the file will be saved in the current working directory. Default = None.
- Returns:
dict – A Dictionary containing the paths to the atlas image, tsv and json files.
- Return type:
Dictionary
Examples
Download the AAL atlas to the current directory.
>>> get_AAL()
Download the atlas to a specific path, e.g. the user’s Desktop and indicate a resolution.
>>> get_AAL(resolution=1, path='/home/user/Desktop')