Skip to content

Update descriptions for images_contours_and_fields #9341

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 10, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update descriptions for images_contours_and_fields
  • Loading branch information
divyam3897 committed Oct 10, 2017
commit 10eff2737189ef5dc69bfe719d80c0aad6239e4d
1 change: 1 addition & 0 deletions examples/images_contours_and_fields/griddata_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Griddata Demo
=============

Example showing plotting of non uniform data points in the form of grid.
"""
from matplotlib.mlab import griddata
import matplotlib.pyplot as plt
Expand Down
11 changes: 5 additions & 6 deletions examples/images_contours_and_fields/shading_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,17 @@
Shading Example
===============

Example showing how to make shaded relief plots
like Mathematica
(http://reference.wolfram.com/mathematica/ref/ReliefPlot.html)
or Generic Mapping Tools
(http://gmt.soest.hawaii.edu/gmt/doc/gmt/html/GMT_Docs/node145.html)
"""
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.colors import LightSource
from matplotlib.cbook import get_sample_data

# Example showing how to make shaded relief plots
# like Mathematica
# (http://reference.wolfram.com/mathematica/ref/ReliefPlot.html)
# or Generic Mapping Tools
# (http://gmt.soest.hawaii.edu/gmt/doc/gmt/html/GMT_Docs/node145.html)


def main():
# Test data
Expand Down