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
Copy file name to clipboardExpand all lines: resources/context_help/QgsDelimitedTextSourceSelect
+7-3
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,9 @@ be double, otherwise the type will be text.
35
35
QGIS can also read the types from an OGR CSV driver compatible "csvt" file.
36
36
This is a file alongside the data file, but with a "t" appended to the file name.
37
37
The file should just contain one line which lists the type of each field.
38
-
Valid types are "integer", "real", "string", "date", "time", and "datetime". The date, time, and datetime types are treated as strings in QGIS.
38
+
Valid types are "integer", "long", "longlong", "real",
39
+
"string", "date", "time", and "datetime".
40
+
The date, time, and datetime types are treated as strings by the delimited text provider.
39
41
Each type may be followed by a width and precision, for example "real(10.4)".
40
42
The list of types are separated by commas, regardless of the delimiter used in the data file. An
41
43
example of a valid format file would be:
@@ -215,9 +217,11 @@ feature id to each record which is the line number in the source file on which
215
217
the record starts.
216
218
</p>
217
219
<p>
218
-
Each attribute also has a data type, one of string (text), integer, or real number.
220
+
Each attribute also has a data type, one of string (text), integer, longlong,
221
+
or real number.
219
222
The data type is inferred from the content of the fields - if every non blank value
220
-
is a valid integer then the type is integer, otherwise if it is a valid real
223
+
is a valid integer then the type is integer, otherwise if it is a valid long long
224
+
nubmer then the type is longlong, otherwise if it is a valid real
221
225
number then the type is real, otherwise the type is string. Note that this is
222
226
based on the content of the fields - quoting fields does not change the way they
0 commit comments