| 1 | = PDAFomi_get_interp_coeff_lin1D = |
| 2 | |
| 3 | This page documents the routine `PDAFomi_get_interp_coeff_lne1D` of PDAF-OMI. |
| 4 | |
| 5 | The routine is called in `init_dim_obs_OBSTYPE of an obseration module to initialize interpolation coefficients in one dimension. It is used if the observation operator performs linear interpolation in 1D. |
| 6 | |
| 7 | || See the [wiki:OMI_observation_operators page describing PDAF-OMI observation operators] for a general overview.|| |
| 8 | |
| 9 | The interface is: |
| 10 | {{{ |
| 11 | SUBROUTINE PDAFomi_get_interp_coeff_lin1D(gpc, oc, icoeff) |
| 12 | |
| 13 | REAL, INTENT(in) :: gpc(:) ! Coordinates of grid points (dim=2) |
| 14 | REAL, INTENT(in) :: oc ! Coordinate of observation |
| 15 | REAL, INTENT(inout) :: icoeff(:) ! Interpolation coefficients (dim=2) |
| 16 | }}} |
| 17 | |
| 18 | '''Note:''' |
| 19 | * This routine is a simplification of `PDAFomi_get_interp_coeff` which computes interpolation coefficients up to three dimensions |