File tree 2 files changed +6
-6
lines changed
examples/images_contours_and_fields 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3
3
Griddata Demo
4
4
=============
5
5
6
+ Example showing plotting of non uniform data points in the form of grid.
6
7
"""
7
8
from matplotlib .mlab import griddata
8
9
import matplotlib .pyplot as plt
Original file line number Diff line number Diff line change 3
3
Shading Example
4
4
===============
5
5
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)
6
11
"""
7
12
import numpy as np
8
13
import matplotlib .pyplot as plt
9
14
from matplotlib .colors import LightSource
10
15
from matplotlib .cbook import get_sample_data
11
16
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
-
18
17
19
18
def main ():
20
19
# Test data
You can’t perform that action at this time.
0 commit comments