Class GeoRSSModule

    • Field Detail

      • GEORSS_GEORSS_URI

        public static final String GEORSS_GEORSS_URI
        namespace URI for georss simple: "http://www.georss.org/georss"
        See Also:
        Constant Field Values
      • GEORSS_W3CGEO_URI

        public static final String GEORSS_W3CGEO_URI
        namespace URI for w3c georss : "http://www.w3.org/2003/01/geo/wgs84_pos#"
        See Also:
        Constant Field Values
      • GEORSS_GML_URI

        public static final String GEORSS_GML_URI
        namespace URI for GML georss : "http://www.opengis.net/gml"
        See Also:
        Constant Field Values
      • SIMPLE_NS

        public static final org.jdom2.Namespace SIMPLE_NS
        Namespace for georss simple : xmlns:georss="http://www.georss.org/georss"
      • W3CGEO_NS

        public static final org.jdom2.Namespace W3CGEO_NS
        Namespace for w3c georss : xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
      • GML_NS

        public static final org.jdom2.Namespace GML_NS
        Namespace for gml georss : xmlns:gml="http://www.opengis.net/gml"
    • Method Detail

      • setGeometry

        public void setGeometry​(AbstractGeometry geometry)
        Set geometry of georss element
        Parameters:
        geometry - geometry
      • getGeometry

        public AbstractGeometry getGeometry()
        returns the geometry
        Returns:
        geometry
      • getFeatureTypeTag

        public String getFeatureTypeTag()
        The Feature Type tag of GeoRSS element
        Returns:
        Feature Type tag
      • setFeatureTypeTag

        public void setFeatureTypeTag​(String featureTypeTag)
        Set Feature Type tag of GeoRSS element
        Parameters:
        featureTypeTag -
      • getRelationshipTag

        public String getRelationshipTag()
        The Relationship tag of GeoRSS element
        Returns:
        Relationship tag
      • setRelationshipTag

        public void setRelationshipTag​(String relationshipTag)
        Set Relationship tag of GeoRSS element
        Parameters:
        relationshipTag -
      • getFeatureNameTag

        public String getFeatureNameTag()
        The Feature Name tag of GeoRSS element
        Returns:
        Feature Name tag
      • setFeatureNameTag

        public void setFeatureNameTag​(String featureNameTag)
        Set Feature Name tag of GeoRSS element
        Parameters:
        featureNameTag -
      • setElev

        public void setElev​(Double elev)
        Elevation, specified in GeoRSS elements, can be expressed as "elev". "elev" is meant to contain "common" GPS elevation readings, i.e. height in meters from the WGS84 ellipsoid, which is a reading that should be easy to get from any GPS device. Set elev of georss element
        Parameters:
        elev - elev
      • getElev

        public Double getElev()
        returns the elev of georss element
        Returns:
        elev
      • setFloor

        public void setFloor​(Integer floor)
        Elevation, specified in GeoRSS elements, can be expressed as "floor". "floor" is meant to contain the floor number of a building. Set floor of georss element
        Parameters:
        floor - floor
      • getFloor

        public Integer getFloor()
        returns the floor of georss element
        Returns:
        floor
      • setRadius

        public void setRadius​(Double radius)
        "radius" indicates the size in meters of a radius or buffer around the geometry object, for example, radius of circular area around a point geometry. Set radius of georss element
        Parameters:
        radius - radius
      • getRadius

        public Double getRadius()
        returns the radius of georss element
        Returns:
        radius
      • getPosition

        public Position getPosition()
        Convenience method to return point geometry. Returns null if the geometry is non-point.
        Returns:
        geometry
      • setPosition

        public void setPosition​(Position pos)
        Convenience method to set point geometry.