Skip to content

Commit

Permalink
Merge branch 'release/2.25.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
floeschau committed Jan 10, 2025
2 parents 3e89ec4 + 1694ea4 commit f8b3365
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Stars.Console/Terradue.Stars.Console.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0</TargetFrameworks>
<Version>2.25.7</Version>
<Version>2.25.8</Version>
<!-- <VersionSuffix>beta.8</VersionSuffix> -->
<Description>Stars is a CLI for working with Spatio Temporal Catalog such as STAC but not only</Description>
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@
],
"filename": "20241102_105919_SN48_L1D_SR_MS_TOA_0.tif"
},
"cloud": {
"cloud_mask": {
"type": "application/xml",
"roles": [
"cloud"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ protected override async Task<StacNode> ExtractMetadata(IItem item, string suffi
// add L3 visual tif asset
bool x = AddL3Assets(item, stacItem) || AddL1Assets(item, stacItem);

if (!stacItem.Assets.ContainsKey("cloud_mask") && stacItem.Assets.ContainsKey("cloud"))
{
stacItem.Assets["cloud_mask"] = stacItem.Assets["cloud"];
stacItem.Assets.Remove("cloud");
}

return StacNode.Create(stacItem, item.Uri);
}

Expand Down
2 changes: 1 addition & 1 deletion src/Stars.Data/Terradue.Stars.Data.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<ProjectName>Terradue.Stars.Data</ProjectName>
<Title>Terradue.Stars.Data</Title>
<Description>Collection of data Plugins for Terradue.Stars</Description>
<Version>2.25.7</Version>
<Version>2.25.8</Version>
<!-- <VersionSuffix>beta.8</VersionSuffix> -->
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
<NoWarn>NU1603</NoWarn>
Expand Down
2 changes: 1 addition & 1 deletion src/Stars.Services/Terradue.Stars.Services.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Title>Terradue.Stars</Title>
<Description>Stars is a set of services for working with Spatio Temporal Catalog such as STAC but not only</Description>
<Version>2.25.7</Version>
<Version>2.25.8</Version>
<!-- <VersionSuffix>beta.8</VersionSuffix> -->
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
<AssemblyName>Terradue.Stars.Services</AssemblyName>
Expand Down

0 comments on commit f8b3365

Please sign in to comment.