Add left-hand-driving dataset

(For future use by turn lane editor)
This commit is contained in:
Bryan Housel
2016-06-02 15:33:48 -04:00
parent e5eee4ed6c
commit 7cb8e5a00c
3 changed files with 2898 additions and 3 deletions
+2 -1
View File
@@ -296,7 +296,8 @@ fs.writeFileSync('data/data.js', 'iD.data = ' + JSON.stringify({
en: read('dist/locales/en.json'),
suggestions: r('name-suggestions.json'),
addressFormats: r('address-formats.json'),
phoneFormats: r('phone-formats.json')
phoneFormats: r('phone-formats.json'),
driveLeft: r('drive-left.json')
}) + ';');
fs.writeFileSync('dist/presets.js', 'iD.data.presets = ' + JSON.stringify({
+4 -2
View File
@@ -19,7 +19,8 @@ iD.data = {
path + 'dist/locales/en.json',
path + 'data/name-suggestions.json',
path + 'data/address-formats.json',
path + 'data/phone-formats.json'
path + 'data/phone-formats.json',
path + 'data/drive-left.json'
], d3.json, function (err, data) {
iD.data = {
@@ -39,7 +40,8 @@ iD.data = {
en: data[11],
suggestions: data[12],
addressFormats: data[13],
phoneFormats: data[14]
phoneFormats: data[14],
driveLeft: data[15]
};
callback();
+2892
View File
File diff suppressed because it is too large Load Diff