The following GDAL vector drivers have varying levels of support for feature styles: DWG (libopencad), DWG (Teigha), DXF, KML (libkml), MapInfo, MicroStation DGN v7 and DGN v8, OpenJUMP JML and PDF.
This does not prevent us from storing the style information in an attribute when writing to some formats that have no provision for styles (e.g. E00). But then at the time such a dataset is opened through GDAL, the name of the attribute that contains style information should either be specified in some metadata, or be specified by the user.
Also, in the SFCOM interface, the style information will be stored in an attribute just like the geometry is.
There are two levels at which style information can be found:
A style can use a single tool, or use a combination of one or more tools. By combining the use of several tools in a style, one can build virtually any type of graphical representation. For instance, the SYMBOL tool can be used to place spaced symbols along a line. Also, the LABEL tool can be used to place text on a point, stretch it along a line, or even, by combining the PEN tool with the LABEL tool, use the line as a leader to the text label, and draw the text string on the last vertex of the line.
Of course, few systems can support all that. But the intention here is to have a style specification that is powerful and flexible enough to allow all types of formats to exchange style information with the least possible loss.
Example of this are text angle, text string, etc... these values change for every single text label, but we can share the rest of the label style at the layer level if we lookup the angle and text string in an attribute on each feature.
The syntax of the style string provides a way that any parameter value can be either a constant value, or a lookup to an attribute field.
PEN(c:#FF0000,w:5px)
BRUSH(fc:#0000FF);PEN(c:#000000)
SYMBOL(c:#00FF00,id:"points.sym-45,ogr-sym-7")
LABEL(f:"Times New Roman",s:12pt,t:{text_attribute})"
road: PEN(c:#FF0000,w:5px) lake: BRUSH(fc:#0000FF);PEN(c:#000000) campsite: SYMBOL(c:#00FF00,id:"points.sym-45,ogr-sym-7") label: LABEL(f:"Times New Roman",s:12pt,t:{text_attribute})Then individual features can refer to styles from the table above using the "@" character followed by the style name in their style property.
For instance, a feature with its style set to "@road" would be drawn as a red line.
<style_property> = "<style_def>" | "" | "@<style_name>" | "{<field_name>}" |
<style_def>
is defined later in this section.@<style_name>
is a reference to a predefined style in the layer or
the dataset's style table. The layer's table is looked up first, and if
style_name is not found there then the dataset's table will be looked up.{<field_name>}
means that the style property should be read
from the specified attribute field.
<style_def> = <style_part>[;<style_part>[;...]] <style_part> = <tool_name>([<tool_param>[,<tool_param>[,...]]]) <tool_name> = name of a drawing tool, for now: PEN | BRUSH | SYMBOL | LABEL <tool_param> = <param_name>:<param_value> <param_name> = see list of parameters names for each drawing tool <param_value> = <value> | <value><units> <value> = "<string_value>" | <numeric_value> | {<field_name>} <units> = g | px | pt | mm | cm | in |
By default, style parts are drawn in the order that they appear in the style_def string unless each part is assigned a different level parameter value (see the level parameter definition).
All drawing tool parameters are optional. So it is legal to have a style_part with an empty drawing tool parameter list (e.g. "PEN()"). For each parameter that does not have any specified value, it is up to the client application to use its own default value. This document provides advisory default values for most parameters, but it is not mandatory for an application to use those default values.
When {<field_name>} is used for a tool_param value, several options are available with respect to the units. The units can be specified after the field name as in PEN(c:#FF0000,w:{line_width}pt) or can be left unspecified as in PEN(c:#FF0000,w:{line_width}). In the first case, the default units will be points (pt), but if the attribute field line_width contains a value followed by a units abbreviation (e.g. "5px") then the units specified in the attribute fields have precedence (in this case pixels). Note that the attribute field does not have to contain a units value and probably won't in most cases; it is just an optional feature to be able to override the default units from inside an attribute field's value.
param_name | Description |
---|---|
c | Pen Color, expressed in hexadecimal (#RRGGBB[AA])
[AA] the last 2 digits define the alpha channel value, with 0 being transparent and FF being opaque. The default is FF (opaque) Suggested default: black (c:#000000) Example: PEN(c:#FF0000), or PEN(C:#FF0000FF) |
w | Pen Width, expressed as a numeric value with units (g, px, pt, mm, cm, in)
Suggested default: 1 pixel Examples: PEN(c:#FF0000,w:5px), PEN(w:3pt), PEN(w:50g) |
p | Pattern - To create dash lines. A list of pen-down/pen-up distances
Examples: = PEN(c:#FF0000,w:2px,p:"4px 5px") - short-dash line = PEN(c:#FF0000,w:2px,p:"10px 5px") - long-dash line = PEN(c:#FF0000,w:2px,p:"10px 5px 4px 5px") - long/short dash line |
id | Comma-delimited list of Pen Names or Ids - For systems that
identify pens with a name or an id. The names in the comma-delimited list
of ids are scanned until one is recognized by the target system.
Pen Ids can be either system-specific ids (see further below) or be one of the pre-defined OGR pen ids for well known line patterns. The id parameter should always include one of the OGR ids at the end of the comma-delimited list of ids so that an application never has to rely on understanding system-specific ids.
Here is the current list of OGR pen ids (this could grow over time):
System-specific ids are very
likely to be meaningful only to that specific system that created them.
The ids should start with the system's name, followed by a dash (-),
followed by whatever information is meaningful to that system (a number,
a name, a filename, etc.). System-specific ids are allowed in order to prevent loss of information when dealing with data from systems that store line patterns in external files or that have their own pre-defined set of line styles (for instance, to do a MapInfo MIF to TAB translation without any loss.) Examples: |
cap | Pen Cap - Set the shape of end points of lines. "cap:b" - Butt: The ends of the line don't extend beyond the end points. This is the default. "cap:r" - Round: Terminate lines with a circle whose diameter is equal to the line width. "cap:p" - Projecting: Similar to Butt, but the ends of the line extend by half of line width beyond the end points. |
j | Pen Join - Set the shape of the join point (vertex) of lines. "j:m" - Miter: Extend the outer edge of the lines until they touch. This is the default. "j:r" - Rounded: Join lines with an arc whose center is at the join point and whose diameter is equal to the line width. "j:b" - Bevel: Join the lines with butt end caps and fill the resulting triangular notch at the join position. |
dp | Perpendicular Offset, expressed as a numeric value with units (g, px, pt, mm, cm, in) Offset from the line center. If the offset is negative then the pen will be drawn left of the main segment and right otherwise. |
l | Priority Level - Numeric value defining the order in which style
parts should be drawn. Lower priority style parts are drawn first, and
higher priority ones are drawn on top.
If priority level is unspecified, the default is 1. |
param_name | Description |
---|---|
fc |
Brush ForeColor, expressed in hexadecimal (#RRGGBB[AA]). Used for painting the brush pattern itself.
|
bc |
Brush BackColor, expressed in hexadecimal (#RRGGBB[AA]). Used for painting the area behind the brush pattern.
|
id |
Brush Name or Brush Id - Comma-delimited list of brush names or ids. The names in the comma-delimited list of ids are scanned until one is recognized by the target system. Brush Ids can be either system-specific ids (see further below) or be one of the pre-defined OGR brush ids for well known brush patterns. The id parameter should always include one of the OGR ids at the end of the comma-delimited list of ids so that an application never has to rely on understanding system-specific ids.
Here is the current list of OGR brush ids (this could grow over time):
Like with Pen Ids, system-specific brush ids are very likely to be meaningful only to that specific system that created them. The ids should start with the system's name, followed by a dash (-), followed by whatever information is meaningful to that system (a number, a name, a filename, etc.). The following conventions will be used for common system-specific brush ids:
Other conventions may be added in the future (such as vector symbols, WMF, etc). |
a | Angle - Rotation angle (in degrees, counterclockwise) to apply to the brush pattern. |
s | Size or Scaling Factor - Numeric value with or without units.
If units are specified, then this value is the absolute size to draw the brush or symbol. If no units are specified then it is taken as a scaling factor relative to the symbol's default size. |
dx, dy | Spacing, expressed as a numeric value with units (g, px, pt, mm, cm, in)
If filling an area using point symbols, these values will define the spacing to use between them. "dx" is the horizontal distance between the center of two adjacent symbols and "dy" is the vertical distance. The default is to use the symbol's bounding box width and height for dx and dy respectively. |
l | Priority Level - Numeric value defining the order in which style
parts should be drawn. Lower priority style parts are drawn first, and
higher priority ones are drawn on top.
If priority level is unspecified, the default is 1. |
param_name | Description |
---|---|
id |
Symbol Name or Id - Comma-delimited list of symbol names or ids. The names in the comma-delimited list of ids are scanned until one is recognized by the target system. Symbol Ids can be either system-specific ids (see further below) or be one of the pre-defined OGR symbol ids for well known symbols. The id parameter should always include one of the OGR ids at the end of the comma-delimited list of ids so that an application never has to rely on understanding system-specific ids.
Here is the current list of OGR symbol ids (this could grow over time):
Like with Pen Ids, system-specific symbol ids are very likely to be meaningful only to that specific system that created them. The ids should start with the system's name, followed by a dash (-), followed by whatever information is meaningful to that system (a number, a name, a filename, etc.). The following conventions will be used for common system-specific symbol ids:
Other conventions may be added in the future (such as vector symbols, WMF, etc). |
a | Angle - Rotation angle (in degrees, counterclockwise) to apply to the symbol. |
c |
Symbol Color, expressed in hexadecimal (#RRGGBB[AA])
|
o |
Symbol Outline Color, expressed in hexadecimal (#RRGGBB[AA]).
|
s | Size or Scaling Factor - Numeric value with or without units.
If units are specified, then this value is the absolute size to draw the symbol. If no units are specified then it is taken as a scaling factor relative to the symbol's default size. |
dx, dy | X and Y offset of the symbol's insertion point, expressed as a
numeric value with units (g, px, pt, mm, cm, in)
Applies to point geometries, and to symbols placed at each vertex of a polyline. |
ds, dp, di | Spacing parameters for symbols spaced along a line, expressed as a
numeric value with units (g, px, pt, mm, cm, in).
"ds" is the step to use when placing symbols along the line. By default, symbols applied to a feature with a line geometry are placed at each vertex, but setting "ds" triggers the placement of symbols at an equal distance along the line. "ds" has no effect for a feature with a point geometry. "dp" can be used together with "ds" to specify the perpendicular distance between the symbols' center and the line along which they're placed. Finally, "di" can be used to specify an initial offset from the beginning of the line. Example: SYMBOL(id:123, s:5, di:5px, ds:50px) |
l | Priority Level - Numeric value defining the order in which style
parts should be drawn. Lower priority style parts are drawn first, and
higher priority ones are drawn on top.
If priority level is unspecified, the default is 1. |
f | Font Name -
Comma-delimited list of fonts names. Works like the CSS font-family
property: the list of font names is scanned until a known font name is encountered.
Example: SYMBOL(c:#00FF00,s:12pt,id:"font-sym-75,ogr-sym-9",f:"MapInfo_Cartographic") |
param_name | Description |
---|---|
f | Font Name -
Comma-delimited list of fonts names. Works like the CSS font-family
property: the list of font names is scanned until a known font name is encountered.
Example: LABEL(f:"Noto Sans, Helvetica", s:12pt, t:"Hello World!") |
s | Font Size, expressed as a numeric value with units (g, px, pt, mm, cm, in).
In the CAD world, font size, or "text height", determines the height of a capital letter – what typographers call "cap height". But in the worlds of typesetting, graphics and cartography, font size refers to the "em height" of the font, which is taller than the cap height. This means that text assigned a height of 1 inch in a DXF file will look larger (often about 45% larger) than 72-point text in a PDF file or MapInfo map. At present, GDAL vector drivers treat the "s:" style string value as whichever font size measurement (cap height or em height) is used natively by that format, which may result in incorrect text sizing when using the ogr2ogr tool. This parameter could be subject to clearer specification in the future. |
t | Text String - Can be a constant string, or a reference to an
attribute field's value. If a double-quote character or backslash (\) character
is present in the string, it is escaped with a backslash character before it.
Examples: LABEL(f:"Arial, Helvetica", s:12pt, t:"Hello World!") LABEL(f:"Arial, Helvetica", s:12pt, t:"Hello World with escaped \"quotes\" and \\backslash!") LABEL(f:"Arial, Helvetica", s:12pt, t:{text_attribute}) |
a | Angle - Rotation angle (in degrees, counterclockwise). |
c | Text Foreground Color, expressed in hexadecimal (#RRGGBB[AA])
Suggested default: black (c:#000000) |
b | Text Background Color - Color of the filled box to draw behind the label, expressed in hexadecimal (#RRGGBB[AA]). No box drawn if not set. |
o | Text Outline Color - Color of the text outline (halo in MapInfo terminology), expressed in hexadecimal (#RRGGBB[AA]). No outline if not set. |
h | Shadow Color - Color of the text shadow, expressed in hexadecimal (#RRGGBB[AA]). No shadow if not set. |
w | Stretch - The stretch factor changes the width of all characters in the font by the given percentage. For example, a setting of 150 results in all characters in the font being stretched to 150% of their usual width. The default stretch factor is 100. |
m | Label Placement Mode - How the text is drawn relative to the
feature's geometry.
"m:p" - The default. A simple label is attached to a point or to the first vertex of a polyline. "m:l" - Text is attached to the last vertex of a polyline. A PEN tool can be combined with this LABEL tool to draw the polyline as a leader to the label. "m:s" - Stretch the text string along a polyline, with an equal spacing between each character. "m:m" - Place text as a single label at the middle of a polyline (based on total line length). "m:w" - One word per line segment in a polyline. "m:h" - Every word of text attached to polyline is placed horizontally in its segment, anchor point is a center of segment. "m:a" - Every word of text attached to polyline is stretched to fit the segment of polyline and placed along that segment. The anchor point is a start of a segment. |
p |
Anchor Position - A value from 1 to 12 defining the
label's position relative to the point to which it is
attached. There are four vertical alignment modes:
baseline, center, top and bottom;
and three horizontal modes: left, center and
right. The scheme is shown at right.
Currently, the precise interpretation of these values (for example, whether accents on uppercase letters sit above or below the alignment point with p:7) differs from file format to file format. This parameter could be subject to clearer specification in the future. |
dx, dy | X and Y offset of the label's insertion point, expressed as a
numeric value with units (g, px, pt, mm, cm, in).
Applies to text placed on a point, or at each vertex of a polyline. |
dp | Perpendicular Offset for labels placed along a line, expressed as
a numeric value with units (g, px, pt, mm, cm, in).
"dp" specifies the perpendicular distance between the label and the line along which it is placed. If the offset is negative then the label will be shifted left of the main segment, and right otherwise. |
bo | Bold - Set to 1 for bold text. Set to 0 or omitted otherwise. |
it | Italic - Set to 1 for italic text. Set to 0 or omitted otherwise. |
un | Underline - Set to 1 for underlined text. Set to 0 or omitted otherwise. |
st | Strikethrough - Set to 1 for struck-through text. Set to 0 or omitted otherwise. |
l | Priority Level - Numeric value defining the order in which style
parts should be drawn. Lower priority style parts are drawn first, and
higher priority ones are drawn on top.
If priority level is unspecified, the default is 1. |
For file formats that do not support tables of styles, then the style table could be stored in a text file with a .ofs (OGR Feature Styles) extension and the same basename as the dataset. This would apply to formats like Esri Shapefile.
Here is an example of a .ofs file:
#OFS-Version: 1.0 #StyleField: "style" DefaultStyle: PEN(c:#000000) road: PEN(c:#FF0000,w:5px) lake: BRUSH(fc:#0000FF);PEN(c:#000000) campsite: SYMBOL(c:#00FF00,id:"points.sym-45,ogr-sym-7") label: LABEL(f:"Times New Roman",s:12pt,t:{text_attribute})
The first line is a signature with a version number, which must be present.
The second line (StyleField: "style") is the name of the attribute field in which the Feature Style String is stored for each object in the corresponding layer. This is optional, if not set, then the objects in the layer will all share the same style defined in DefaultStyle.
The third line (DefaultStyle:...) defines the style that applies by default to all objects that have no explicit style.
Then the list of style definitions follow.
You can use the OGR_STYLE special field to extract the feature level style, and ogr2ogr can be used to transfer the style string between data sources according to the following example:
ogr2ogr -f "ESRI Shapefile" -sql "select *, OGR_STYLE from rivers" rivers.shp rivers.tab
Without specifying the length of the style field, the output driver may truncate the length to a default value. Therefore it may be necessary to specify the target length manually, like:
ogr2ogr -f "ESRI Shapefile" -sql "select *, CAST(OGR_STYLE AS character(255)) from rivers" rivers.shp rivers.tab
OGR is aware of using the OGR_STYLE field if it exists, and OGRFeature::GetStyleString will return the value of this field if no style string has been specified programmatically.
The OGRFeature class has
member functions GetStyleString
, SetStyleString
and
SetStyleStringDirectly
which may be used to interact with a
feature's style string as a C-style string. Additionally, there are
GetStyleTable
, SetStyleTable
and
SetStyleTableDirectly
for managing style tables as instances of the
OGRStyleTable class.
The OGRLayer class and
GDALDataset class also
have GetStyleTable
, SetStyleTable
and
SetStyleTableDirectly
member functions.
To parse style strings, the OGRStyleMgr class is used. Each style tool in the string is accessed as an instance of the OGRStyleTool class. Lastly, four helper classes exist, one for each tool (OGRStylePen, OGRStyleBrush, OGRStyleSymbol, OGRStyleLabel), with each available parameter represented by a getter and setter member function. To understand these classes better, it may be useful to read the ogr_featurestyle.h and ogrfeaturestyle.cpp code files.
Here is some example C++ code:
OGRStyleTable oStyleTable; OGRStyleMgr *poStyleMgr = new OGRStyleMgr(&oStyleTable); // Create a new style in the style table by specifying the whole style string if (poStyleMgr->AddStyle("@Name","PEN(c:#123456;w:10px);BRUSH(c:#345678)")) { poStyleMgr->SetFeatureStyleString(poFeature,"@Name",TRUE) // or poStyleMgr->SetFeatureStyleString(poFeature,"PEN(c:#123456,w:10px);BRUSH(c:#345678)",FALSE) } oStyleTable->SaveStyleTable("ttt.tbl"); // Create a new style in the style table by specifying each tool (part) as a string poStyleMgr->InitStyleString(); poStyleMgr->AddPart("PEN(c:#123456,w:10px)"); poStyleMgr->AddPart("BRUSH(c:345678)"); poStyleMgr->AddStyle("@Name"); poStyleMgr->SetFeatureStyleString(poFeature,"@Name",TRUE); oStyleTable->SaveStyleTable("ttt.tbl"); // Create a new style in the style table using the style tool helper classes OGRStyleTool *poStylePen = new OGRStylePen; poStylePen->SetColor("#123456"); poStylePen->SetUnit(OGRSTUPixel); poStylePen->SetWidth(10.0); poStyleMgr->AddPart(poStylePen); delete poStylePen; // Reading a style OGRStyleTool *poStyleTool; poStyleMgr->GetStyleString(poFeature); for (int iPart = 0; iPart < poStyleMgr->GetPartCount(); iPart++) { poStyleTool = GetPart(iPart); switch (poStyleTool->GetType()) { case OGRSTCPen: poStylePen = (OGRStylePen *)poStyleTool; pszColor = poStylePen->Color(bDefault); if (bDefault == FALSE) poStylePen->GetRGBFromString(pszColor, nRed, nGreen, nBlue, nTrans); else // Color not defined dfWidth = poStylePen->Width(bDefault); if (bDefault == FALSE) // Use dfWidth else // dfWidth not defined : : } }