[yt-svn] commit/yt: ngoldbaum: Merged in migueldvb/yt (pull request #2099)

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Wed Apr 6 11:12:31 PDT 2016


1 new commit in yt:

https://bitbucket.org/yt_analysis/yt/commits/b446990d1ee3/
Changeset:   b446990d1ee3
Branch:      yt
User:        ngoldbaum
Date:        2016-04-06 18:12:19+00:00
Summary:     Merged in migueldvb/yt (pull request #2099)

Minor changes in colormap docs
Affected #:  1 file

diff -r b7e33fa51d6a6bc39a40180c775dad0788a7b4d2 -r b446990d1ee3cf51fe5860b07ee5fea3e27b70da doc/source/visualizing/colormaps/index.rst
--- a/doc/source/visualizing/colormaps/index.rst
+++ b/doc/source/visualizing/colormaps/index.rst
@@ -3,33 +3,33 @@
 Colormaps
 =========
 
-There are several colormaps available for yt.  yt includes all of the 
-matplotlib colormaps as well for nearly all functions.  Individual 
-visualization functions usually allow you to specify a colormap with the 
+There are several colormaps available for yt.  yt includes all of the
+matplotlib colormaps as well for nearly all functions.  Individual
+visualization functions usually allow you to specify a colormap with the
 ``cmap`` flag.
 
 .. _install-palettable:
 
-Palettable and ColorBrewer2 
+Palettable and ColorBrewer2
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 While colormaps that employ a variety of colors often look attractive,
 they are not always the best choice to convey information to one's audience.
-There are numerous `articles <https://eagereyes.org/basics/rainbow-color-map>`_ 
-and 
-`presentations <http://pong.tamu.edu/~kthyng/presentations/visualization.pdf>`_ 
-that discuss how rainbow-based colormaps fail with regard to black-and-white 
+There are numerous `articles <https://eagereyes.org/basics/rainbow-color-map>`_
+and
+`presentations <http://pong.tamu.edu/~kthyng/presentations/visualization.pdf>`_
+that discuss how rainbow-based colormaps fail with regard to black-and-white
 reproductions, colorblind audience members, and confusing in color ordering.
 Depending on the application, the consensus seems to be that gradients between
 one or two colors are the best way for the audience to extract information
 from one's figures.  Many such colormaps are found in palettable.
 
-If you have installed `palettable <http://jiffyclub.github.io/palettable/>`_ 
-(formerly brewer2mpl), you can also access the discrete colormaps available 
+If you have installed `palettable <http://jiffyclub.github.io/palettable/>`_
+(formerly brewer2mpl), you can also access the discrete colormaps available
 to that package including those from `colorbrewer <http://colorbrewer2.org>`_.
-Install `palettable <http://jiffyclub.github.io/palettable/>`_ with 
-``pip install palettable``.  To access these maps in yt, instead of supplying 
-the colormap name, specify a tuple of the form (name, type, number), for 
+Install `palettable <http://jiffyclub.github.io/palettable/>`_ with
+``pip install palettable``.  To access these maps in yt, instead of supplying
+the colormap name, specify a tuple of the form (name, type, number), for
 example ``('RdBu', 'Diverging', 9)``.  These discrete colormaps will
 not be interpolated, and can be useful for creating
 colorblind/printer/grayscale-friendly plots. For more information, visit
@@ -40,22 +40,22 @@
 Making and Viewing Custom Colormaps
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-yt can also accommodate custom colormaps using the 
-:func:`~yt.visualization.color_maps.make_colormap` function 
-These custom colormaps can be made to an arbitrary level of 
-complexity.  You can make these on the fly for each yt session, or you can 
-store them in your :ref:`plugin-file` for access to them in every future yt 
+yt can also accommodate custom colormaps using the
+:func:`~yt.visualization.color_maps.make_colormap` function
+These custom colormaps can be made to an arbitrary level of
+complexity.  You can make these on the fly for each yt session, or you can
+store them in your :ref:`plugin-file` for access to them in every future yt
 session.  The example below creates two custom colormaps, one that has
-three equally spaced bars of blue, white and red, and the other that 
-interpolates in increasing lengthen intervals from black to red, to green, 
-to blue.  These will be accessible for the rest of the yt session as 
-'french_flag' and 'weird'.  See 
-:func:`~yt.visualization.color_maps.make_colormap` and 
+three equally spaced bars of blue, white and red, and the other that
+interpolates in increasing lengthed intervals from black to red, to green,
+to blue.  These will be accessible for the rest of the yt session as
+'french_flag' and 'weird'.  See
+:func:`~yt.visualization.color_maps.make_colormap` and
 :func:`~yt.visualization.color_maps.show_colormaps` for more details.
 
 .. code-block:: python
 
-    yt.make_colormap([('blue', 20), ('white', 20), ('red', 20)], 
+    yt.make_colormap([('blue', 20), ('white', 20), ('red', 20)],
                      name='french_flag', interpolate=False)
     yt.make_colormap([('black', 5), ('red', 10), ('green', 20), ('blue', 0)],
                      name='weird', interpolate=True)
@@ -66,7 +66,7 @@
 
 This is a chart of all of the yt and matplotlib colormaps available.  In
 addition to each colormap displayed here, you can access its "reverse" by simply
-appending a ``"_r"`` to the end of the colormap name.  
+appending a ``"_r"`` to the end of the colormap name.
 
 .. image:: ../_images/all_colormaps.png
    :width: 512
@@ -80,7 +80,7 @@
 Displaying Colormaps Locally
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-To display the most up to date colormaps locally, you can use the 
+To display the most up to date colormaps locally, you can use the
 :func:`~yt.visualization.color_maps.show_colormaps` function.  By default,
 you'll see every colormap available to you, but you can specify subsets
 of colormaps to display, either as just the ``yt_native`` colormaps, or
@@ -98,7 +98,7 @@
 
     import yt
     yt.show_colormaps(subset=['algae', 'kamae', 'spectral',
-                              'arbre', 'dusk', 'octarine', 'kelp'], 
+                              'arbre', 'dusk', 'octarine', 'kelp'],
                       filename="yt_native.png")
 
 Applying a Colormap to your Rendering
@@ -111,7 +111,7 @@
 
     yt.write_image(im, "output.png", cmap_name = 'jet')
 
-If you're using the Plot Window interface (e.g. SlicePlot, ProjectionPlot, 
+If you're using the Plot Window interface (e.g. SlicePlot, ProjectionPlot,
 etc.), it's even easier than that.  Simply create your rendering, and you
 can quickly swap the colormap on the fly after the fact with the ``set_cmap``
 callback:
@@ -127,16 +127,16 @@
     p.set_cmap(field="density", cmap='hot')
     p.save('proj_with_hot_cmap.png')
 
-For more information about the callbacks available to Plot Window objects, 
+For more information about the callbacks available to Plot Window objects,
 see :ref:`callbacks`.
 
 Examples of Each Colormap
 ~~~~~~~~~~~~~~~~~~~~~~~~~
 
 To give the reader a better feel for how a colormap appears once it is applied
-to a dataset, below we provide a library of identical projections of an 
-isolated galaxy where only the colormap has changed.  They use the sample 
-dataset "IsolatedGalaxy" available at 
+to a dataset, below we provide a library of identical projections of an
+isolated galaxy where only the colormap has changed.  They use the sample
+dataset "IsolatedGalaxy" available at
 `http://yt-project.org/data <http://yt-project.org/data>`_.
 
 .. yt_colormaps:: cmap_images.py

Repository URL: https://bitbucket.org/yt_analysis/yt/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.spacepope.org/pipermail/yt-svn-spacepope.org/attachments/20160406/1915ed07/attachment-0001.htm>


More information about the yt-svn mailing list