gtfs 4.3.2 → 4.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.husky/pre-commit +1 -1
- package/CHANGELOG.md +16 -0
- package/lib/import.js +6 -0
- package/lib/utils.js +12 -0
- package/package.json +10 -5
- package/test/mocha/advanced-query.js +8 -8
package/.husky/pre-commit
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [4.4.1] - 2023-07-07
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Use lint-staged instead of pretty-quick
|
|
13
|
+
|
|
14
|
+
### Updated
|
|
15
|
+
|
|
16
|
+
- Dependency updates
|
|
17
|
+
|
|
18
|
+
## [4.4.0] - 2023-06-16
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- Pad leading zeros of timestamp columns
|
|
23
|
+
|
|
8
24
|
## [4.3.2] - 2023-06-14
|
|
9
25
|
|
|
10
26
|
### Updated
|
package/lib/import.js
CHANGED
|
@@ -25,6 +25,7 @@ import {
|
|
|
25
25
|
setDefaultConfig,
|
|
26
26
|
validateConfigForImport,
|
|
27
27
|
convertLongTimeToDate,
|
|
28
|
+
padLeadingZeros,
|
|
28
29
|
} from './utils.js';
|
|
29
30
|
|
|
30
31
|
const downloadFiles = async (task) => {
|
|
@@ -434,6 +435,11 @@ const formatLine = (line, model, totalLineCount) => {
|
|
|
434
435
|
if (formattedLine[timestampColumnName]) {
|
|
435
436
|
formattedLine[`${timestampColumnName}stamp`] =
|
|
436
437
|
calculateSecondsFromMidnight(formattedLine[timestampColumnName]);
|
|
438
|
+
|
|
439
|
+
// Ensure leading zeros for time columns
|
|
440
|
+
formattedLine[timestampColumnName] = padLeadingZeros(
|
|
441
|
+
formattedLine[timestampColumnName]
|
|
442
|
+
);
|
|
437
443
|
}
|
|
438
444
|
}
|
|
439
445
|
|
package/lib/utils.js
CHANGED
|
@@ -52,6 +52,18 @@ export function calculateSecondsFromMidnight(time) {
|
|
|
52
52
|
return split[0] * 3600 + split[1] * 60 + split[2];
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
+
/*
|
|
56
|
+
* Adds leading zeros to HH:mm:ss timestamps
|
|
57
|
+
*/
|
|
58
|
+
export function padLeadingZeros(time) {
|
|
59
|
+
const split = time.split(':').map((d) => String(Number(d)).padStart(2, '0'));
|
|
60
|
+
if (split.length !== 3) {
|
|
61
|
+
return null;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
return split.join(':');
|
|
65
|
+
}
|
|
66
|
+
|
|
55
67
|
export function formatSelectClause(fields) {
|
|
56
68
|
if (Array.isArray(fields)) {
|
|
57
69
|
const selectItem =
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gtfs",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.1",
|
|
4
4
|
"description": "Import GTFS transit data into SQLite and query routes, stops, times, fares and more",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"transit",
|
|
@@ -56,7 +56,8 @@
|
|
|
56
56
|
"Mike Brocks",
|
|
57
57
|
"Matt Moran",
|
|
58
58
|
"Daniel Sörlöv",
|
|
59
|
-
"Ali Zarghami <alizarghami@gmail.com>"
|
|
59
|
+
"Ali Zarghami <alizarghami@gmail.com>",
|
|
60
|
+
"David Abell"
|
|
60
61
|
],
|
|
61
62
|
"type": "module",
|
|
62
63
|
"main": "index.js",
|
|
@@ -97,13 +98,13 @@
|
|
|
97
98
|
"devDependencies": {
|
|
98
99
|
"@types/better-sqlite3": "^7.6.4",
|
|
99
100
|
"dtslint": "^4.2.1",
|
|
100
|
-
"eslint": "^8.
|
|
101
|
+
"eslint": "^8.44.0",
|
|
101
102
|
"eslint-config-prettier": "^8.8.0",
|
|
102
103
|
"eslint-config-xo": "^0.43.1",
|
|
103
104
|
"husky": "^8.0.3",
|
|
105
|
+
"lint-staged": "^13.2.3",
|
|
104
106
|
"mocha": "^10.2.0",
|
|
105
|
-
"prettier": "^
|
|
106
|
-
"pretty-quick": "^3.1.3",
|
|
107
|
+
"prettier": "^3.0.0",
|
|
107
108
|
"should": "^13.2.3"
|
|
108
109
|
},
|
|
109
110
|
"engines": {
|
|
@@ -121,5 +122,9 @@
|
|
|
121
122
|
},
|
|
122
123
|
"prettier": {
|
|
123
124
|
"singleQuote": true
|
|
125
|
+
},
|
|
126
|
+
"lint-staged": {
|
|
127
|
+
"*.js": "prettier --write",
|
|
128
|
+
"*.json": "prettier --write"
|
|
124
129
|
}
|
|
125
130
|
}
|
|
@@ -57,14 +57,14 @@ describe('advancedQuery():', () => {
|
|
|
57
57
|
const results = advancedQuery('stop_times', advancedQueryOptions);
|
|
58
58
|
|
|
59
59
|
const expectedResults = [
|
|
60
|
-
{ trip_id: '329', arrival_time: '
|
|
61
|
-
{ trip_id: '329', arrival_time: '
|
|
62
|
-
{ trip_id: '329', arrival_time: '
|
|
63
|
-
{ trip_id: '329', arrival_time: '
|
|
64
|
-
{ trip_id: '329', arrival_time: '
|
|
65
|
-
{ trip_id: '329', arrival_time: '
|
|
66
|
-
{ trip_id: '329', arrival_time: '
|
|
67
|
-
{ trip_id: '329', arrival_time: '
|
|
60
|
+
{ trip_id: '329', arrival_time: '07:56:00' },
|
|
61
|
+
{ trip_id: '329', arrival_time: '08:03:00' },
|
|
62
|
+
{ trip_id: '329', arrival_time: '08:16:00' },
|
|
63
|
+
{ trip_id: '329', arrival_time: '08:27:00' },
|
|
64
|
+
{ trip_id: '329', arrival_time: '08:35:00' },
|
|
65
|
+
{ trip_id: '329', arrival_time: '08:44:00' },
|
|
66
|
+
{ trip_id: '329', arrival_time: '08:52:00' },
|
|
67
|
+
{ trip_id: '329', arrival_time: '09:09:00' },
|
|
68
68
|
];
|
|
69
69
|
|
|
70
70
|
should.exist(results);
|