Class SimplePolygonGenerator

  • All Implemented Interfaces:
    adams.core.Destroyable, adams.core.GlobalInfoSupporter, adams.core.logging.LoggingLevelHandler, adams.core.logging.LoggingSupporter, adams.core.option.OptionHandler, adams.core.QuickInfoSupporter, adams.core.SizeOfHandler, Serializable

    public class SimplePolygonGenerator
    extends AbstractMapPolygonGenerator
    Generates polygons.

    -logging-level <OFF|SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST> (property: loggingLevel)
        The logging level for outputting errors and debugging output.
        default: WARNING
     
    -layer <java.lang.String> (property: layer)
        The name of the layer.
        default: SimplePolygonGenerator
     
    -coordinates <adams.data.spreadsheet.SpreadSheetColumnRange> (property: coordinates)
        The range of columns containing the GPS objects for the polygons.
        default: 
        example: A range is a comma-separated list of single 1-based indices or sub-ranges of indices ('start-end'); 'inv(...)' inverts the range '...'; apart from column names (case-sensitive), the following placeholders can be used as well: first, second, third, last_2, last_1, last
     
    -name <adams.data.spreadsheet.SpreadSheetColumnIndex> (property: name)
        The index of the column containing the name (optional).
        default: 
        example: An index is a number starting with 1; apart from column names (case-sensitive), the following placeholders can be used as well: first, second, third, last_2, last_1, last
     
    -timestamp <adams.data.spreadsheet.SpreadSheetColumnIndex> (property: timestamp)
        The column to obtain the timestamp from for the map object (optional).
        default: 
        example: An index is a number starting with 1; apart from column names (case-sensitive), the following placeholders can be used as well: first, second, third, last_2, last_1, last
     
    -additional-attributes <adams.data.spreadsheet.SpreadSheetColumnRange> (property: additionalAttributes)
        The range of column to add to the map object as well.
        default: 
        example: A range is a comma-separated list of single 1-based indices or sub-ranges of indices ('start-end'); 'inv(...)' inverts the range '...'; apart from column names (case-sensitive), the following placeholders can be used as well: first, second, third, last_2, last_1, last
     
    -border-color <java.awt.Color> (property: borderColor)
        The border color for the polygon.
        default: #0000ff
     
    -fill-color <java.awt.Color> (property: fillColor)
        The fill color for the polygon.
        default: #32646464
     
    -font <java.awt.Font> (property: font)
        The font to use for the text.
        default: helvetica-PLAIN-12
     
    Version:
    $Revision$
    Author:
    fracpete (fracpete at waikato dot ac dot nz)
    See Also:
    Serialized Form
    • Field Detail

      • m_Name

        protected adams.data.spreadsheet.SpreadSheetColumnIndex m_Name
        the index of the column with the name information (optional).
      • m_NameIndex

        protected int m_NameIndex
        the actual index of the name column.
      • m_BorderColor

        protected Color m_BorderColor
        the color of the border.
      • m_FillColor

        protected Color m_FillColor
        the fill color of the circle.
      • m_Font

        protected Font m_Font
        the font to use.
    • Constructor Detail

      • SimplePolygonGenerator

        public SimplePolygonGenerator()
    • Method Detail

      • globalInfo

        public String globalInfo()
        Returns a string describing the object.
        Specified by:
        globalInfo in interface adams.core.GlobalInfoSupporter
        Specified by:
        globalInfo in class adams.core.option.AbstractOptionHandler
        Returns:
        a description suitable for displaying in the gui
      • defineOptions

        public void defineOptions()
        Adds options to the internal list of options.
        Specified by:
        defineOptions in interface adams.core.option.OptionHandler
        Overrides:
        defineOptions in class AbstractMapPolygonGenerator
      • setName

        public void setName​(adams.data.spreadsheet.SpreadSheetColumnIndex value)
        Sets the index of the column containing the name.
        Parameters:
        value - the column index
      • getName

        public adams.data.spreadsheet.SpreadSheetColumnIndex getName()
        Returns the index of the column containing the name.
        Returns:
        the column index
      • nameTipText

        public String nameTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the GUI or for listing the options.
      • setBorderColor

        public void setBorderColor​(Color value)
        Sets the circle color for the collection.
        Parameters:
        value - the circle color
      • getBorderColor

        public Color getBorderColor()
        Returns the circle color for the collection.
        Returns:
        the circle color
      • borderColorTipText

        public String borderColorTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the GUI or for listing the options.
      • setFillColor

        public void setFillColor​(Color value)
        Sets the fill color for the polygon.
        Parameters:
        value - the fill color
      • getFillColor

        public Color getFillColor()
        Returns the fill color for the polygon.
        Returns:
        the fill color
      • fillColorTipText

        public String fillColorTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the GUI or for listing the options.
      • setFont

        public void setFont​(Font value)
        Sets the font for the text.
        Parameters:
        value - the font
      • getFont

        public Font getFont()
        Returns the font for the text.
        Returns:
        the font
      • fontTipText

        public String fontTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the GUI or for listing the options.
      • getQuickInfo

        public String getQuickInfo()
        Returns a quick info about the object, which can be displayed in the GUI.
        Specified by:
        getQuickInfo in interface adams.core.QuickInfoSupporter
        Overrides:
        getQuickInfo in class AbstractMapPolygonGenerator
        Returns:
        null if no info available, otherwise short string
      • check

        protected void check​(adams.data.spreadsheet.SpreadSheet sheet)
        Checks the spreadsheet and throws an exception if it fails.
        Overrides:
        check in class AbstractMapPolygonGenerator
        Parameters:
        sheet - the spreadsheet to check
      • init

        protected void init​(adams.data.spreadsheet.SpreadSheet sheet)
        Initializes the internal state with the given spreadsheet.
        Overrides:
        init in class AbstractMapPolygonGenerator
        Parameters:
        sheet - the spreadsheet to initialize with
      • doGenerate

        protected org.openstreetmap.gui.jmapviewer.interfaces.MapPolygon[] doGenerate​(adams.data.spreadsheet.SpreadSheet sheet)
        Performs the actual generation of the layer.
        Specified by:
        doGenerate in class AbstractMapObjectGenerator<org.openstreetmap.gui.jmapviewer.interfaces.MapPolygon>
        Parameters:
        sheet - the spreadsheet to use
        Returns:
        the generated layer