MCPcopy Create free account
hub / github.com/Kitware/VTK / pj_vgrid_value

Function pj_vgrid_value

ThirdParty/libproj/vtklibproj/src/grids.cpp:3353–3371  ·  view source on GitHub ↗

/

Source from the content-addressed store, hash-verified

3351
3352/***********************************************/
3353double pj_vgrid_value(PJ *P, const ListOfVGrids &grids, PJ_LP lp,
3354 double vmultiplier) {
3355 /***********************************************
3356
3357 Read grid value at position lp in grids loaded
3358 with proj_grid_init.
3359
3360 Returns the grid value of the given coordinate.
3361
3362 ************************************************/
3363
3364 double value;
3365
3366 value = read_vgrid_value(P->ctx, grids, lp, vmultiplier);
3367 proj_log_trace(P, "proj_vgrid_value: (%f, %f) = %f", lp.lam * RAD_TO_DEG,
3368 lp.phi * RAD_TO_DEG, value);
3369
3370 return value;
3371}
3372
3373// ---------------------------------------------------------------------------
3374

Callers 3

forward_3dFunction · 0.85
reverse_3dFunction · 0.85
get_grid_shiftFunction · 0.85

Calls 2

read_vgrid_valueFunction · 0.85
proj_log_traceFunction · 0.85

Tested by

no test coverage detected