Exemplo n.º 1
0
"""
Plot an image map of bedrock surface elevation.
"""

import iceplotlib.plot as iplt

# load data
nc = iplt.load('pism_plot_sample.nc')

# plot
nc.imshow('topg')

# show
nc.close()
iplt.show()
Exemplo n.º 2
0
"""
Animation demo.
"""

import iceplotlib.plot as iplt
import iceplotlib.animation as iani

# load data
nc = iplt.load('pism_anim_sample.nc')

# animate
ani = iani.iceanim(nc)

# show
iplt.show()

# to save the animation:
#ani.save('iceanim.mp4')
Exemplo n.º 3
0
"""
Plot an image map of bedrock surface elevation.
"""

import iceplotlib.plot as iplt

# load data
nc = iplt.load("pism_plot_sample.nc")

# plot
nc.icemargin()

# show
nc.close()
iplt.show()