| 1583 | } |
| 1584 | |
| 1585 | static void writeProjection(FILE *stream, int indent, projectionObj *p) { |
| 1586 | #ifdef USE_PROJ |
| 1587 | int i; |
| 1588 | |
| 1589 | if(!p || p->numargs <= 0) return; |
| 1590 | indent++; |
| 1591 | writeBlockBegin(stream, indent, "PROJECTION"); |
| 1592 | for(i=0; i<p->numargs; i++) |
| 1593 | writeString(stream, indent, NULL, NULL, p->args[i]); |
| 1594 | writeBlockEnd(stream, indent, "PROJECTION"); |
| 1595 | #endif |
| 1596 | } |
| 1597 | |
| 1598 | /* |
| 1599 | ** Initialize, load and free a labelObj structure |
no test coverage detected