This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*jshint esversion: 6 */ | |
| const exiftool = require("exiftool-vendored").exiftool; //yarn add exiftool-vendored | |
| const gpxParser = require("gpxparser"); //yarn add gpxparser | |
| const fs = require("fs"); | |
| var gpx = new gpxParser(); | |
| gpx.parse(fs.readFileSync("c:/data/Geo.gpx")); | |
| var mainTrack = gpx.tracks[0]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| print("Pi Time: \(3.14.f(3))") | |
| let myNumber = 4.20 / 6.9 | |
| print("the answer is \(myNumber.f(5))") |
OlderNewer