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

Function cold

src/apps/cct.cpp:579–587  ·  view source on GitHub ↗

column to double */

Source from the content-addressed store, hash-verified

577
578/* column to double */
579static double cold(const char *args, int col) {
580 char *endp;
581 double d;
582 const char *target = column(args, col);
583 d = proj_strtod(target, &endp);
584 if (endp == target)
585 return HUGE_VAL;
586 return d;
587}
588
589PJ_COORD parse_input_line(const char *buf, int *columns, double fixed_height,
590 double fixed_time) {

Callers 1

parse_input_lineFunction · 0.85

Calls 2

columnFunction · 0.70
proj_strtodFunction · 0.70

Tested by

no test coverage detected