From c55913ed12c7fdd14c41b14d31b169b8fa0c9862 Mon Sep 17 00:00:00 2001 From: Mitja Kuscer Date: Wed, 22 Nov 2023 13:41:35 +0100 Subject: [PATCH] Add PV collections --- src/dataimport/const.ts | 8 ++++++++ src/index.ts | 2 ++ 2 files changed, 10 insertions(+) diff --git a/src/dataimport/const.ts b/src/dataimport/const.ts index 6cd86c53..9f61a370 100644 --- a/src/dataimport/const.ts +++ b/src/dataimport/const.ts @@ -72,6 +72,14 @@ export const PlanetSupportedProductBundles = { ], }; +export enum PlanetPVCollections { + PLANET_BIOMASS_PROXY = 'PLANET_BIOMASS_PROXY', + PLANET_LAND_SURFACE_TEMPERATURE = 'PLANET_LAND_SURFACE_TEMPERATURE', + PLANET_SOIL_WATER_CONTENT = 'PLANET_SOIL_WATER_CONTENT', + PLANET_VEGETATION_OPTICAL_DEPTH = 'PLANET_VEGETATION_OPTICAL_DEPTH', + PLANET_FOREST_CARBON_DILIGENCE_30M = 'PLANET_FOREST_CARBON_DILIGENCE_30M', +} + export enum PlanetPVType { BiomassProxy = 'biomass_proxy', LandSurfaceTemperature = 'land_surface_temperature', diff --git a/src/index.ts b/src/index.ts index b074d4ef..ec82f158 100644 --- a/src/index.ts +++ b/src/index.ts @@ -124,6 +124,7 @@ import { PlanetItemType, PlanetSupportedProductBundles, PlanetScopeHarmonization, + PlanetPVCollections, PlanetPVType, PlanetPVId, PlanetSupportedPVIds, @@ -274,6 +275,7 @@ export { PlanetProductBundle, PlanetSupportedProductBundles, PlanetScopeHarmonization, + PlanetPVCollections, PlanetPVType, PlanetPVId, PlanetSupportedPVIds,