-
Notifications
You must be signed in to change notification settings - Fork 371
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f78af65
commit b8b842c
Showing
3 changed files
with
60 additions
and
61 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ wpd.initApp = function() {// This is run when the page loads. | |
wpd.layoutManager.initialLayout(); | ||
if(!wpd.loadRemoteData()) { | ||
wpd.graphicsWidget.loadImageFromURL('start.png'); | ||
wpd.messagePopup.show(wpd.gettext('unstable-version-warning'), wpd.gettext('unstable-version-warning-text')); | ||
//wpd.messagePopup.show(wpd.gettext('unstable-version-warning'), wpd.gettext('unstable-version-warning-text')); | ||
} | ||
document.getElementById('loadingCurtain').style.display = 'none'; | ||
|
||
|
@@ -1516,6 +1516,62 @@ wpd.PlotData = (function () { | |
})(); | ||
|
||
|
||
/* | ||
WebPlotDigitizer - http://arohatgi.info/WebPlotDigitizer | ||
Copyright 2010-2016 Ankit Rohatgi <[email protected]> | ||
This file is part of WebPlotDigitizer. | ||
WebPlotDigitizer is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
WebPlotDigitizer is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with WebPlotDigitizer. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
|
||
var wpd = wpd || {}; | ||
|
||
wpd.AveragingWindowAlgo = (function () { | ||
|
||
var Algo = function () { | ||
|
||
var xStep = 5, yStep = 5; | ||
|
||
this.getParamList = function () { | ||
return [['ΔX', 'Px', 10], ['ΔY', 'Px', 10]]; | ||
}; | ||
|
||
this.setParam = function (index, val) { | ||
if(index === 0) { | ||
xStep = val; | ||
} else if(index === 1) { | ||
yStep = val; | ||
} | ||
}; | ||
|
||
this.run = function (plotData) { | ||
var autoDetector = plotData.getAutoDetector(), | ||
dataSeries = plotData.getActiveDataSeries(), | ||
algoCore = new wpd.AveragingWindowCore(autoDetector.binaryData, autoDetector.imageHeight, autoDetector.imageWidth, xStep, yStep, dataSeries); | ||
|
||
algoCore.run(); | ||
}; | ||
|
||
}; | ||
return Algo; | ||
})(); | ||
|
||
/* | ||
WebPlotDigitizer - http://arohatgi.info/WebPlotDigitizer | ||
|
@@ -1648,62 +1704,6 @@ wpd.AveragingWindowCore = (function () { | |
}; | ||
return Algo; | ||
})(); | ||
/* | ||
WebPlotDigitizer - http://arohatgi.info/WebPlotDigitizer | ||
Copyright 2010-2016 Ankit Rohatgi <[email protected]> | ||
This file is part of WebPlotDigitizer. | ||
WebPlotDigitizer is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
WebPlotDigitizer is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with WebPlotDigitizer. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
|
||
var wpd = wpd || {}; | ||
|
||
wpd.AveragingWindowAlgo = (function () { | ||
|
||
var Algo = function () { | ||
|
||
var xStep = 5, yStep = 5; | ||
|
||
this.getParamList = function () { | ||
return [['ΔX', 'Px', 10], ['ΔY', 'Px', 10]]; | ||
}; | ||
|
||
this.setParam = function (index, val) { | ||
if(index === 0) { | ||
xStep = val; | ||
} else if(index === 1) { | ||
yStep = val; | ||
} | ||
}; | ||
|
||
this.run = function (plotData) { | ||
var autoDetector = plotData.getAutoDetector(), | ||
dataSeries = plotData.getActiveDataSeries(), | ||
algoCore = new wpd.AveragingWindowCore(autoDetector.binaryData, autoDetector.imageHeight, autoDetector.imageWidth, xStep, yStep, dataSeries); | ||
|
||
algoCore.run(); | ||
}; | ||
|
||
}; | ||
return Algo; | ||
})(); | ||
|
||
/* | ||
WebPlotDigitizer - http://arohatgi.info/WebPlotDigitizer | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters