MeteoInfo 3.2.0 was released (2021-10-15)ΒΆ
Update pro4j to 1.1.3
Update FlatLaf to version 1.6
Remove jchardet library
Add
contourslice
andcontourfslice
functions in 3D axesEnable lighting to support double sides normal in 3D axes
Support 3D pipe line plot
Add vertex normal calculation functions
Support equal aspect in 3D axes
Add
sphere
andcylinder
functionsAdd MICAPS MDFS type 3 data support
Support unicode path of MeteoInfo
Add
erf
anderfc
functionsAdd
arctan
andarctan2
functions for numpy compatibleAdd
peaks
functionAdd
patches
package in plotlibAdd lines
module
andLine2D
classAdd
supxlabel
andsupylabel
functionsAdd
copy
andmove
functions in MILayer classSupport CAMx output nc data file
Some bug fixed
sphere plot:
x, y, z = sphere()
axes3d(aspect='equal')
surf(x, y, z)
antialias()
cylinder plot:
t = arange(0, 2*pi+0.001, pi/10)
r = 2 + cos(t)
x, y, z = cylinder(r)
surf(x, y, z)
antialias()
peaks plot:
x, y, z = peaks(25)
mesh(x, y, z, cmap='GMT_drywet_r')
antialias()