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
SYMBOL | |
NAME "windrad" | |
TYPE TRUETYPE | |
FONT "carto" | |
CHARACTER "g" | |
ANTIALIAS TRUE | |
GAP 5 | |
END |
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
<?xml version='1.0' encoding='UTF-8' standalone='yes' ?> | |
<gpx version="1.1" creator="Osmand" xmlns="http://www.topografix.com/GPX/1/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd"> | |
<trk> | |
<trkseg> | |
<trkpt lat="51.6338118" lon="5.3003459"> | |
<ele>0.0</ele> | |
<hdop>37.0</hdop> | |
<time>2012-07-04T17:28:36Z</time> | |
</trkpt> | |
<trkpt lat="51.633991" lon="5.3002616"> |
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
function getTempImg(base64Image,filename){ | |
var decodedImage = new Buffer(base64Image, 'base64'); | |
fs.writeFile('cache/' + filename + '.jpg', decodedImage, function(err, data) { | |
console.log(data); | |
if (err){ | |
return err; | |
} else { | |
return 'cache/' + filename + '.jpg'; | |
} |
NewerOlder