nansencenter / nansat

Scientist friendly Python toolbox for processing 2D satellite Earth observation data.
http://nansat.readthedocs.io
GNU General Public License v3.0
182 stars 66 forks source link

Domain.shape method should be a property #411

Open korvinos opened 5 years ago

korvinos commented 5 years ago

Idea

The Domain class has a shape method which returns the (y, x) tuple. The method is inherited by the Nansat object and widely used. The idea is to make a shape property instead of the method. It will be more consistent with the numpy then.

TODO