You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>Regular expressions are mini-language used to represent character patterns. There are many variations
136
-
of regular expression syntax - QGis uses the syntax provided by the <a href="http://qt-project.org/doc/qt-4.8/qregexp.html">QRegExp</a> class of the <a href="http://qt.digia.com">Qt</a> framework.</p>
136
+
of regular expression syntax - QGIS uses the syntax provided by the <a href="http://qt-project.org/doc/qt-4.8/qregexp.html">QRegExp</a> class of the <a href="http://qt.digia.com">Qt</a> framework.</p>
137
137
<p>In a regular expression delimited file each line is treated as a record. Each match of the regular expression in the line is treated as the end of a field.
138
138
If the regular expression contains capture groups (eg <tt>(cat|dog)</tt>)
139
139
then these are extracted as fields.
@@ -176,12 +176,12 @@ attributes of the record. Usually the attribute names are taken from the first
176
176
data record in the file. However if this does not contain attribute names, then they will be named <tt>field_1</tt>, <tt>field_2</tt>, and so on.
177
177
Also if records have more fields than are defined in the header record then these
178
178
will be named <tt>field_#</tt>, where # is the field number (note that empty fields at the end of a record are ignored).
179
-
QGis may override
179
+
QGIS may override
180
180
the names in the text file if they are numbers, or have names like <tt>field_#</tt>,
181
181
or are duplicated.
182
182
</p>
183
183
<p>
184
-
In addition to the attributes explicitly in the data file QGis assigns a unique
184
+
In addition to the attributes explicitly in the data file QGIS assigns a unique
185
185
feature id to each record. This is the line number in the source file on which
186
186
the record starts.
187
187
</p>
@@ -272,8 +272,8 @@ The following options can be added
272
272
<li><tt>geomType=(auto|point|line|polygon|none)</tt> specifies type of geometry for wkt fields, or none to load the file as an attribute-only table. The default is auto.</li>
273
273
<li><tt>crs=...</tt> specifies the coordinate system to use for the vector layer, in a format accepted by QgsCoordinateReferenceSystem.createFromString (for example "EPSG:4167"). If this is not
274
274
specified then a dialog box may request this information from the user
275
-
when the layer is loaded (depending on QGis CRS settings).</li>
276
-
<li><tt>quiet=(yes|no)</tt> specifies whether errors encountered loading the layer are presented in a dialog box (they will be written to the QGis log in any case). The default is no.</li>
275
+
when the layer is loaded (depending on QGIS CRS settings).</li>
276
+
<li><tt>quiet=(yes|no)</tt> specifies whether errors encountered loading the layer are presented in a dialog box (they will be written to the QGIS log in any case). The default is no.</li>
0 commit comments