class GeoRSSWriter extends java.lang.Object implements Writer
A GeoRSS Simple Writer. See the GeoRSS spec for more details. Only Points, LineStrings, and Polygon are supported. Any other Geometry type will return a null value.
GeoRSSWriter writer = new GeoRSSWriter() String georss = writer.write(new Point(-71.92, 45.256)) <georss:point>45.256 -71.92</georss:point>
| Type | Name and description | 
|---|---|
java.lang.String  | 
                            typeThe type of encoding (simple, gml, w3c)  | 
                        
| Constructor and description | 
|---|
                                GeoRSSWriter() | 
                        
| Methods inherited from class | Name | 
|---|---|
class java.lang.Object | 
                            java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() | 
                        
Write a Geometry to a String
g -  The GeometryGroovy Documentation