Skip to content

Commit

Permalink
created issue #1036 to work on merge code, this push works without th…
Browse files Browse the repository at this point in the history
…e merge code
  • Loading branch information
gopa-noaa committed Aug 3, 2023
1 parent 9785030 commit 0d632ce
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions apps/cb-ceiling/server/dataFunctions/data_dieoff.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ dataDieoff = function (plotParams, plotFunction) {
} else {
// send to matsMiddle
// TODO - remove orioginal MW TimeSeries
// const tss = new matsMiddleDieoff.MatsMiddleDieoff(cbPool);
const tss = new matsMiddleTsDieoff.MatsMiddleTsDieoff(cbPool);
const tss = new matsMiddleDieoff.MatsMiddleDieoff(cbPool);
// const tss = new matsMiddleTsDieoff.MatsMiddleTsDieoff(cbPool);

// TODO - remove logToFile = true assignment
tss.logToFile = true;
Expand All @@ -212,7 +212,7 @@ dataDieoff = function (plotParams, plotFunction) {
model,
null,
threshold,
null,
// null,
fromSecs,
toSecs,
validTimes,
Expand Down
10 changes: 5 additions & 5 deletions apps/cb-ceiling/server/dataFunctions/data_series.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ dataSeries = function (plotParams, plotFunction) {
} else {
// send to matsMiddle
// TODO - remove orioginal MW TimeSeries
const tss = new matsMiddleTsDieoff.MatsMiddleTsDieoff(cbPool);
// const tss = new matsMiddleTimeSeries.MatsMiddleTimeSeries(cbPool);
// const tss = new matsMiddleTsDieoff.MatsMiddleTsDieoff(cbPool);
const tss = new matsMiddleTimeSeries.MatsMiddleTimeSeries(cbPool);
// TODO - remove logToFile = true assignment
tss.logToFile = true;
const rows = tss.processStationQuery(
Expand All @@ -179,9 +179,9 @@ dataSeries = function (plotParams, plotFunction) {
average,
fromSecs,
toSecs,
validTimes,
null,
null
validTimes
// null,
// null
);

// send the query statement to the query function
Expand Down

0 comments on commit 0d632ce

Please sign in to comment.