Skip to content

Commit c7dba4b

Browse files
authored
Merge pull request #267 from sentinel-hub/fix/add_arps_as_tpdi
Fix - add ARPS data as TPDI
2 parents 9123654 + 3321888 commit c7dba4b

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

src/dataimport/const.ts

+11
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export enum TPDICollections {
99
MAXAR_WORLDVIEW = 'MAXAR_WORLDVIEW',
1010
PLANET_SKYSAT = 'PLANET_SKYSAT',
1111
PLANETARY_VARIABLES = 'PLANETARY_VARIABLES',
12+
PLANET_ARPS = 'PLANET_ARPS',
1213
}
1314

1415
export enum TPDProvider {
@@ -72,6 +73,16 @@ export const PlanetSupportedProductBundles = {
7273
],
7374
};
7475

76+
export enum PlanetARPSType {
77+
AnalysisReadyPlanetScope = 'analysis_ready_ps',
78+
}
79+
80+
export enum PlanetARPSId {
81+
PS_ARD_SR_DAILY = 'PS_ARD_SR_DAILY',
82+
PS_ARD_SR_BIWEEKLY = 'PS_ARD_SR_BIWEEKLY',
83+
PS_ARD_SR_MONTHLY = 'PS_ARD_SR_MONTHLY',
84+
}
85+
7586
export enum PlanetPVType {
7687
BiomassProxy = 'biomass_proxy',
7788
LandSurfaceTemperature = 'land_surface_temperature',

src/index.ts

+4
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,8 @@ import {
134134
TPDITransactionCompatibleCollection,
135135
HLSConstellation,
136136
TPDITransactionParams,
137+
PlanetARPSType,
138+
PlanetARPSId,
137139
} from './dataimport/const';
138140

139141
import { ProcessingPayload } from './layer/processing';
@@ -285,6 +287,8 @@ export {
285287
addAxiosRequestInterceptor,
286288
addAxiosResponseInterceptor,
287289
setTPDIServiceBaseURL,
290+
PlanetARPSType,
291+
PlanetARPSId,
288292
};
289293

290294
export * from './statistics/';

0 commit comments

Comments
 (0)