Giter Club home page Giter Club logo

Comments (8)

ajdawson avatar ajdawson commented on July 28, 2024

You get this error when you input arrays of the wrong shape. I notice most of the code is copied from one of the windspharm examples, but it is possible you do not need all the steps used in the example.

You said shape of uwnd and vwnd is (1, 181, 360), but you didn't say if that was before or after you used prep_data. Please print the shape of uwnd and vwnd immediately after they are loaded and let me know what the results is:

...
uwnd = nc_fid1.variables['u-component_of_wind_isobaric'][:]
vwnd = nc_fid2.variables['v-component_of_wind_isobaric'][:]
print(uwnd.shape)
print(vwnd.shape)
...

from windspharm.

winash12 avatar winash12 commented on July 28, 2024

The shape after they are loaded is (1,1,181,360).

This is just my very first windspharm example. So once I get a working example I will be able to modify it to my purposes and as you say most of the other stuff can be eliminated.

from windspharm.

ajdawson avatar ajdawson commented on July 28, 2024

In this case you do need to use prep_data but you need to change the inputs. prep_data wants to know the order of dimensions in your array, you have told it "tyx" which represents time-latitude-longitude, but the array you pass in has 4 dimensions, probably time-pressure-latitude-longitude. You should use "tpyx" instead:

uwnd, uwnd_info = prep_data(uwnd, 'tpyx')
vwnd, vwnd_info = prep_data(vwnd, 'tpyx')

from windspharm.

doutriaux1 avatar doutriaux1 commented on July 28, 2024

@ajdawson I just wanted to point that I think the CF conventions recommend "z" for pressure axes rather than "p", you might want to add it as a valid option to be consistent.

from windspharm.

winash12 avatar winash12 commented on July 28, 2024

Is there any reason why I cannot reshape sf and vp ?

I tried this

sf[:].squeeze()

and sf.reshape(181,360)

and when I try to print the shape of sf it is (181,360,1).

from windspharm.

ajdawson avatar ajdawson commented on July 28, 2024

@ajdawson I just wanted to point that I think the CF conventions recommend "z" for pressure axes rather than "p", you might want to add it as a valid option to be consistent.

@doutriaux1 - please take a look at the documentation for prep_data, all characters except x and y are arbitrary.

from windspharm.

ajdawson avatar ajdawson commented on July 28, 2024

@winash12 - reshape is not an in-place operation, you need to store the result like:

sf = sf.reshape(...)

If you want to put it back to the original shape of u and v though, that is what the windspharm.tools.recover_data function is for.

from windspharm.

winash12 avatar winash12 commented on July 28, 2024

@ajdawson - Thank you for pointing that oversight of mine and I can see two beautiful plots ! Your cooperation is most appreciated. Hopefully I can 'grow' to contribute to your codebase. Thanks again !

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.