Skip to content

Commit f8b3365

Browse files
committed
Merge branch 'release/2.25.8'
2 parents 3e89ec4 + 1694ea4 commit f8b3365

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

src/Stars.Console/Terradue.Stars.Console.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<TargetFrameworks>net6.0</TargetFrameworks>
5-
<Version>2.25.7</Version>
5+
<Version>2.25.8</Version>
66
<!-- <VersionSuffix>beta.8</VersionSuffix> -->
77
<Description>Stars is a CLI for working with Spatio Temporal Catalog such as STAC but not only</Description>
88
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>

src/Stars.Data.Tests/Resources/SATELLOGIC/NEWSAT/MetadataExtractorsTests_20241102_105919_SN48_L1D_SR_MS_251827.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@
289289
],
290290
"filename": "20241102_105919_SN48_L1D_SR_MS_TOA_0.tif"
291291
},
292-
"cloud": {
292+
"cloud_mask": {
293293
"type": "application/xml",
294294
"roles": [
295295
"cloud"

src/Stars.Data/Model/Metadata/NewSat/NewSatMetadataExtractor.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,12 @@ protected override async Task<StacNode> ExtractMetadata(IItem item, string suffi
8484
// add L3 visual tif asset
8585
bool x = AddL3Assets(item, stacItem) || AddL1Assets(item, stacItem);
8686

87+
if (!stacItem.Assets.ContainsKey("cloud_mask") && stacItem.Assets.ContainsKey("cloud"))
88+
{
89+
stacItem.Assets["cloud_mask"] = stacItem.Assets["cloud"];
90+
stacItem.Assets.Remove("cloud");
91+
}
92+
8793
return StacNode.Create(stacItem, item.Uri);
8894
}
8995

src/Stars.Data/Terradue.Stars.Data.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<ProjectName>Terradue.Stars.Data</ProjectName>
55
<Title>Terradue.Stars.Data</Title>
66
<Description>Collection of data Plugins for Terradue.Stars</Description>
7-
<Version>2.25.7</Version>
7+
<Version>2.25.8</Version>
88
<!-- <VersionSuffix>beta.8</VersionSuffix> -->
99
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
1010
<NoWarn>NU1603</NoWarn>

src/Stars.Services/Terradue.Stars.Services.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>netstandard2.0</TargetFramework>
44
<Title>Terradue.Stars</Title>
55
<Description>Stars is a set of services for working with Spatio Temporal Catalog such as STAC but not only</Description>
6-
<Version>2.25.7</Version>
6+
<Version>2.25.8</Version>
77
<!-- <VersionSuffix>beta.8</VersionSuffix> -->
88
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
99
<AssemblyName>Terradue.Stars.Services</AssemblyName>

0 commit comments

Comments
 (0)