Skip to content

Commit

Permalink
Merge pull request #157 from wri/gtc-2970/intensity_no_data
Browse files Browse the repository at this point in the history
Intensity raster should set no data to null
  • Loading branch information
jterry64 authored Sep 27, 2024
2 parents ba465d2 + affa535 commit ab13a59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/datapump/sync/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def build_jobs(self, config: DatapumpConfig) -> List[Job]:
data_type="uint8",
calc="(A > 0) * 255",
grid="10/100000",
no_data=0,
no_data=None,
)
]
job.cog_asset_parameters = [
Expand Down

0 comments on commit ab13a59

Please sign in to comment.