Source code for opendrift.readers.basereader.fakeproj

[docs] class fakeproj: # For readers with unprojected domain, we emulate a # pyproj class with needed functions
[docs] class _crs: is_geographic = False
crs = _crs()
[docs] def __call__(self, x, y, inverse=False): # Simply return x and y since these are also row/column indices return x, y
srs = 'None'