Note
Click here to download the full example code
Points with varying transparencyΒΆ
Plotting points with varying transparency is simply passing an array to the
transparency
argument.

Out:
<IPython.core.display.Image object>
import numpy as np
import pygmt
# prepare the input x and y data
x = np.linspace(0, 3.0 * np.pi, 100)
y = np.sin(x)
# transparency level in percentage from 0 (i.e., opaque) to 100
transparency = np.linspace(0, 100, x.size)
fig = pygmt.Figure()
fig.basemap(
region=[x.min(), x.max(), y.min() * 1.1, y.max() * 1.1],
frame=["af", 'WSrt+t"Varying Transparency"'],
projection="X10c/6c",
)
fig.plot(x=x, y=y, style="c0.15c", color="blue", transparency=transparency)
fig.show()
Total running time of the script: ( 0 minutes 0.600 seconds)