.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/quickstart/retinotopy_webgl.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_quickstart_retinotopy_webgl.py: ===================================== Plot Example Retinotopy in Web Viewer ===================================== This demo shows how to plot example retinotopy data onto a subject's brain in a web viewer. In order for this demo to work, you need to download this dataset_, but that can also be done automatically through the `urllib` command that is included. .. _dataset: https://s3.us-west-1.wasabisys.com/glab-public-datasets/S1_retinotopy.hdf S1 is the example subject that comes with pycortex, but if you want to plot data onto a different subject, you will need to have them in your filestore. This demo will not actually open the web viewer for you, but if you run it yourself you will get a viewer showing something like the following. .. image:: ../../webgl/angle_left.png .. GENERATED FROM PYTHON SOURCE LINES 22-36 .. code-block:: Python import cortex from urllib.request import urlretrieve # Download and load in retinotopy data _ = urlretrieve( "https://s3.us-west-1.wasabisys.com/glab-public-datasets/S1_retinotopy.hdf", "S1_retinotopy.hdf" ) ret_data = cortex.load("S1_retinotopy.hdf") # Open the webviewer cortex.webshow(ret_data) .. _sphx_glr_download_auto_examples_quickstart_retinotopy_webgl.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: retinotopy_webgl.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: retinotopy_webgl.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: retinotopy_webgl.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_