Skip to content

Commit 10eff27

Browse files
committed
Update descriptions for images_contours_and_fields
1 parent 383091a commit 10eff27

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

examples/images_contours_and_fields/griddata_demo.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
Griddata Demo
44
=============
55
6+
Example showing plotting of non uniform data points in the form of grid.
67
"""
78
from matplotlib.mlab import griddata
89
import matplotlib.pyplot as plt

examples/images_contours_and_fields/shading_example.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,17 @@
33
Shading Example
44
===============
55
6+
Example showing how to make shaded relief plots
7+
like Mathematica
8+
(http://reference.wolfram.com/mathematica/ref/ReliefPlot.html)
9+
or Generic Mapping Tools
10+
(http://gmt.soest.hawaii.edu/gmt/doc/gmt/html/GMT_Docs/node145.html)
611
"""
712
import numpy as np
813
import matplotlib.pyplot as plt
914
from matplotlib.colors import LightSource
1015
from matplotlib.cbook import get_sample_data
1116

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

1918
def main():
2019
# Test data

0 commit comments

Comments
 (0)