Skip to content

Commit

Permalink
wip: force RGBI cogify
Browse files Browse the repository at this point in the history
  • Loading branch information
blacha committed Feb 19, 2025
1 parent ef3a85e commit a63ab06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cogify/src/cogify/gdal.command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function gdalBuildVrt(targetVrt: URL, source: URL[]): GdalCommand {
return {
output: targetVrt,
command: 'gdalbuildvrt',
args: [urlToString(targetVrt), ...source.map(urlToString)],
args: [urlToString(targetVrt), '-b', '1', '-b', '2', '-b', '3', ...source.map(urlToString)],
};
}

Expand Down

0 comments on commit a63ab06

Please sign in to comment.