1 #include "csf.h"
2 #include "csfimpl.h"
3 
4 /* y value, upper left co-ordinate of map
5  * RgetYUL returns the y value of the upper left co-ordinate of map.
6  * Whether this is the largest or smallest y value depends on the
7  * projection (See MgetProjection()).
8  * returns the y value, upper left co-ordinate of map
9  */
RgetYUL(const MAP * map)10 REAL8 RgetYUL(
11 	const MAP *map) /* map handle */
12 {
13 	CHECKHANDLE(map);
14 	return(map->raster.yUL);
15 }
16