| 620 | } |
| 621 | |
| 622 | int layerObj_setWKTProjection(layerObj *self, char *string) { |
| 623 | self->project = MS_TRUE; |
| 624 | return msOGCWKT2ProjectionObj(string, &(self->projection), self->debug); |
| 625 | } |
| 626 | |
| 627 | char *layerObj_getProjection(layerObj* self) { |
| 628 | return msGetProjectionString(&self->projection); |
no test coverage detected