1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
"""Interpolate MODIS 1km navigation arrays to 250m and 500m resolutions.
The code used here is a rewrite of the IDL function ``MODIS_GEO_INTERP_250``
used by Liam Gumley. It has been modified to convert coordinates to cartesian
(X, Y, Z) coordinates first to avoid problems with the anti-meridian and poles.
This code was originally part of the CSPP Polar2Grid project, but has been
moved here for integration with Satpy and newer versions of Polar2Grid.
This algorithm differs from the one in ``modisinterpolator`` as it only
requires the original longitude and latitude arrays. This is useful in the
case of reading the 250m or 500m MODIS L1b files or any MODIS L2 files without
including the MOD03 geolocation file as there is no SensorZenith angle dataset
in these files.
"""
from ._modis_utils import scanline_mapblocks
from ._simple_modis_interpolator import interpolate_geolocation_cartesian as interp_cython
@scanline_mapblocks
def interpolate_geolocation_cartesian(lon_array, lat_array, coarse_resolution, fine_resolution):
"""Interpolate MODIS navigation from 1000m resolution to 250m.
Python rewrite of the IDL function ``MODIS_GEO_INTERP_250`` but converts to cartesian (X, Y, Z) coordinates
first to avoid problems with the anti-meridian/poles.
Arguments:
lon_array: Longitude data as a 2D numpy, dask, or xarray DataArray object.
The input data is expected to represent 1000m geolocation.
lat_array: Latitude data as a 2D numpy, dask, or xarray DataArray object.
The input data is expected to represent 1000m geolocation.
res_factor (int): Expansion factor for the function. Should be 2 for
500m output or 4 for 250m output.
Returns:
A two-element tuple (lon, lat).
"""
return interp_cython(
lon_array, lat_array, coarse_resolution, fine_resolution
)
def modis_1km_to_250m(lon1, lat1):
"""Interpolate MODIS geolocation from 1km to 250m resolution."""
return interpolate_geolocation_cartesian(
lon1,
lat1,
coarse_resolution=1000,
fine_resolution=250,
)
def modis_1km_to_500m(lon1, lat1):
"""Interpolate MODIS geolocation from 1km to 500m resolution."""
return interpolate_geolocation_cartesian(
lon1,
lat1,
coarse_resolution=1000,
fine_resolution=500)
|