Skip to content

Commit

Permalink
Fix formats
Browse files Browse the repository at this point in the history
  • Loading branch information
Wentao-Kuang committed Oct 16, 2023
1 parent b4801f7 commit 66efed5
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/cog/types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { BoundingBox, EpsgCode, NamedBounds, TileMatrixSet } from '@basemaps/geo';
import { FileConfig } from '@basemaps/shared';
import { GdalCogBuilderResampling } from './gdal.config.js';
import { GdalCogBuilderResampling } from '../dgal/gdal.config.js';

export interface FeatureCollectionWithCrs extends GeoJSON.FeatureCollection {
crs: {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/dgal/gdal.command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@ export abstract class GdalCommand {

return this.promise;
}
}
}
File renamed without changes.
1 change: 0 additions & 1 deletion packages/cli/src/dgal/gdal.docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,3 @@ export class GdalDocker extends GdalCommand {
return super.run('docker', [...dockerArgs, cmd, ...args], log);
}
}

2 changes: 1 addition & 1 deletion packages/cli/src/dgal/gdal.local.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ export class GdalLocal extends GdalCommand {
log.debug({ cmd, gdalArgs: args.slice(0, 50).join(' ') }, 'StartGdal:Local');
return super.run(cmd, args, log);
}
}
}
2 changes: 1 addition & 1 deletion packages/cli/src/dgal/gdal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ export class Gdal {
const { stdout } = await gdal.run('gdal_translate', ['--version'], logger);
return stdout;
}
}
}

0 comments on commit 66efed5

Please sign in to comment.