@@ -8,6 +8,11 @@ import {ModisNetPrimaryProductionChange} from './geeAssets/modis-net-primary-pro
8
8
import { AnthropogenicBiomes } from './geeAssets/anthropogenic-biomes' ;
9
9
import { LivestockProductionSystems } from './geeAssets/livestock-production-systems' ;
10
10
import { ForestLoss } from './geeAssets/forest-loss' ;
11
+ import { GriddedLivestockCattle } from './geeAssets/gridded-livestock-cattle' ;
12
+ import { GriddedLivestockGoat } from './geeAssets/gridded-livestock-goat' ;
13
+ import { GriddedLivestockHorse } from './geeAssets/gridded-livestock-horse' ;
14
+ import { GriddedLivestockBuffalo } from './geeAssets/gridded-livestock-buffalo' ;
15
+ import { GriddedLivestockSheep } from './geeAssets/gridded-livestock-sheep' ;
11
16
import { EarthEngineDataset } from "./geeAssets/earth-engine-dataset" ;
12
17
import { TileRequestDTO , Tilesets } from "./tile-request.dto" ;
13
18
import { default as fetch , Response as FetchResponse } from "node-fetch" ;
@@ -20,7 +25,12 @@ const assets: Record<Tilesets, EarthEngineDataset> = {
20
25
[ Tilesets . modis_net_primary_production_change ] : ModisNetPrimaryProductionChange ,
21
26
[ Tilesets . anthropogenic_biomes ] : AnthropogenicBiomes ,
22
27
[ Tilesets . livestock_production_systems ] : LivestockProductionSystems ,
23
- [ Tilesets . forest_loss ] : ForestLoss
28
+ [ Tilesets . forest_loss ] : ForestLoss ,
29
+ [ Tilesets . gridded_livestock_cattle ] : GriddedLivestockCattle ,
30
+ [ Tilesets . gridded_livestock_goat ] : GriddedLivestockGoat ,
31
+ [ Tilesets . gridded_livestock_horse ] : GriddedLivestockHorse ,
32
+ [ Tilesets . gridded_livestock_buffalo ] : GriddedLivestockBuffalo ,
33
+ [ Tilesets . gridded_livestock_sheep ] : GriddedLivestockSheep ,
24
34
}
25
35
26
36
//We're using express to simplify path parameter parsing for the Tiles endpoint
0 commit comments