Line | Count | Source |
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 | */ | |
10 | REAL8 RgetYUL( | |
11 | const MAP *map) /* map handle */ | |
12 | 1 | { |
13 | 1 | CHECKHANDLE(map); |
14 | 1 | return(map->raster.yUL); |
15 | 1 | } |