| java.lang.Object com.vividsolutions.jump.io.FMEGMLWriter
FMEGMLWriter | public class FMEGMLWriter implements JUMPWriter(Code) | | This class is a
JUMPWriter specialized to write FMEGML.
DataProperties for the JCSWriter write(featureSchema,DataProperties)
interface:
Parameter |
Meaning |
OutputFile or DefaultValue |
File name for output .xml file |
FMEFormatVersion |
'2000' or '2001' |
The format version specifies which version of FME GML this
should produce.
2000 |
<dataset
xmlns="http://www.safe.com/xml/namespaces/fmegml2"
xmlns:fme="http://www.safe.com/xml/namespaces/fmegml2"
xmlns:gml="http://www.opengis.net/gml"
xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance"
xsi:schemaLocation="http://www.safe.com/xml/schemas/fmegml2.xsd" >
|
2001 |
<dataset
xmlns="http://www.safe.com/xml/schemas/FMEFeatures"
xmlns:fme="http://www.safe.com/xml/schemas/FMEFeatures"
xmlns:gml="http://www.opengis.net/gml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.safe.com/xml/schemas/FMEFeatures.xsd" >
|
|
outputFormatType | int outputFormatType(Code) | | |
FMEGMLWriter | public FMEGMLWriter()(Code) | | Creates new FMEGMLWriter
|
JCSattributeType2FMEtype | String JCSattributeType2FMEtype(String jcsType) throws ParseException(Code) | | Convert a JCS column type to FME type (two different versions).
ie. STRING -> 'fme_char(1024)'
Parameters: jcsType - JCS column type (ie. 'STRING','DOUBLE', or 'INTEGER' |
write | public void write(FeatureCollection featureCollection, DriverProperties dp) throws IllegalParametersException, Exception(Code) | | Cause a featureCollection to be written using the outputfile (and format) specified in the dp parameter.
A GMLOutputTemplate will be autogenerated, then the write request passed off to the
GMLWriter .
Parameters: featureCollection - set of features to be written Parameters: dp - where to write and format |
|
|