Skip to content

Commit

Permalink
distance not required anymore in properties
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitdemaegdt committed Oct 28, 2023
1 parent 1a8d97b commit 09c3949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/check_data_health.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function checkGeoJsonDataHealth() {
allLineStrings.push(feature);
// 2 - check if all properties are present
const properties = feature.properties || {};
const requiredKeys = ['line', 'color', 'name', 'distance', 'status'];
const requiredKeys = ['line', 'color', 'name', 'status'];
for (const key of requiredKeys) {
if (!properties.hasOwnProperty(key)) {
console.error(`Missing key '${key}' in LineString properties of file: ${filePath}`);
Expand Down

0 comments on commit 09c3949

Please sign in to comment.