Examples of WWZ2DPlotModel


Examples of org.aavso.tools.vstar.ui.model.plot.WWZ2DPlotModel

    List<NamedComponent> namedComponents = new ArrayList<NamedComponent>();

    final String MAXIMAL_WWZ = "(" + LocaleProps.get("MAXIMAL") + " WWZ)";

    // Maximal period vs time plot.
    namedComponents.add(createChart(MAXIMAL_WWZ, new WWZ2DPlotModel(wwt
        .getMaximalStats(), WWZCoordinateType.TAU,
        WWZCoordinateType.PERIOD),
        getMinValue(WWZCoordinateType.PERIOD),
        getMaxValue(WWZCoordinateType.PERIOD)));

    // Maximal frequency vs time plot.
    namedComponents.add(createChart(MAXIMAL_WWZ, new WWZ2DPlotModel(wwt
        .getMaximalStats(), WWZCoordinateType.TAU,
        WWZCoordinateType.FREQUENCY),
        getMinValue(WWZCoordinateType.FREQUENCY),
        getMaxValue(WWZCoordinateType.FREQUENCY)));

    // Maximal semi-amplitude vs time plot.
    namedComponents.add(createChart(MAXIMAL_WWZ, new WWZ2DPlotModel(wwt
        .getMaximalStats(), WWZCoordinateType.TAU,
        WWZCoordinateType.SEMI_AMPLITUDE), wwt.getMinAmp(), wwt
        .getMaxAmp()));

    // Contour plot of time vs period vs WWZ.
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.