Skip to content

Commit 2fbd787

Browse files
author
farah-alyasari
committed
spatial-io-core-operations check
1 parent fa50fab commit 2fbd787

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-maps/spatial-io-core-operations.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ manager: philmea
1414

1515
In addition to providing tools to read spatial data files, the spatial IO module exposes core underlying libraries to read and write XML and delimited data fast and efficiently.
1616

17-
The `atlas.io.core` namespace contains two low-level classes that can quickly read and write CSV and XML data. These base classes power the spatial data readers and writers in the Spatial IO module. Feel free to use these classes to add additional support for reading and writing CSV or XML files.
17+
The `atlas.io.core` namespace contains two low-level classes that can quickly read and write CSV and XML data. These base classes power the spatial data readers and writers in the Spatial IO module. Feel free to use them to add additional reading and writing support for CSV or XML files.
1818

1919
## Read delimited files
2020

21-
The `atlas.io.core.CsvReader` class makes it easy to read strings that contain delimited data sets. This class provides two methods for reading data:
21+
The `atlas.io.core.CsvReader` class reads strings that contain delimited data sets. This class provides two methods for reading data:
2222

2323
- The `read` function will read the full data set and return a 2-dimensional array of strings representing all cells of the delimited data set.
24-
- The `getNextRow` function reads each line of text in a delimited data set and returns an array of string representing all cells in that line of data set. This method can access the memory more efficiently. The user can processes the row and dispose any unneeded memory from that row before processing the next row.
24+
- The `getNextRow` function reads each line of text in a delimited data set and returns an array of string representing all cells in that line of data set. The user can processes the row and dispose any unneeded memory from that row before processing the next row. So, function is more memory efficient.
2525

2626
By default, the reader will use the comma character as the delimiter. However, the delimiter can be changed to any single character or set to `'auto'`. When set to `'auto'`, the reader will analyze the first line of text in the string. Then, it will select the most common character from the table below to use as the delimiter.
2727

@@ -35,7 +35,7 @@ This reader also supports text qualifiers that are used to handle cells that con
3535

3636
## Write delimited files
3737

38-
The `atlas.io.core.CsvWriter` class makes it easy to efficiently write an array of objects as a delimited string. Any single character can be used as a delimiter or a text qualifier. The default delimiter is comma (`','`) and the default text qualifier is the quote (`'"'`) character.
38+
The `atlas.io.core.CsvWriter` writes an array of objects as a delimited string. Any single character can be used as a delimiter or a text qualifier. The default delimiter is comma (`','`) and the default text qualifier is the quote (`'"'`) character.
3939

4040
To use this class, follow the steps below:
4141

@@ -75,7 +75,7 @@ if (xmlDoc && xmlDoc.root && xmlDoc.root.tagName && xmlDoc.root.tagName === '<Yo
7575

7676
## Write XML files
7777

78-
The `atlas.io.core.SimpleXmlWriter` class makes it easy to write well-formatted XML in a memory efficient way.
78+
The `atlas.io.core.SimpleXmlWriter` class writes well-formatted XML in a memory efficient way.
7979

8080
The following code demonstrates how to use the `SimpleXmlWriter` class to generate a well-formatted XML string.
8181

0 commit comments

Comments
 (0)