1 #include "csf.h"
2 #include "csfimpl.h"
3 
4 /* data type of the map
5  * MgetDataType returns the type of the map, which is always
6  * a raster until now.
7  * returns
RgetCellRepr(const MAP * map)8  * T_RASTER
9  */
10 UINT4 MgetMapDataType(
11 	const MAP *map) /* map handle */
12 {
13 	return (UINT4)(map->main.mapType);
14 }
15