You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
contains unnecessary checks that don't allow GOES-R LRIT filenames to be used as image names.
The following was substituted in:
if (UseNOAAFileFormat) {
origName = origName != null ? Path.GetFileName (origName) : "";
string baseName = Path.GetFileNameWithoutExtension (origName);
return $"{baseName}.png";
}
This produces images with the same filename as the first LRIT in their respective segmentation sequences. False Color images are no longer produced - have to look into how to identify those images in the UseNOAAFileFormat if statement so they can retain their OSP filename
The text was updated successfully, but these errors were encountered:
goesdump/XRIT/GOES/ImageManager.cs
Line 312 in 5b6088f
The following was substituted in:
if (UseNOAAFileFormat) {
origName = origName != null ? Path.GetFileName (origName) : "";
string baseName = Path.GetFileNameWithoutExtension (origName);
return $"{baseName}.png";
}
This produces images with the same filename as the first LRIT in their respective segmentation sequences. False Color images are no longer produced - have to look into how to identify those images in the UseNOAAFileFormat if statement so they can retain their OSP filename
The text was updated successfully, but these errors were encountered: