Skip to content

Commit

Permalink
Disable export to GEE of default integrated_alerts COG
Browse files Browse the repository at this point in the history
Hotfix to disable export for now, because the meta-data of the
integrated alerts COG is too large (> 10Mbyte), since GEE recently
lowered the max size of meta-data.
  • Loading branch information
danscales committed Aug 26, 2024
1 parent 82bb415 commit 39d60fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/datapump/sync/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,8 @@ def build_jobs(self, config: DatapumpConfig) -> List[Job]:
resampling="mode",
implementation="default",
blocksize=1024,
export_to_gee=True,
# Disable export to GEE until COG metadata is reduced to < 10Mbytes
export_to_gee=False,
),
# Created from the "intensity" asset
CogAssetParameters(
Expand Down

0 comments on commit 39d60fc

Please sign in to comment.