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.
@@ -2358,9 +2358,9 @@ var Geometry;
2358
2358
  var pointData = points[i];
2359
2359
  var coords = pointData.trim().split(splitterAxis);
2360
2360
  if (coords.length == 2 || coords.length == 3) {
2361
- var longitude = +coords[0];
2362
- var latitude = +coords[1];
2363
- var altitude = coords.length >= 3 ? +coords[2] : 0;
2361
+ var longitude = Number(coords[0]);
2362
+ var latitude = Number(coords[1]);
2363
+ var altitude = Number(coords.length >= 3 ? coords[2] : 0);
2364
2364
  if (longitude != null && latitude != null) {
2365
2365
  result.push({
2366
2366
  altitude: altitude,