bruce-models 0.8.1 → 0.8.2

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.
@@ -2321,9 +2321,9 @@
2321
2321
  var pointData = points[i];
2322
2322
  var coords = pointData.trim().split(splitterAxis);
2323
2323
  if (coords.length == 2 || coords.length == 3) {
2324
- var longitude = +coords[0];
2325
- var latitude = +coords[1];
2326
- var altitude = coords.length >= 3 ? +coords[2] : 0;
2324
+ var longitude = Number(coords[0]);
2325
+ var latitude = Number(coords[1]);
2326
+ var altitude = Number(coords.length >= 3 ? coords[2] : 0);
2327
2327
  if (longitude != null && latitude != null) {
2328
2328
  result.push({
2329
2329
  altitude: altitude,