Add mydata_classes.py to define data-grid

This commit is contained in:
Gabriel Wolf 2018-09-14 10:02:02 +01:00
parent d75d576d05
commit b5d03883af

14
mydata_classes.py Normal file
View File

@ -0,0 +1,14 @@
class Grid(object):
def __init__(self, lon, lat, z, time, Nlon, Nlat, Nz, Nt, Ulon, Ulat, Uz, Ut):
self.lon = lon
self.lat = lat
self.z = z
self.time = time
self.Nlon = Nlon
self.Nlat = Nlat
self.Nz = Nz
self.Nt = Nt
self.Ulon = Ulon
self.Ulat = Ulat
self.Uz = Uz
self.Ut = Ut