Skip to content

Commit ea74db2

Browse files
committed
Update spatial-io-core-operations.md
1 parent a4b3a45 commit ea74db2

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

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

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -33,23 +33,6 @@ By default, the reader will use the comma character as the delimiter. However, t
3333

3434
This reader also supports text qualifiers that are used to handle cells that contain the delimiter character. The quote (`'"'`) character is the default text qualifier, but it can be changed to any single character.
3535

36-
> [!NOTE]
37-
> The delimited reader and writer functionality interprets column names that contain forward slashes "/" as property paths. This allows for complex JSON objects to be flattened into a two-dimensional table. If this is not your intention, download the file outside of the reader and replace the forward slash character with the escaped hex code `/` or html code `/`.
38-
>
39-
> ```JavaScript
40-
> fetch('<URL to a delimited file to read>').then((response) => {
41-
> return response.text();
42-
> }).then((data) => {
43-
> //Replace all forward slash charcters with the escaped hex code "&#x2F;" or html code "&#47;"
44-
> data = data.replace(/\//g, '&#x2F;');
45-
>
46-
> //Pass the delimited data into the reader.
47-
> var csvTable = atlas.io.core.CsvReader.read(data);
48-
>
49-
> //Do something with the parsed data.
50-
> });
51-
> ```
52-
5336
## Write delimited files
5437

5538
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.

0 commit comments

Comments
 (0)