Polar plot with 0° at the nadir?

Code by @jheinen:

using GR
angles = LinRange(0, 2pi, 40)
radii = LinRange(0, 2, 40)
polar(angles, radii, theta_zero_location="S", theta_direction=-1)

Is the way to do it now

Kind regards

1 Like