From def90e703a5c9c08f5a392636a8a5254c36ab7c8 Mon Sep 17 00:00:00 2001 From: Zach Knox Date: Wed, 31 Aug 2016 20:19:59 -0400 Subject: [PATCH] fix the ignore --- .gitignore | 7 +++---- weather/lib/locations.js | 7 +++++++ 2 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 weather/lib/locations.js diff --git a/.gitignore b/.gitignore index cbc08c1..9d66ff2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ -.meteor/local -.meteor/meteorite -weather/server/lib/secrets.js -weather/settings.json weather/mup.json +weather/settings.json +weather/.meteor +weather/server/lib/secrets.js diff --git a/weather/lib/locations.js b/weather/lib/locations.js new file mode 100644 index 0000000..ee77124 --- /dev/null +++ b/weather/lib/locations.js @@ -0,0 +1,7 @@ +LOCATIONS = { + FAIRFAX: {name: 'Fairfax', lat: '38.830295', long: '-77.307717'}, + ARLINGTON: {name: 'Arlington', lat: '38.885025', long: '-77.101114'}, + SCITECH: {name: 'SciTech', lat: '38.756211', long: '-77.521461'}, + KOREA: {name: 'Mason Korea', lat: '37.367863', long: '126.630984'}//, + //RAK: {name: 'Mason Ras-Al-Khaimah', lat: '0', long: '0'} NEED LAT AND LONG +}; -- GitLab