-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge in MAG/magics from feature/revert to develop * commit '5087dcb05daaecf9191d8702314bd25a2a55caf8': Fix issues with colour setting Revert OutofBond Revert OutofBond Revert OutofBond Revert OutofBond Compilation issues aftre the merge Adding Point and SegmentJoiner in the Magics namespace to avoid confusion with other definitions. Symbol Plotting legend for CAMS plots. Reverting grib_wind_large_position and Reverting grib_field_large_position Revert in progress Opencharts : Symbol Plotting by property Fix grib decoding Wind fix Opencharts : Symbol Plotting by property Prepare version 4.15.0 Rmove out-of-bon functionalities Revert out_of_bound parameter family t Please enter the commit message for your changes. Lines starting
- Loading branch information
Showing
52 changed files
with
1,818 additions
and
394 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,99 @@ | ||
|
||
/****************************** LICENSE ******************************* | ||
* (C) Copyright 1996-2017 ECMWF. | ||
* | ||
* This software is licensed under the terms of the Apache Licence Version 2.0 | ||
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. | ||
* In applying this licence, ECMWF does not waive the privileges and immunities | ||
* granted to it by virtue of its status as an intergovernmental organisation nor | ||
* does it submit to any jurisdiction. | ||
******************************* LICENSE *******************************/ | ||
|
||
/*! \\file NoBoxPlotAttributes.h | ||
\\brief Definition of NoBoxPlot Attributes class. | ||
This file is automatically generated. | ||
Do Not Edit! | ||
*/ | ||
|
||
#include "NoBoxPlotAttributes.h" | ||
#include "MagicsParameter.h" | ||
#include "ParameterSettings.h" | ||
|
||
using namespace magics; | ||
|
||
NoBoxPlotAttributes::NoBoxPlotAttributes() | ||
|
||
|
||
{ | ||
} | ||
|
||
|
||
NoBoxPlotAttributes::~NoBoxPlotAttributes() | ||
{ | ||
|
||
} | ||
|
||
|
||
void NoBoxPlotAttributes::set(const std::map<string, string>& params) | ||
{ | ||
vector<string> prefix(1); | ||
int i = 0; | ||
prefix[i++] = "boxplot"; | ||
|
||
|
||
|
||
} | ||
|
||
void NoBoxPlotAttributes::copy(const NoBoxPlotAttributes& other) | ||
{ | ||
|
||
} | ||
|
||
|
||
bool NoBoxPlotAttributes::accept(const string& node) | ||
{ | ||
|
||
if ( magCompare(node, "boxplot") ) | ||
return true; | ||
|
||
return false; | ||
} | ||
|
||
void NoBoxPlotAttributes::set(const XmlNode& node) | ||
{ | ||
bool apply = false; | ||
|
||
if ( this->accept(node.name()) == false ) | ||
return; | ||
|
||
if ( magCompare(node.name(), "boxplot") ) | ||
apply = true; | ||
|
||
|
||
if ( apply ) | ||
set(node.attributes()); | ||
else { | ||
|
||
} | ||
for (auto &elt : node.elements()) | ||
{ | ||
|
||
} | ||
} | ||
|
||
void NoBoxPlotAttributes::print(ostream& out) const | ||
{ | ||
out << "Attributes["; | ||
|
||
out << "]" << "\n"; | ||
} | ||
|
||
void NoBoxPlotAttributes::toxml(ostream& out) const | ||
{ | ||
out << "\"boxplot\""; | ||
|
||
} | ||
|
Oops, something went wrong.