2017-03-29 09:28:45 -04:00
|
|
|
var path = require('path');
|
|
|
|
|
|
|
|
// Constants and fixtures for nodejs tests on our Monaco dataset.
|
|
|
|
|
|
|
|
// Somewhere in Monaco
|
|
|
|
// http://www.openstreetmap.org/#map=18/43.73185/7.41772
|
|
|
|
exports.three_test_coordinates = [[7.41337, 43.72956],
|
|
|
|
[7.41546, 43.73077],
|
|
|
|
[7.41862, 43.73216]];
|
|
|
|
|
|
|
|
exports.two_test_coordinates = exports.three_test_coordinates.slice(0, 2)
|
|
|
|
|
2024-03-24 17:23:36 -04:00
|
|
|
exports.test_tile = {'at': [17059, 11948, 15], 'size': 159125};
|
2017-03-29 09:28:45 -04:00
|
|
|
|
|
|
|
// Test files generated by the routing engine; check test/data
|
|
|
|
if (process.env.OSRM_DATA_PATH !== undefined) {
|
|
|
|
exports.data_path = path.join(path.resolve(process.env.OSRM_DATA_PATH), "ch/monaco.osrm");
|
|
|
|
exports.mld_data_path = path.join(path.resolve(process.env.OSRM_DATA_PATH), "mld/monaco.osrm");
|
2018-02-13 10:36:19 -05:00
|
|
|
exports.test_memory_path = path.join(path.resolve(process.env.OSRM_DATA_PATH), "test_memory");
|
2017-03-29 09:28:45 -04:00
|
|
|
console.log('Setting custom data path to ' + exports.data_path);
|
|
|
|
} else {
|
|
|
|
exports.data_path = path.resolve(path.join(__dirname, "../data/ch/monaco.osrm"));
|
|
|
|
exports.mld_data_path = path.resolve(path.join(__dirname, "../data/mld/monaco.osrm"));
|
2018-02-13 10:36:19 -05:00
|
|
|
exports.test_memory_path = path.resolve(path.join(__dirname, "../data/test_memory"));
|
2017-03-29 09:28:45 -04:00
|
|
|
}
|