@idm-plugin/geo 2.0.8 → 2.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -14
- package/dist/index.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2167,20 +2167,7 @@ class i {
|
|
|
2167
2167
|
b.push('<?xml version="1.0"?>'), b.push('<?mso-application progid="Excel.Sheet"?>'), b.push(
|
|
2168
2168
|
'<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet">'
|
|
2169
2169
|
), b.push(' <Worksheet ss:Name="Route">'), b.push(" <Table>"), b.push(" <Row>"), b.push(` <Cell ss:MergeAcross="16"><Data ss:Type="String">${i.xmlEscape("ROUTE SHEET exported by JRC ECDIS.")}</Data></Cell>`), b.push(" </Row>"), b.push(" <Row>"), b.push(` <Cell ss:MergeAcross="16"><Data ss:Type="String">${i.xmlEscape(M)}</Data></Cell>`), b.push(" </Row>"), b.push(" <Row/>");
|
|
2170
|
-
const c = [
|
|
2171
|
-
"WPT No.",
|
|
2172
|
-
"LAT deg",
|
|
2173
|
-
"LAT min",
|
|
2174
|
-
"LAT dir",
|
|
2175
|
-
"LON deg",
|
|
2176
|
-
"LON min",
|
|
2177
|
-
"LON dir",
|
|
2178
|
-
"PORT[NM]",
|
|
2179
|
-
"STBD[NM]",
|
|
2180
|
-
"Arr. Rad[NM]",
|
|
2181
|
-
"Speed[kn]",
|
|
2182
|
-
"Sail(RL/GC)"
|
|
2183
|
-
];
|
|
2170
|
+
const c = ["WPT No.", "LAT", "", "", "LON", "", "", "PORT[NM]", "STBD[NM]", "Arr. Rad[NM]", "Speed[kn]", "Sail(RL/GC)"];
|
|
2184
2171
|
b.push(" <Row>");
|
|
2185
2172
|
for (const p of c)
|
|
2186
2173
|
b.push(` <Cell><Data ss:Type="String">${i.xmlEscape(p)}</Data></Cell>`);
|