Coverage Report

Created: 2025-07-23 09:13

/src/gdal/frmts/pcraster/libcsf/getx0.c
Line
Count
Source
1
#include "csf.h"
2
#include "csfimpl.h"
3
4
/* x value, upper left co-ordinate of map
5
 * returns the x value, upper left co-ordinate of map
6
 */
7
REAL8 RgetXUL(
8
  const MAP *map) /* map handle */
9
1
{
10
1
  CHECKHANDLE(map);
11
1
  return(map->raster.xUL);
12
1
}