From 932191ec95e55cf3b7f72a57a77ffebde1d81730 Mon Sep 17 00:00:00 2001 From: Michael Uleysky Date: Wed, 14 Feb 2024 13:35:26 +1000 Subject: [PATCH] Fixed error with output files names for the action uv --- actions/actionuv.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/actions/actionuv.h b/actions/actionuv.h index ea671b4..fc4a3f6 100644 --- a/actions/actionuv.h +++ b/actions/actionuv.h @@ -152,9 +152,9 @@ template MString ActionUV::DoAction(const CLArgs& args, D& ds) MString name = args.contains("out") ? args.at("out") : ""; MString outfmt = args.contains("outformat") ? args.at("outformat") : (GetExt(name) == "nc" ? "nc" : "bin"); MString namevel = args.contains("velout") ? args.at("velout") : ""; - MString outfmtvel = args.contains("veloutformat") ? args.at("veloutformat") : (GetExt(name) == "nc" ? "nc" : "bin"); + MString outfmtvel = args.contains("veloutformat") ? args.at("veloutformat") : (GetExt(namevel) == "nc" ? "nc" : "bin"); MString namestp = args.contains("stpout") ? args.at("stpout") : ""; - MString outfmtstp = args.contains("stpoutformat") ? args.at("stpoutformat") : (GetExt(name) == "nc" ? "nc" : "bin"); + MString outfmtstp = args.contains("stpoutformat") ? args.at("stpoutformat") : (GetExt(namestp) == "nc" ? "nc" : "bin"); size_t shiftx = args.contains("shiftx") ? args.at("shiftx").ToInteger() : 0; size_t shifty = args.contains("shifty") ? args.at("shifty").ToInteger() : 0; @@ -263,7 +263,7 @@ template MString ActionUV::DoAction(const CLArgs& args, D& ds) if(outfmtvel == "bin") { BFileW vel; - vel.Create(name, 4); + vel.Create(namevel, 4); vel.SetColumnName(1, "Longitude"); vel.SetColumnName(2, "Latitude"); vel.SetColumnName(3, "u, " + velunit); @@ -285,7 +285,7 @@ template MString ActionUV::DoAction(const CLArgs& args, D& ds) { MString err; - if(!err.Exist() && !headwrited) err = fwfilt.Create(sdata, name, compress); + if(!err.Exist() && !headwrited) err = fwfilt.Create(sdata, namevel, compress); if(!err.Exist() && !headwrited) err = fwfilt.AddTimeData(tdata, !average); if(!err.Exist() && !headwrited) err = fwfilt.AddAtts(pars); if(!err.Exist() && !headwrited) err = fwfilt.AddVariable("u", "", "Eastward velocity", velunit, ""); @@ -312,11 +312,11 @@ template MString ActionUV::DoAction(const CLArgs& args, D& ds) for(size_t iy = 0; iy < data.Ny() - 1; iy++) stp.Add(data.StablePoints(ix, iy)); if(outfmtstp == "bin") - stp.WriteBinBile(name, pars); + stp.WriteBinBile(namestp, pars); else if(outfmtstp == "nc" || outfmtstp == "netcdf") { MString err; - if(!err.Exist() && !headwrited) err = stp.CreateNcFile(name, pars, args.at("_cmdline"), compress, tdata, !average); + if(!err.Exist() && !headwrited) err = stp.CreateNcFile(namestp, pars, args.at("_cmdline"), compress, tdata, !average); if(!err.Exist()) err = stp.WriteNcFile(it); if(err.Exist()) return err; }