This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import xarray as xr | |
import numpy as np | |
import numba | |
import pandas as pd | |
from obspy.geodetics import kilometers2degrees | |
@numba.jit(parallel=True) | |
def _interp_over_lon_lat(data2d, lon_awap, lat_awap, lon_wrf_plus, lon_wrf_minus, lat_wrf_plus, lat_wrf_minus): | |
""" |