Skip to content

Commit

Permalink
Merge pull request #152 from wri/disable_export_to_gee
Browse files Browse the repository at this point in the history
Disable export_to_gee for the default integrated_alerts COG
  • Loading branch information
danscales authored Aug 29, 2024
2 parents 70d0aef + 62ab175 commit e5c5fc8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN pip install . -t python
# to change the hash of the file and get TF to realize it needs to be
# redeployed. Ticket for a better solution:
# https://gfw.atlassian.net/browse/GTC-1250
# change 7
# change 8

RUN yum install -y zip geos-devel

Expand Down
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 e5c5fc8

Please sign in to comment.