You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
593 B
22 lines
593 B
//=============================
|
|
//
|
|
// IIFE ENTRY POINT
|
|
//
|
|
//=============================
|
|
(function() {
|
|
Promise.resolve()
|
|
.then(BuoyAnalysisData.populateMapData)
|
|
.then(BuoyAnalysisData.populateSrcFile)
|
|
|
|
.then(BuoyAnalysisMap.drawMap)
|
|
.then(BuoyAnalysisMap.drawStations)
|
|
.then(BuoyAnalysisMap.drawReticle)
|
|
.then(BuoyAnalysisMap.findStationsUnderReticle)
|
|
|
|
.then(BuoyAnalysisBehaviors.attachBehaviors)
|
|
|
|
.then(BuoyAnalysisChart.updateAxes)
|
|
.then(BuoyAnalysisChart.draw)
|
|
|
|
.then(BuoyAnalysisChart3.draw)
|
|
})();
|
|
|