rasterio/docs/plotting.rst
Matthew Perry 0cabb0a61a doctests
2016-03-28 11:43:34 -04:00

24 lines
489 B
ReStructuredText

Plotting
********
.. todo::
* alt color ramps
* labeling axes with coordinates
* multiplots
* RGB
.. code-block:: python
>>> import rasterio
>>> from matplotlib import pyplot
>>> src = rasterio.open("tests/data/RGB.byte.tif")
>>> pyplot.imshow(src.read(1), cmap='pink')
<matplotlib.image.AxesImage object at 0x...>
>>> pyplot.show() # doctest: +SKIP
.. image:: http://farm6.staticflickr.com/5032/13938576006_b99b23271b_o_d.png