forked from ChelseaKR/permit-bearings
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_transit.py
More file actions
122 lines (105 loc) · 5.15 KB
/
Copy pathtest_transit.py
File metadata and controls
122 lines (105 loc) · 5.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import io
import zipfile
from pathlib import Path
import pytest
from permit_pathways.transit import determine, haversine_miles, load_feed
# Synthetic feed: stop S1 served by route A every 10 min in both peaks
# (HQTC-quality) and route B every 30 min; stop S2 nearby (same corner)
# served by route C every 15 min — so the S1/S2 cluster has two routes
# with <=20-min peaks and is a major-stop candidate. Stop FAR is remote
# with sparse service.
FILES = {
"stops.txt": (
"stop_id,stop_name,stop_lat,stop_lon\n"
"S1,Main & First,38.5450,-121.7400\n"
"S2,Main & First (far side),38.5455,-121.7402\n"
"FAR,Edge Rd,38.6200,-121.7400\n"
),
"routes.txt": (
"route_id,route_short_name,route_type\n"
"A,A,3\nB,B,3\nC,C,3\n"
),
"calendar.txt": (
"service_id,monday,tuesday,wednesday,thursday,friday,saturday,sunday,"
"start_date,end_date\n"
"WK,1,1,1,1,1,0,0,20260101,20261231\n"
),
"trips.txt": "route_id,service_id,trip_id,direction_id\n" + "".join(
[f"A,WK,A{i},0\n" for i in range(40)]
+ [f"B,WK,B{i},0\n" for i in range(10)]
+ [f"C,WK,C{i},0\n" for i in range(20)]
+ ["B,WK,BFAR,0\n"]
),
"stop_times.txt": "trip_id,arrival_time,departure_time,stop_id,stop_sequence\n"
+ "".join(
# Route A at S1: every 10 min, 06:00-09:00 and 16:00-19:00
[f"A{i},{6 + (i * 10) // 60:02d}:{(i * 10) % 60:02d}:00,"
f"{6 + (i * 10) // 60:02d}:{(i * 10) % 60:02d}:00,S1,1\n" for i in range(19)]
+ [f"A{19 + i},{16 + (i * 10) // 60:02d}:{(i * 10) % 60:02d}:00,"
f"{16 + (i * 10) // 60:02d}:{(i * 10) % 60:02d}:00,S1,1\n" for i in range(19)]
# Route B at S1: every 30 min in both peaks
+ [f"B{i},{6 + (i * 30) // 60:02d}:{(i * 30) % 60:02d}:00,"
f"{6 + (i * 30) // 60:02d}:{(i * 30) % 60:02d}:00,S1,1\n" for i in range(5)]
+ [f"B{5 + i},{16 + (i * 30) // 60:02d}:{(i * 30) % 60:02d}:00,"
f"{16 + (i * 30) // 60:02d}:{(i * 30) % 60:02d}:00,S1,1\n" for i in range(4)]
# Route C at S2: every 15 min in both peaks
+ [f"C{i},{6 + (i * 15) // 60:02d}:{(i * 15) % 60:02d}:00,"
f"{6 + (i * 15) // 60:02d}:{(i * 15) % 60:02d}:00,S2,1\n" for i in range(10)]
+ [f"C{10 + i},{16 + (i * 15) // 60:02d}:{(i * 15) % 60:02d}:00,"
f"{16 + (i * 15) // 60:02d}:{(i * 15) % 60:02d}:00,S2,1\n" for i in range(10)]
# FAR: one bus all day
+ ["BFAR,07:00:00,07:00:00,FAR,1\n"]
),
}
@pytest.fixture()
def stops(tmp_path):
path = tmp_path / "feed.zip"
with zipfile.ZipFile(path, "w") as z:
for name, content in FILES.items():
z.writestr(name, content)
return load_feed(path)
def test_headway_classification(stops):
by_id = {s.stop_id: s for s in stops}
assert by_id["S1"].route_max_gaps["A"] <= 15 # HQTC-quality
assert by_id["S1"].route_max_gaps["B"] == 30 # not qualifying
assert by_id["S2"].route_max_gaps["C"] <= 20 # major-stop-quality
assert "B" not in by_id["FAR"].route_max_gaps # <2 peak trips → no interval
def test_point_near_cluster_gets_both_candidates(stops):
d = determine(38.5452, -121.7401, stops)
assert d.parking_exemption == "candidate"
assert d.height_18ft == "candidate"
reasons = [reason for _, _, reason in d.qualifying_stops]
assert any("major transit stop" in r or "high-quality" in r for r in reasons)
def test_remote_point_has_no_candidate_in_supplied_data(stops):
# ~20+ miles from every supplied stop: no candidate is found in this feed.
# This does not establish that the feed covers every relevant operator.
d = determine(38.9000, -121.4000, stops)
assert d.parking_exemption == "no"
assert d.height_18ft == "no"
assert "NO" in d.summary()
def test_haversine_sanity():
# Davis to Sacramento is roughly 11 miles.
assert 9 < haversine_miles(38.5449, -121.7405, 38.5816, -121.4944) < 14
def test_hq_dataset_supplies_missing_rail_major_stop(stops):
from permit_pathways.transit import HQStop, determine
# A rail station absent from the local bus feed (the Davis Amtrak
# problem): the Caltrans HQ dataset supplies it, flipping both
# determinations near the depot.
hq = [HQStop(lat=38.5436, lon=-121.7377, hqta_type="major_stop_rail",
details="major_stop_rail_single_operator", agency="Amtrak")]
d = determine(38.5449, -121.7405, [s for s in stops if s.stop_id == "FAR"],
hq_stops=hq)
assert d.parking_exemption == "candidate"
assert d.height_18ft == "candidate"
assert "Caltrans HQ Transit Stops dataset" in d.qualifying_stops[0][2]
def test_corpus_hq_dataset_loads_and_contains_davis_amtrak():
from pathlib import Path
from permit_pathways.transit import haversine_miles, load_hq_stops
path = (Path(__file__).parent.parent / "corpus" / "transit"
/ "ca-hq-transit-stops.json")
hq = load_hq_stops(path)
assert len(hq) > 10000
depot = [s for s in hq
if s.hqta_type == "major_stop_rail"
and haversine_miles(s.lat, s.lon, 38.5436, -121.7377) < 0.2]
assert depot, "Davis Amtrak depot present as a major rail stop"