This file contains 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
var fs = require('fs'); | |
var util = require('util'); | |
var files = ['FILE0502', 'FILE0503', 'FILE0504']; | |
var dir = '/home/rob/Pictures/2015/03/01'; | |
/** Extend Number object with method to convert numeric degrees to radians */ | |
if (Number.prototype.toRadians === undefined) { | |
Number.prototype.toRadians = function() { return this * Math.PI / 180; }; | |
} |