MCPcopy Create free account
hub / github.com/OSGeo/PROJ / pj_param_value

Function pj_param_value

src/ell_set.cpp:478–488  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

476}
477
478static char *pj_param_value(paralist *list) {
479 char *key, *value;
480 if (nullptr == list)
481 return nullptr;
482
483 key = list->param;
484 value = strchr(key, '=');
485
486 /* a flag (i.e. a key without value) has its own name (key) as value */
487 return value ? value + 1 : key;
488}
489
490static const PJ_ELLPS *pj_find_ellps(const char *name) {
491 int i;

Callers 3

ellps_sizeFunction · 0.85
ellps_shapeFunction · 0.85
ellps_spherificationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected