Skip to content

Commit

Permalink
WCS: GeoTIFF creation option is TILED, not TILING
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault authored and Schpidi committed Aug 5, 2015
1 parent 67831cb commit bff33fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mapwcs20.c
Original file line number Diff line number Diff line change
Expand Up @@ -3982,10 +3982,10 @@ static int msWCSSetFormatParams20(outputFormatObj* format, char** format_options
else if (EQUAL(key, "geotiff:tiling") && is_geotiff) {
/* TILED=YES */
if (EQUAL(value, "true")) {
msSetOutputFormatOption(format, "TILING", "YES");
msSetOutputFormatOption(format, "TILED", "YES");
}
else if (EQUAL(value, "false")) {
msSetOutputFormatOption(format, "TILING", "NO");
msSetOutputFormatOption(format, "TILED", "NO");
}
else {
msSetError(MS_WCSERR, "Invalid boolean value '%s'.",
Expand Down

0 comments on commit bff33fb

Please sign in to comment.