Giter Club home page Giter Club logo

Comments (2)

ajdawson avatar ajdawson commented on July 28, 2024

As far as I can tell there is no problem with this routine. I suspect you are using data upside down, note the documentation for windspharm.standard.VectorWind:

The latitude dimension must be oriented north-to-south.

Your latitude dimension must have 90N first and 90S last, otherwise gradients will be incorrect, as will planetary vorticity which is calculated for a north-south grid. Also note there are the functions order_latdim and reverse_latdim in windspharm.tools to assist with getting the order correct. I would strongly recommend checking any other code you have written using the standard interface to make sure you are inputting fields in the correct orientation (iris and cdms interfaces will do this for you automatically).

If you have the grid oriented correctly I believe the current code is correct, for example:

import numpy as np
import matplotlib.pyplot as plt
from windspharm.standard import VectorWind


# create a dummy VectorWind object, we'll only use planetaryvorticity() so values don't matter
u = v = np.random.rand(73, 144)
w = VectorWind(u, v, gridtype='regular')

# calculate planetary vorticity
pvrt = w.planetaryvorticity()

# plot planetary vorticity, remembering it is for a north-south input grid
lon = np.arange(0., 360., 2.5)
lat = np.linspace(90, -90, 73)
plt.pcolor(lon, lat, pvrt)
plt.axis([0, 360, -90, 90])
plt.xlabel('longitude / degrees east')
plt.ylabel('latitude / degrees north')
plt.show()

which produces this, which is as it should be:

pvrt

from windspharm.

ajdawson avatar ajdawson commented on July 28, 2024

Closing this on the assumption that the given solution solved your problem.

from windspharm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.