Polylines

eps_type: eps_polyline

EPS polyline features specify linear features defined by a sequence of x and y coordinates. Polylines encapsulate the concept of a line since a line is just a sequence of two points. Each polyline has a pen style associated with it that specifies the color, line weight, and line type used when the line is drawn. If no pen type is defined for a polyline entity, if line attributes aren’t found, then default parameters are used.

The table below lists the special FME attribute names used to control the EPS polyline settings.

Attribute Name

Contents

eps_line_width

Defines the line width used to draw the polyline. By default, the line is drawn one pixel wide.

Range: Float >= 0

Default: 0.0

eps_dash_on

The number of pixels to be used as the on part of the dashed line used to draw the feature. If eps_line_width is specified, then this value is multiplied by the size of the pen to determine the number of pixels. If both eps_dash_on and eps_dash_off are 0, then a solid line is used.

Range: Integer > 0

Default: 0

eps_dash_off

The number of pixels to be used as the off part of the dashed line used to draw the feature. If eps_line_width is specified, then this value is multiplied by the size of the pen to determine the number of pixels. If both eps_dash_on and eps_dash_off are 0, then a solid line is used.

Range: Integer > 0

Default: 0

eps_line_join_type

Specify the type of corner that should be drawn onto this path.

0 = sharp corners, 1 = rounded corners, 2 = butt-end corners

Range: 0, 1, 2

Default: 0

Optional: Yes