Add scripts

This commit is contained in:
2024-06-16 16:31:53 +02:00
parent af4be850cb
commit f8c9fec77e
6 changed files with 74 additions and 5 deletions
+8
View File
@@ -0,0 +1,8 @@
for(file of files)
{
if(file.suffix() == "fits" || file.suffix() == "fit" || file.suffix() == "xisf")
{
let stats = file.stats();
core.log("File: \"" + file.fileName() + "\" - median: " + stats.median);
}
}