Skip to content

Commit

Permalink
Fix the imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Wentao-Kuang committed Nov 2, 2023
1 parent 4f330b1 commit f0364cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/cli/config/action.import.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import fetch from 'node-fetch';
import { invalidateCache } from '../util.js';
import { Q, Updater } from './config.update.js';
import { FeatureCollection } from 'geojson';
import { CogJobJson } from '@basemaps/shared/src/cog/types.js';
import { CogJobJson } from '@basemaps/shared/build/cog/types.js';

const PublicUrlBase = Env.isProduction() ? 'https://basemaps.linz.govt.nz/' : 'https://dev.basemaps.linz.govt.nz/';

Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/cog/builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { CogTiff, TiffTag, TiffTagGeo } from '@cogeotiff/core';
import pLimit, { LimitFunction } from 'p-limit';
import { basename } from 'path';
import { Cutline } from './cutline.js'; //
import { ProjectionLoader } from '@basemaps/geo/src/proj/projection.loader.js';
import { CogBuilderMetadata, SourceMetadata } from '@basemaps/shared/src/cog/types.js';
import { ProjectionLoader } from '@basemaps/geo/build/proj/projection.loader.js';
import { CogBuilderMetadata, SourceMetadata } from '@basemaps/shared/build/cog/types.js';

export const InvalidProjectionCode = 32767;

Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/cog/cutline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import {
union,
} from '@linzjs/geojson';
import { FeatureCollection } from 'geojson';
import { AlignedLevel, CoveringFraction } from '@basemaps/shared/src/cog/constants.js';
import { CogJob, FeatureCollectionWithCrs, SourceMetadata } from '@basemaps/shared/src/cog/types.js';
import { AlignedLevel, CoveringFraction } from '@basemaps/shared/build/cog/constants.js';
import { CogJob, FeatureCollectionWithCrs, SourceMetadata } from '@basemaps/shared/build/cog/types.js';

/** Padding to always apply to image boundies */
const PixelPadding = 200;
Expand Down

0 comments on commit f0364cb

Please sign in to comment.