I am trying to use mne source simulator to simulate hippocampal source data, and I am following this tutorial Generate simulated source data — MNE 1.4.2 documentation. The problem is that I can use only cortical surface labels from parcellation to add data to the simulation (source_simulator.add_data), while I should use aseg for the hippocampus. Do you know any way around it?
You can use a “discrete” source space where you explicitly specify the dipole positions and orientations with pos=dict(rr=..., nn=...) in mne.setup_volume_source_space
Sorry I should have unpacked our discussion a bit more. We got as far as “use a discrete source space” but then the issue is: if your hippocampus label is volumetric, you can get the positions easily enough but how do you choose the orientations? Some ideas we kicked around:
find the centroid and assign several orientations to a dipole there, and see what patterns show up as orientation varies
convert the volumetric label to an encapsulating surface (somehow?) and use the surface to define dipoles normal to it (not very physiologically plausible but might be OK depending on what you’re trying to learn from the simulation)