Skip to content

Commit

Permalink
fix: add geodatabase to data.ts and types.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisePeterson committed Mar 20, 2024
1 parent cd51fa7 commit f160df2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/types/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ export enum ProductType {
ELEVATION_RASTER,
IMAGERY_RASTER,
GPS_NETWORK,
GEODATABASE,
}

export interface IHubDownload {
Expand Down
2 changes: 2 additions & 0 deletions src/utilities/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ export const convertProductType = (type: ProductType) => {
return 'Aerial photography';
case ProductType.GPS_NETWORK:
return 'GPS network';
case ProductType.GEODATABASE:
return 'Geodatabase';
default:
return type;
}
Expand Down

0 comments on commit f160df2

Please sign in to comment.