connexionz 0.0.2 → 1.0.0
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.
- data/.travis.yml +3 -2
- data/LICENSE.md +1 -1
- data/README.md +4 -4
- data/connexionz.gemspec +5 -7
- data/lib/connexionz/client.rb +19 -19
- data/lib/connexionz/version.rb +1 -1
- data/spec/connexionz/client_spec.rb +30 -18
- data/spec/connexionz_spec.rb +1 -2
- data/spec/fixtures/platform_group.xml +221 -0
- data/spec/fixtures/route_pattern.xml +86356 -0
- data/spec/fixtures/route_position_et.xml +21 -0
- data/spec/fixtures/schedule_detail.xml +376 -0
- data/spec/fixtures/schedule_master.xml +354 -0
- data/spec/helper.rb +9 -0
- metadata +117 -136
data/.travis.yml
CHANGED
data/LICENSE.md
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Connexionz API
|
2
2
|
|
3
|
-
Ruby wrapper for the Connexionz API
|
3
|
+
Ruby wrapper for the Connexionz API
|
4
4
|
|
5
5
|
Installation
|
6
6
|
------------
|
@@ -12,7 +12,7 @@ Documentation
|
|
12
12
|
|
13
13
|
Continuous Integration
|
14
14
|
----------------------
|
15
|
-
[](http://travis-ci.org/ryanatwork/Connexionz)
|
16
16
|
|
17
17
|
Usage Examples
|
18
18
|
--------------
|
@@ -65,7 +65,7 @@ Submitting a Pull Request
|
|
65
65
|
|
66
66
|
Credits
|
67
67
|
-------
|
68
|
-
[Connexionz](http://www.connexionz.co.nz/)
|
68
|
+
[Connexionz](http://www.connexionz.co.nz/)
|
69
69
|
|
70
70
|
Inspiration
|
71
71
|
-----------
|
@@ -74,4 +74,4 @@ Connexionz was heavily inspired by the [https://github.com/codeforamerica/gem_te
|
|
74
74
|
Copyright
|
75
75
|
---------
|
76
76
|
Copyright (c) 2011 Ryan Resella
|
77
|
-
See [LICENSE](https://github.com/ryanatwork/connexionz/blob/master/LICENSE) for details.
|
77
|
+
See [LICENSE](https://github.com/ryanatwork/connexionz/blob/master/LICENSE.md) for details.
|
data/connexionz.gemspec
CHANGED
@@ -15,20 +15,18 @@ Gem::Specification.new do |gem|
|
|
15
15
|
gem.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
|
16
16
|
gem.require_paths = ['lib']
|
17
17
|
|
18
|
-
gem.add_development_dependency 'ZenTest', '~> 4.5'
|
19
18
|
gem.add_development_dependency 'maruku', '~> 0.6'
|
20
19
|
gem.add_development_dependency 'rake', '~> 0.9'
|
21
20
|
gem.add_development_dependency 'rspec', '~> 2.6'
|
22
21
|
gem.add_development_dependency 'simplecov', '~> 0.4'
|
23
|
-
gem.add_development_dependency 'yard', '~> 0.7'
|
24
|
-
gem.add_development_dependency 'webmock', '~> 1.
|
25
|
-
gem.add_development_dependency 'yard', '~> 0.7'
|
22
|
+
gem.add_development_dependency 'yard', '~> 0.7.2'
|
23
|
+
gem.add_development_dependency 'webmock', '~> 1.7.5'
|
26
24
|
|
27
|
-
gem.add_runtime_dependency 'faraday', '~> 0.
|
28
|
-
gem.add_runtime_dependency 'faraday_middleware', '~> 0.
|
25
|
+
gem.add_runtime_dependency 'faraday', '~> 0.7.4'
|
26
|
+
gem.add_runtime_dependency 'faraday_middleware', '~> 0.7.0'
|
29
27
|
gem.add_runtime_dependency 'hashie', '~> 1.0.0'
|
30
28
|
gem.add_runtime_dependency 'multi_json', '~> 1.0.2'
|
31
29
|
gem.add_runtime_dependency 'multi_xml', '~> 0.2.2'
|
32
|
-
gem.add_runtime_dependency 'patron', '~> 0.4.
|
30
|
+
gem.add_runtime_dependency 'patron', '~> 0.4.14'
|
33
31
|
gem.add_runtime_dependency 'rash', '~> 0.3.0'
|
34
32
|
end
|
data/lib/connexionz/client.rb
CHANGED
@@ -4,75 +4,75 @@ require 'connexionz/client/request'
|
|
4
4
|
module Connexionz
|
5
5
|
class Client
|
6
6
|
attr_accessor *Configuration::VALID_OPTIONS_KEYS
|
7
|
-
|
7
|
+
|
8
8
|
def initialize(options={})
|
9
9
|
options = Connexionz.options.merge(options)
|
10
10
|
Configuration::VALID_OPTIONS_KEYS.each do |key|
|
11
11
|
send("#{key}=", options[key])
|
12
12
|
end
|
13
13
|
end
|
14
|
-
|
14
|
+
|
15
15
|
include Connexionz::Client::Connection
|
16
16
|
include Connexionz::Client::Request
|
17
|
-
|
17
|
+
|
18
18
|
# Returns all platform locations (WGS84), Id’s & names.
|
19
19
|
#
|
20
|
-
# @param options [Hash] A customizable set of options.
|
20
|
+
# @param options [Hash] A customizable set of options.
|
21
21
|
# @return {Hash}
|
22
22
|
# @example
|
23
23
|
# Connexionz.platform
|
24
24
|
def platform(options={})
|
25
25
|
get("rtt/public/utility/file.aspx?contenttype=SQLXML&Name=Platform.xml", options)
|
26
26
|
end
|
27
|
-
|
27
|
+
|
28
28
|
# Returns details platform groups where a number of platforms are grouped together under a common name. Use PlatformTag to link to the platform locations in the above.
|
29
29
|
#
|
30
|
-
# @param options [Hash] A customizable set of options.
|
30
|
+
# @param options [Hash] A customizable set of options.
|
31
31
|
# @return {Hash}
|
32
32
|
# @example
|
33
|
-
# Connexionz.platform_group
|
33
|
+
# Connexionz.platform_group
|
34
34
|
def platform_group(options={})
|
35
35
|
get("rtt/public/utility/file.aspx?contenttype=SQLXML&Name=PlatformGroup.xml", options)
|
36
36
|
end
|
37
|
-
|
37
|
+
|
38
38
|
# Route patterns, details all the route patterns (described in the MapInfo MIB/MIF CDATA entities) in the system & the associated platforms. Use PlatformTag to link to the platform locations.
|
39
39
|
#
|
40
|
-
# @param options [Hash] A customizable set of options.
|
40
|
+
# @param options [Hash] A customizable set of options.
|
41
41
|
# @return {Hash}
|
42
42
|
# @example
|
43
|
-
# Connexionz.route_pattern
|
43
|
+
# Connexionz.route_pattern
|
44
44
|
#def route_pattern(options={})
|
45
45
|
# get("rtt/public/utility/file.aspx?contenttype=SQLXML&Name=RoutePattern.rxml", options)
|
46
46
|
#end
|
47
|
-
|
47
|
+
|
48
48
|
# Provide ETA predictions for an individual platform or platform group.Use PlatformTag (internal key to a platform) or PlatformNo (number physically attached to a bus stop which may change from time to time) arguments.
|
49
49
|
#
|
50
|
-
# @param options [Hash] A customizable set of options.
|
50
|
+
# @param options [Hash] A customizable set of options.
|
51
51
|
# @param options PlatformNo [String] The number posted on the bus stop
|
52
52
|
# @param options PlatformTag [String] The ID of the bus stop
|
53
53
|
# @return {Hash}
|
54
54
|
# @example
|
55
55
|
# Connexionz.route_position_et
|
56
56
|
# Connexionz.route_position_et({:PlatformNo =>"19812"})
|
57
|
-
# Connexionz.route_position_et({:PlatformTag =>"428"})
|
57
|
+
# Connexionz.route_position_et({:PlatformTag =>"428"})
|
58
58
|
def route_position_et(options={})
|
59
59
|
get("rtt/public/utility/file.aspx?contenttype=SQLXML&Name=RoutePositionET.xml", options)
|
60
60
|
end
|
61
61
|
|
62
62
|
# Returns the master list of schedules
|
63
63
|
#
|
64
|
-
# @param options [Hash] A customizable set of options.
|
64
|
+
# @param options [Hash] A customizable set of options.
|
65
65
|
# @return {Hash}
|
66
66
|
# @example
|
67
|
-
# Connexionz.schedule_master
|
67
|
+
# Connexionz.schedule_master
|
68
68
|
def schedule_master(options={})
|
69
69
|
get("rtt/public/utility/file.aspx?contenttype=SQLXML&Name=ScheduleMaster.xml", options)
|
70
70
|
end
|
71
|
-
|
72
|
-
# Returns the schedule detail for the route.
|
71
|
+
|
72
|
+
# Returns the schedule detail for the route.
|
73
73
|
#
|
74
74
|
# @param servicename [String] Weekday, Saturday, Sunday
|
75
|
-
# @param options [Hash] A customizable set of options.
|
75
|
+
# @param options [Hash] A customizable set of options.
|
76
76
|
# @param options id [String] The ID of the route number
|
77
77
|
# @return {Hash}
|
78
78
|
# @example
|
@@ -81,6 +81,6 @@ module Connexionz
|
|
81
81
|
def schedule_detail(servicename, options={})
|
82
82
|
get("rtt/public/utility/file.aspx?contenttype=SQLXML&Name=ScheduleDetail.xml&ServiceName=#{servicename}", options)
|
83
83
|
end
|
84
|
-
|
84
|
+
|
85
85
|
end
|
86
86
|
end
|
data/lib/connexionz/version.rb
CHANGED
@@ -6,51 +6,63 @@ describe Connexionz::Client do
|
|
6
6
|
Connexionz::Client.new.should be_a Connexionz::Client
|
7
7
|
end
|
8
8
|
end
|
9
|
-
|
9
|
+
|
10
10
|
before do
|
11
|
-
@client = Connexionz::Client.new({:endpoint => "http://
|
11
|
+
@client = Connexionz::Client.new({:endpoint => "http://12.233.207.166"})
|
12
12
|
end
|
13
|
-
|
13
|
+
|
14
14
|
describe "#platform" do
|
15
15
|
it "should return a list of all the platforms" do
|
16
|
+
stub_request(:get, "http://12.233.207.166/rtt/public/utility/file.aspx?Name=Platform.xml&contenttype=SQLXML").
|
17
|
+
to_return(:status => 200, :body => fixture("platform.xml"))
|
16
18
|
test = @client.platform
|
17
19
|
test.platforms.platform[1].platform_no.should == "12412"
|
18
20
|
end
|
19
21
|
end
|
20
|
-
|
22
|
+
|
21
23
|
describe "#platform_group" do
|
22
24
|
it "should return a list of all the platforms" do
|
25
|
+
stub_request(:get, "http://12.233.207.166/rtt/public/utility/file.aspx?Name=PlatformGroup.xml&contenttype=SQLXML").
|
26
|
+
to_return(:status => 200, :body => fixture("platform_group.xml"))
|
23
27
|
test = @client.platform_group
|
24
28
|
test.platform_groups.platform_group[1].name.should == "Ave Stanford & Rye Cyn"
|
25
29
|
end
|
26
30
|
end
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
31
|
+
|
32
|
+
describe "#route_pattern" do
|
33
|
+
pending it "should return all the route patterns" do
|
34
|
+
stub_request(:get, "http://12.233.207.166/rtt/public/utility/file.aspx?Name=RoutePattern.rxml&contenttype=SQLXML").
|
35
|
+
to_return(:status => 200, :body => fixture("route_pattern.xml"))
|
36
|
+
test = @client.route_pattern
|
37
|
+
test.routepattern.project.route.destination_name = "Ave Stanford & Rye Cyn"
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
35
41
|
describe "#route_position_et" do
|
36
42
|
it "should return the ET for the current bus stop" do
|
37
|
-
|
38
|
-
|
43
|
+
stub_request(:get, "http://12.233.207.166/rtt/public/utility/file.aspx?Name=RoutePositionET.xml&contenttype=SQLXML&platformno=10246").
|
44
|
+
to_return(:status => 200, :body => fixture("route_position_et.xml"))
|
45
|
+
test = @client.route_position_et({:platformno => "10246"})
|
46
|
+
test.route_position_et.platform.name.should == "McBean Pky & Town Center Dr"
|
39
47
|
end
|
40
48
|
end
|
41
|
-
|
49
|
+
|
42
50
|
describe "#schedule_master" do
|
43
51
|
it "should return the master schedule list" do
|
52
|
+
stub_request(:get, "http://12.233.207.166/rtt/public/utility/file.aspx?Name=ScheduleMaster.xml&contenttype=SQLXML").
|
53
|
+
to_return(:status => 200, :body => fixture("schedule_master.xml"))
|
44
54
|
test = @client.schedule_master
|
45
55
|
test.schedule_master.project.schedule.route[0].name.should == "Whites Cyn/Castaic"
|
46
56
|
end
|
47
57
|
end
|
48
|
-
|
58
|
+
|
49
59
|
describe "#schedule_detail" do
|
50
60
|
it "should return the schedule detail for the correct route id" do
|
61
|
+
stub_request(:get, "http://12.233.207.166/rtt/public/utility/file.aspx?Name=ScheduleDetail.xml&ServiceName=Weekday&contenttype=SQLXML&id=1").
|
62
|
+
to_return(:status => 200, :body => fixture("schedule_detail.xml"))
|
51
63
|
test = @client.schedule_detail("Weekday",{:id => "1"})
|
52
64
|
test.schedule_detail.route.destination_group.name.should == "Castaic to Whites Cyn"
|
53
65
|
end
|
54
66
|
end
|
55
|
-
|
56
|
-
end
|
67
|
+
|
68
|
+
end
|
data/spec/connexionz_spec.rb
CHANGED
@@ -4,7 +4,7 @@ describe Connexionz do
|
|
4
4
|
after do
|
5
5
|
Connexionz.reset
|
6
6
|
end
|
7
|
-
|
7
|
+
|
8
8
|
describe ".respond_to?" do
|
9
9
|
it "should be true if method exists" do
|
10
10
|
Connexionz.respond_to?(:client, true).should be_true
|
@@ -16,5 +16,4 @@ describe Connexionz do
|
|
16
16
|
Connexionz.client.should be_a Connexionz::Client
|
17
17
|
end
|
18
18
|
end
|
19
|
-
|
20
19
|
end
|
@@ -0,0 +1,221 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<PlatformGroups xmlns="urn:connexionz-co-nz">
|
3
|
+
<Content Expires="2011-08-28T03:32:00-07:00" />
|
4
|
+
<PlatformGroup Name="Arroyo Seco Jr High">
|
5
|
+
<Platform PlatformTag="540" PlatformNo="16729" Name="Vista Delgado Dr & Decoro Dr" />
|
6
|
+
</PlatformGroup>
|
7
|
+
<PlatformGroup Name="Ave Stanford & Rye Cyn">
|
8
|
+
<Platform PlatformTag="218" PlatformNo="10995" Name="Ave Stanford & Rye Canyon Rd" />
|
9
|
+
<Platform PlatformTag="226" PlatformNo="10969" Name="Ave Scott & Ave Stanford" />
|
10
|
+
</PlatformGroup>
|
11
|
+
<PlatformGroup Name="Ave Stanford and Technology Dr">
|
12
|
+
<Platform PlatformTag="211" PlatformNo="10543" Name="Ave Stanford & Technology Dr" />
|
13
|
+
</PlatformGroup>
|
14
|
+
<PlatformGroup Name="Ave Tibbitts & Dickason">
|
15
|
+
<Platform PlatformTag="451" Name="Ave Tibbitts & Nth Dickason Dr" />
|
16
|
+
</PlatformGroup>
|
17
|
+
<PlatformGroup Name="Bouquet & Centurion">
|
18
|
+
<Platform PlatformTag="567" PlatformNo="14552" Name="Bouquet Canyon Rd & Centurion Wy" />
|
19
|
+
</PlatformGroup>
|
20
|
+
<PlatformGroup Name="Calgrove">
|
21
|
+
<Platform PlatformTag="240" PlatformNo="10752" Name="Calgrove Blvd & Creekside Dr" />
|
22
|
+
</PlatformGroup>
|
23
|
+
<PlatformGroup Name="Canyon High">
|
24
|
+
<Platform PlatformTag="709" PlatformNo="18033" Name="Whites Canyon Rd & Nadal St" />
|
25
|
+
</PlatformGroup>
|
26
|
+
<PlatformGroup Name="Canyon Park">
|
27
|
+
<Platform PlatformTag="650" PlatformNo="18411" Name="Jason Dr & Oakmont Dr" />
|
28
|
+
<Platform PlatformTag="710" PlatformNo="15049" Name="Sierra Hwy & Canyon Prk Blvd" />
|
29
|
+
</PlatformGroup>
|
30
|
+
<PlatformGroup Name="Castaic">
|
31
|
+
<Platform PlatformTag="166" PlatformNo="18532" Name="Parker Rd & Tobiah Pl" />
|
32
|
+
</PlatformGroup>
|
33
|
+
<PlatformGroup Name="Century City">
|
34
|
+
<Platform PlatformTag="56" PlatformNo="13415" Name="Constellation Blvd" />
|
35
|
+
</PlatformGroup>
|
36
|
+
<PlatformGroup Name="City Hall">
|
37
|
+
<Platform PlatformTag="425" PlatformNo="10279" Name="Valencia Blvd & Citrus Dr" />
|
38
|
+
<Platform PlatformTag="426" PlatformNo="19060" Name="Valencia Blvd & Citrus Dr" />
|
39
|
+
</PlatformGroup>
|
40
|
+
<PlatformGroup Name="College of Canyons">
|
41
|
+
<Platform PlatformTag="400" PlatformNo="10163" Name="Valencia Blvd & Goldcrest Dr" />
|
42
|
+
<Platform PlatformTag="769" PlatformNo="14271" Name="COC" />
|
43
|
+
<Platform PlatformTag="847" Name="Rockwell Canyon Rd" />
|
44
|
+
<Platform PlatformTag="854" Name="COCCC" />
|
45
|
+
</PlatformGroup>
|
46
|
+
<PlatformGroup Name="Commerce Center">
|
47
|
+
<Platform PlatformTag="198" PlatformNo="10558" Name="Commerce Center Dr & Harrison Pky" />
|
48
|
+
<Platform PlatformTag="199" PlatformNo="18940" Name="Commerce Center Dr & Witherspoon Pky" />
|
49
|
+
</PlatformGroup>
|
50
|
+
<PlatformGroup Name="Copper Hill">
|
51
|
+
<Platform PlatformTag="512" PlatformNo="18131" Name="Copper Hill Dr & Nth Prk Dr" />
|
52
|
+
<Platform PlatformTag="513" PlatformNo="11571" Name="Nth Prk Dr & Copper Hill Dr" />
|
53
|
+
<Platform PlatformTag="585" PlatformNo="10493" Name="Tamarack Ln & Lemon St" />
|
54
|
+
<Platform PlatformTag="587" PlatformNo="16740" Name="Copper Hill Dr & Hidden Hills Dr" />
|
55
|
+
</PlatformGroup>
|
56
|
+
<PlatformGroup Name="Copper/Hidden Hills">
|
57
|
+
<Platform PlatformTag="512" PlatformNo="18131" Name="Copper Hill Dr & Nth Prk Dr" />
|
58
|
+
<Platform PlatformTag="587" PlatformNo="16740" Name="Copper Hill Dr & Hidden Hills Dr" />
|
59
|
+
</PlatformGroup>
|
60
|
+
<PlatformGroup Name="Decoro Dr & Copper Hill">
|
61
|
+
<Platform PlatformTag="234" PlatformNo="15414" Name="Copper Hill Dr & Decoro Dr" />
|
62
|
+
</PlatformGroup>
|
63
|
+
<PlatformGroup Name="Gateway Plaza">
|
64
|
+
<Platform PlatformTag="803" PlatformNo="19601" Name="Gateway Plz" />
|
65
|
+
</PlatformGroup>
|
66
|
+
<PlatformGroup Name="Golden Valley">
|
67
|
+
<Platform PlatformTag="630" PlatformNo="10747" Name="Golden Valley Rd" />
|
68
|
+
<Platform PlatformTag="631" PlatformNo="15422" Name="Golden Valley Rd & Robert C. Lee Pky" />
|
69
|
+
</PlatformGroup>
|
70
|
+
<PlatformGroup Name="Jason/Oakmont">
|
71
|
+
<Platform PlatformTag="650" PlatformNo="18411" Name="Jason Dr & Oakmont Dr" />
|
72
|
+
</PlatformGroup>
|
73
|
+
<PlatformGroup Name="LARC">
|
74
|
+
<Platform PlatformTag="514" PlatformNo="14146" Name="LARC" />
|
75
|
+
</PlatformGroup>
|
76
|
+
<PlatformGroup Name="La Mesa Jr High">
|
77
|
+
<Platform PlatformTag="663" PlatformNo="10924" Name="May Wy & Citylight Ct" />
|
78
|
+
<Platform PlatformTag="668" PlatformNo="11321" Name="Rainbow Gln Dr & Purple Martin Ct" />
|
79
|
+
</PlatformGroup>
|
80
|
+
<PlatformGroup Name="Lancaster Metrolink">
|
81
|
+
<Platform PlatformTag="15" PlatformNo="12449" Name="Sierra Hwy & West Milling St" />
|
82
|
+
</PlatformGroup>
|
83
|
+
<PlatformGroup Name="Los Angeles">
|
84
|
+
<Platform PlatformTag="803" PlatformNo="19601" Name="Gateway Plz" />
|
85
|
+
<Platform PlatformTag="829" Name="7th St & Spring St" />
|
86
|
+
<Platform PlatformTag="846" PlatformNo="12010" Name="Nth Spring St & West Temple St" />
|
87
|
+
<Platform PlatformTag="855" PlatformNo="11833" Name="West 8th St & Sth Grand Ave" />
|
88
|
+
</PlatformGroup>
|
89
|
+
<PlatformGroup Name="Lyons Ave & Wiley Cyn">
|
90
|
+
<Platform PlatformTag="253" PlatformNo="19923" Name="Lyons Ave & Wiley Canyon Rd" />
|
91
|
+
<Platform PlatformTag="254" PlatformNo="13086" Name="Lyons Ave & Wiley Canyon Rd" />
|
92
|
+
</PlatformGroup>
|
93
|
+
<PlatformGroup Name="Magic Mtn">
|
94
|
+
<Platform PlatformTag="206" PlatformNo="10821" Name="Magic Mountain Pky" />
|
95
|
+
<Platform PlatformTag="207" PlatformNo="19459" Name="Off Feedmill Rd" />
|
96
|
+
<Platform PlatformTag="430" PlatformNo="10246" Name="McBean Pky & Town Center Dr" />
|
97
|
+
</PlatformGroup>
|
98
|
+
<PlatformGroup Name="Newhall">
|
99
|
+
<Platform PlatformTag="240" PlatformNo="10752" Name="Calgrove Blvd & Creekside Dr" />
|
100
|
+
<Platform PlatformTag="269" PlatformNo="19073" Name="Newhall Ave & Sierra Hwy" />
|
101
|
+
</PlatformGroup>
|
102
|
+
<PlatformGroup Name="Newhall Metrolink">
|
103
|
+
<Platform PlatformTag="288" PlatformNo="11898" Name="Railroad Ave & Market St" />
|
104
|
+
<Platform PlatformTag="290" PlatformNo="13853" Name="Railroad Ave & 8th St" />
|
105
|
+
</PlatformGroup>
|
106
|
+
<PlatformGroup Name="North Hollywood">
|
107
|
+
<Platform PlatformTag="833" PlatformNo="19492" Name="North Hollywood Terminus" />
|
108
|
+
<Platform PlatformTag="834" PlatformNo="15255" Name="Lankershim Blvd & Chandler Blvd" />
|
109
|
+
</PlatformGroup>
|
110
|
+
<PlatformGroup Name="Old Rd & Sloan Cyn">
|
111
|
+
<Platform PlatformTag="160" PlatformNo="11015" Name="Royal Rd & Gr Hill Dr" />
|
112
|
+
</PlatformGroup>
|
113
|
+
<PlatformGroup Name="Old Rd Silver Aspen">
|
114
|
+
<Platform PlatformTag="341" PlatformNo="11544" Name="The Old Rd & Silver Aspen Wy" />
|
115
|
+
</PlatformGroup>
|
116
|
+
<PlatformGroup Name="Plum Cyn">
|
117
|
+
<Platform PlatformTag="599" PlatformNo="15229" Name="Bouquet Canyon Rd & Plum Canyon Rd" />
|
118
|
+
<Platform PlatformTag="686" PlatformNo="14935" Name="Heller Cir" />
|
119
|
+
</PlatformGroup>
|
120
|
+
<PlatformGroup Name="Princessa ML">
|
121
|
+
<Platform PlatformTag="653" PlatformNo="19981" Name="Via Princessa & Weyerhaeuser Wy" />
|
122
|
+
</PlatformGroup>
|
123
|
+
<PlatformGroup Name="Rancho Pico Jr High School">
|
124
|
+
<Platform PlatformTag="338" PlatformNo="18407" Name="Valencia Blvd" />
|
125
|
+
<Platform PlatformTag="820" Name="Old Rock Rd & Valencia Blvd" />
|
126
|
+
</PlatformGroup>
|
127
|
+
<PlatformGroup Name="Rio Norte Jr High">
|
128
|
+
<Platform PlatformTag="500" PlatformNo="11585" Name="Vista Del Rio Dr & Parkside Dr" />
|
129
|
+
<Platform PlatformTag="501" PlatformNo="11193" Name="Copper Hill Dr & Tesoro Del Valle Dr" />
|
130
|
+
</PlatformGroup>
|
131
|
+
<PlatformGroup Name="SC Metrolink">
|
132
|
+
<Platform PlatformTag="494" PlatformNo="13323" Name="Santa Clarita Metrolink" />
|
133
|
+
<Platform PlatformTag="496" PlatformNo="13334" Name="Commuter Wy & Soledad Canyon Rd" />
|
134
|
+
</PlatformGroup>
|
135
|
+
<PlatformGroup Name="Santa Clarita">
|
136
|
+
<Platform PlatformTag="211" PlatformNo="10543" Name="Ave Stanford & Technology Dr" />
|
137
|
+
<Platform PlatformTag="226" PlatformNo="10969" Name="Ave Scott & Ave Stanford" />
|
138
|
+
<Platform PlatformTag="269" PlatformNo="19073" Name="Newhall Ave & Sierra Hwy" />
|
139
|
+
<Platform PlatformTag="440" PlatformNo="10527" Name="McBean Pky & Creekside Rd" />
|
140
|
+
<Platform PlatformTag="494" PlatformNo="13323" Name="Santa Clarita Metrolink" />
|
141
|
+
<Platform PlatformTag="496" PlatformNo="13334" Name="Commuter Wy & Soledad Canyon Rd" />
|
142
|
+
<Platform PlatformTag="844" PlatformNo="19444" Name="McBean MRTC" />
|
143
|
+
</PlatformGroup>
|
144
|
+
<PlatformGroup Name="Santa Monica">
|
145
|
+
<Platform PlatformTag="853" PlatformNo="15293" Name="Ocean Ave & CA-1" />
|
146
|
+
</PlatformGroup>
|
147
|
+
<PlatformGroup Name="Saugus High">
|
148
|
+
<Platform PlatformTag="568" PlatformNo="15650" Name="Centurion Wy & Hyssop Ln" />
|
149
|
+
</PlatformGroup>
|
150
|
+
<PlatformGroup Name="Seco Canyon">
|
151
|
+
<Platform PlatformTag="543" PlatformNo="11528" Name="Seco Canyon Rd & Guadilamar Dr" />
|
152
|
+
<Platform PlatformTag="585" PlatformNo="10493" Name="Tamarack Ln & Lemon St" />
|
153
|
+
<Platform PlatformTag="785" PlatformNo="10602" Name="Seco Canyon Rd & Decoro Dr" />
|
154
|
+
</PlatformGroup>
|
155
|
+
<PlatformGroup Name="Shadow Pines">
|
156
|
+
<Platform PlatformTag="315" PlatformNo="16009" Name="Faulkner Dr & Thurber Wy" />
|
157
|
+
<Platform PlatformTag="739" PlatformNo="16148" Name="Shadow Pines Blvd & Grandifloras Rd" />
|
158
|
+
</PlatformGroup>
|
159
|
+
<PlatformGroup Name="Shadow Valley">
|
160
|
+
<Platform PlatformTag="627" PlatformNo="16701" Name="Shadow Valley Ln & Carson Ct" />
|
161
|
+
</PlatformGroup>
|
162
|
+
<PlatformGroup Name="Sierra Hwy">
|
163
|
+
<Platform PlatformTag="648" PlatformNo="19542" Name="Sierra Hwy & Via Princessa" />
|
164
|
+
<Platform PlatformTag="718" PlatformNo="19535" Name="Soledad Canyon Rd & Sierra Hwy" />
|
165
|
+
</PlatformGroup>
|
166
|
+
<PlatformGroup Name="Stevenson Ranch">
|
167
|
+
<Platform PlatformTag="315" PlatformNo="16009" Name="Faulkner Dr & Thurber Wy" />
|
168
|
+
<Platform PlatformTag="328" PlatformNo="15480" Name="Stevenson Ranch Pky & The Old Rd" />
|
169
|
+
<Platform PlatformTag="330" PlatformNo="16406" Name="Stevenson Ranch Pky & The Old Rd" />
|
170
|
+
<Platform PlatformTag="697" PlatformNo="16084" Name="Soledad Canyon Rd & Whites Canyon Rd" />
|
171
|
+
<Platform PlatformTag="718" PlatformNo="19535" Name="Soledad Canyon Rd & Sierra Hwy" />
|
172
|
+
</PlatformGroup>
|
173
|
+
<PlatformGroup Name="Sylmar Metrolink">
|
174
|
+
<Platform PlatformTag="104" PlatformNo="13038" Name="Frank Modugno Dr & Village Wy Dr" />
|
175
|
+
</PlatformGroup>
|
176
|
+
<PlatformGroup Name="Tamarck/Copperhill">
|
177
|
+
<Platform PlatformTag="585" PlatformNo="10493" Name="Tamarack Ln & Lemon St" />
|
178
|
+
</PlatformGroup>
|
179
|
+
<PlatformGroup Name="Tourney Rd">
|
180
|
+
<Platform PlatformTag="388" PlatformNo="16992" Name="Magic Mountain Pky & Avignon Dr" />
|
181
|
+
</PlatformGroup>
|
182
|
+
<PlatformGroup Name="Transit Centre">
|
183
|
+
<Platform PlatformTag="401" PlatformNo="14817" Name="Valencia Blvd & McBean Pky" />
|
184
|
+
<Platform PlatformTag="844" PlatformNo="19444" Name="McBean MRTC" />
|
185
|
+
</PlatformGroup>
|
186
|
+
<PlatformGroup Name="Val Verde">
|
187
|
+
<Platform PlatformTag="172" PlatformNo="19278" Name="San Martinez Rd & Val Verde Rd" />
|
188
|
+
<Platform PlatformTag="176" PlatformNo="11247" Name="Chiquito Canyon Rd" />
|
189
|
+
</PlatformGroup>
|
190
|
+
<PlatformGroup Name="Valencia High">
|
191
|
+
<Platform PlatformTag="451" Name="Ave Tibbitts & Nth Dickason Dr" />
|
192
|
+
<Platform PlatformTag="470" PlatformNo="11155" Name="Nth Dickason Dr & Decoro Dr" />
|
193
|
+
</PlatformGroup>
|
194
|
+
<PlatformGroup Name="Valle Del Oro">
|
195
|
+
<Platform PlatformTag="273" PlatformNo="14413" Name="Newhall Ave & Valle Del Oro" />
|
196
|
+
</PlatformGroup>
|
197
|
+
<PlatformGroup Name="Vasquez Cyn">
|
198
|
+
<Platform PlatformTag="315" PlatformNo="16009" Name="Faulkner Dr & Thurber Wy" />
|
199
|
+
<Platform PlatformTag="738" PlatformNo="17351" Name="Sierra Hwy & Vasquez Canyon Rd" />
|
200
|
+
</PlatformGroup>
|
201
|
+
<PlatformGroup Name="Warner Center">
|
202
|
+
<Platform PlatformTag="134" PlatformNo="11036" Name="Topanga Canyon Blvd & Victory Blvd" />
|
203
|
+
<Platform PlatformTag="797" Name="Victory Blvd & Topanga Canyon Blvd" />
|
204
|
+
<Platform PlatformTag="823" Name="Victory Blvd & Topanga Canyon Blvd" />
|
205
|
+
</PlatformGroup>
|
206
|
+
<PlatformGroup Name="West Ranch High School">
|
207
|
+
<Platform PlatformTag="240" PlatformNo="10752" Name="Calgrove Blvd & Creekside Dr" />
|
208
|
+
<Platform PlatformTag="338" PlatformNo="18407" Name="Valencia Blvd" />
|
209
|
+
</PlatformGroup>
|
210
|
+
<PlatformGroup Name="West Ranch/Rancho Pico">
|
211
|
+
<Platform PlatformTag="820" Name="Old Rock Rd & Valencia Blvd" />
|
212
|
+
</PlatformGroup>
|
213
|
+
<PlatformGroup Name="Whites Cyn">
|
214
|
+
<Platform PlatformTag="686" PlatformNo="14935" Name="Heller Cir" />
|
215
|
+
<Platform PlatformTag="697" PlatformNo="16084" Name="Soledad Canyon Rd & Whites Canyon Rd" />
|
216
|
+
<Platform PlatformTag="709" PlatformNo="18033" Name="Whites Canyon Rd & Nadal St" />
|
217
|
+
</PlatformGroup>
|
218
|
+
<PlatformGroup Name="Wiley Cyn/Calgrove">
|
219
|
+
<Platform PlatformTag="240" PlatformNo="10752" Name="Calgrove Blvd & Creekside Dr" />
|
220
|
+
</PlatformGroup>
|
221
|
+
</PlatformGroups>
|