File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
examples/images_contours_and_fields Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 33Griddata Demo
44=============
55
6+ Example showing plotting of non uniform data points in the form of grid.
67"""
78from matplotlib .mlab import griddata
89import matplotlib .pyplot as plt
Original file line number Diff line number Diff line change 33Shading 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"""
712import numpy as np
813import matplotlib .pyplot as plt
914from matplotlib .colors import LightSource
1015from 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
1918def main ():
2019 # Test data
You can’t perform that action at this time.
0 commit comments