| 243 | /************************************************************************/ |
| 244 | |
| 245 | int msWCSIsLayerSupported(layerObj *layer) |
| 246 | { |
| 247 | /* only raster layers, are elligible to be served via WCS, WMS rasters are not ok */ |
| 248 | if((layer->type == MS_LAYER_RASTER) && layer->connectiontype != MS_WMS) return MS_TRUE; |
| 249 | |
| 250 | return MS_FALSE; |
| 251 | } |
| 252 | |
| 253 | /************************************************************************/ |
| 254 | /* msWCSGetRequestParameter() */ |
no outgoing calls
no test coverage detected