I'd like to overlay a wind rose made with contourf() with a wrscatter plot. This is my MWE: import random wind_dir = []; wind_speed = []; for i in range(30): wind_dir.extend(random.sample(range(0, 359 ...