Draw wind barbs using Makie.scatter!
include("WindBarbs.jl/wind-barbs.jl")
using .WindBarbswindpath = BezierPath(wind_path(30))
p = scatter(1:5,
marker=windpath,
markersize=range(1, 2, length=5),
rotations=range(0, 2pi, length=6)[1:end-1],
# color=:transparent,
strokecolor=:black, strokewidth=1
)
save("scatter-path.png", p)scatter_wind2(xs=1:2, ys=1:2, us=[10 10; -10 -10], vs=[10 -10; -10 10], filename="scatter-path2.png")scatter_wind(xs=[1, 1, 2, 2], ys=[1, 2, 1, 2], us=[10, 10, -10, -10], vs=[10, -10, -10, 10], filename="scatter-path3.png")

