oztogo 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.rspec +2 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +29 -0
  7. data/Rakefile +1 -0
  8. data/lib/oztogo.rb +10 -0
  9. data/lib/oztogo/base.rb +35 -0
  10. data/lib/oztogo/error.rb +3 -0
  11. data/lib/oztogo/journey.rb +15 -0
  12. data/lib/oztogo/search_journey.rb +33 -0
  13. data/lib/oztogo/version.rb +3 -0
  14. data/oztogo.gemspec +28 -0
  15. data/spec/cassettes/oztogo/attributes_knows_the_endpoint.yml +34 -0
  16. data/spec/cassettes/oztogo/attributes_receives_the_api_key_from_environment_variable.yml +34 -0
  17. data/spec/cassettes/oztogo/connection_options_uses_the_api_key_for_basic_auth.yml +34 -0
  18. data/spec/cassettes/oztogo/connection_options_uses_the_oztogo_user_agent.yml +34 -0
  19. data/spec/cassettes/oztogo/journey_has_a_direction_method.yml +1086 -0
  20. data/spec/cassettes/oztogo/journey_returns_the_direction.yml +1086 -0
  21. data/spec/cassettes/oztogo/searchjourney_build_params_string_builds_the_params_string.yml +1478 -0
  22. data/spec/cassettes/oztogo/searchjourney_prepare_query_string_with_params_kept_the_datatime_params.yml +1478 -0
  23. data/spec/cassettes/oztogo/searchjourney_prepare_query_string_with_params_kept_the_min_nb_journeys_params.yml +1476 -0
  24. data/spec/cassettes/oztogo/searchjourney_prepare_query_string_without_params_sets_datetime_to_current_datetime.yml +1478 -0
  25. data/spec/cassettes/oztogo/searchjourney_prepare_query_string_without_params_sets_min_nb_journeys.yml +1478 -0
  26. data/spec/cassettes/oztogo/searchjourney_returns_a_list_of_journeys.yml +2258 -0
  27. data/spec/oztogo/base_spec.rb +40 -0
  28. data/spec/oztogo/journey_spec.rb +16 -0
  29. data/spec/oztogo/search_journey_spec.rb +47 -0
  30. data/spec/spec_helper.rb +25 -0
  31. metadata +173 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c1a36819b7f9bd90226b549d1716684fe69067e0
4
+ data.tar.gz: cf444a16b7f38bb24a715d4077acc6ba21efc8b7
5
+ SHA512:
6
+ metadata.gz: 6ea3b7c3343e217ec04b5d6bfdff07be3a848589e31ae8e404eafe4c03cab5b43bafae92cde717f7cde473ae7bf5d4569aebf6aca4258c45bd9c129949b347ac
7
+ data.tar.gz: 3ce02bbf74eb9db2f2bd7d9365873e42f1736a0f3b5eb0ce40034b23552b72ca48b02a770dc376f83b7eede4cc72e9d6b6aff09f5d523baa670d64022b446aa9
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in oztogo.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Julien Lerpscher
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Oztogo
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'oztogo'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install oztogo
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/lib/oztogo.rb ADDED
@@ -0,0 +1,10 @@
1
+ require 'httparty'
2
+
3
+ require 'oztogo/base'
4
+ require 'oztogo/error'
5
+ require 'oztogo/journey'
6
+ require 'oztogo/search_journey'
7
+ require 'oztogo/version'
8
+
9
+ module Oztogo
10
+ end
@@ -0,0 +1,35 @@
1
+ module Oztogo
2
+ class Base
3
+
4
+ include HTTParty
5
+
6
+ def initialize(method, path)
7
+ ensure_api_key
8
+ request(method, path)
9
+ end
10
+
11
+ def api_endpoint
12
+ 'https://api.navitia.io/v1/'
13
+ end
14
+
15
+ def api_key
16
+ ENV['NAVITIA_API_KEY']
17
+ end
18
+
19
+ private
20
+
21
+ def ensure_api_key; raise Oztogo::OztogoError, 'API key missing' unless api_key; end
22
+
23
+ def request(method, path)
24
+ url = api_endpoint + path
25
+ self.class.send("#{method}", url, connection_options)
26
+ end
27
+
28
+ def connection_options
29
+ {
30
+ basic_auth: { username: api_key },
31
+ user_agent: 'Oztogo'
32
+ }
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,3 @@
1
+ module Oztogo
2
+ class OztogoError < StandardError; end
3
+ end
@@ -0,0 +1,15 @@
1
+ require 'date'
2
+
3
+ module Oztogo
4
+ class Journey < Base
5
+
6
+ def initialize(journey)
7
+ @journey = journey
8
+ end
9
+
10
+ def direction
11
+ @journey['sections'].first['display_informations']['direction']
12
+ end
13
+ end
14
+
15
+ end
@@ -0,0 +1,33 @@
1
+ module Oztogo
2
+ class SearchJourney < Base
3
+
4
+ def initialize(params = {})
5
+ @response = request('get', path(params))
6
+ end
7
+
8
+ def path(params)
9
+ params = prepare_query_string(params)
10
+ region = params.delete(:region)
11
+ raise Oztogo::OztogoError, 'You must provide a region' if region.nil?
12
+ "coverage/#{region}/journeys?#{build_params_string(params)}"
13
+ end
14
+
15
+ def prepare_query_string(params)
16
+ params[:datetime] ||= DateTime.now.strftime('%Y%m%dT%H%M')
17
+ params[:min_nb_journeys] ||= 3
18
+ params
19
+ end
20
+
21
+ def build_params_string(params)
22
+ params.map{ |k, v| "#{k}=#{v}" }.join('&')
23
+ end
24
+
25
+ def journeys
26
+ @journeys = []
27
+ @response['journeys'].each do |j|
28
+ @journeys << Oztogo::Journey.new(j)
29
+ end
30
+ @journeys
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,3 @@
1
+ module Oztogo
2
+ VERSION = '0.0.1'
3
+ end
data/oztogo.gemspec ADDED
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'oztogo/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "oztogo"
8
+ spec.version = Oztogo::VERSION
9
+ spec.authors = ["Julien Lerpscher"]
10
+ spec.email = ["jlerpscher@live.fr"]
11
+ spec.description = %q{This is a work in progress... Contributions are welcome!}
12
+ spec.summary = %q{Simple wrapper for the Navitia API}
13
+ spec.homepage = "http://github.com/jlerpscher/oztogo"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency('httparty')
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.3"
24
+ spec.add_development_dependency "rake"
25
+ spec.add_development_dependency "rspec", "~> 3.0.0"
26
+ spec.add_development_dependency "vcr", "~> 2.9.3"
27
+ spec.add_development_dependency "webmock"
28
+ end
@@ -0,0 +1,34 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://my-api-key:@api.navitia.io/v1/http://nothing
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers: {}
10
+ response:
11
+ status:
12
+ code: 404
13
+ message: NOT FOUND
14
+ headers:
15
+ Date:
16
+ - Wed, 05 Nov 2014 21:44:21 GMT
17
+ Server:
18
+ - Apache
19
+ Vary:
20
+ - Authorization
21
+ Content-Length:
22
+ - '39'
23
+ Access-Control-Allow-Origin:
24
+ - '*'
25
+ Connection:
26
+ - close
27
+ Content-Type:
28
+ - application/json
29
+ body:
30
+ encoding: UTF-8
31
+ string: '{"status": 404, "message": "Not Found"}'
32
+ http_version:
33
+ recorded_at: Wed, 05 Nov 2014 21:44:21 GMT
34
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,34 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://my-api-key:@api.navitia.io/v1/http://nothing
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers: {}
10
+ response:
11
+ status:
12
+ code: 404
13
+ message: NOT FOUND
14
+ headers:
15
+ Date:
16
+ - Wed, 05 Nov 2014 21:44:21 GMT
17
+ Server:
18
+ - Apache
19
+ Vary:
20
+ - Authorization
21
+ Content-Length:
22
+ - '39'
23
+ Access-Control-Allow-Origin:
24
+ - '*'
25
+ Connection:
26
+ - close
27
+ Content-Type:
28
+ - application/json
29
+ body:
30
+ encoding: UTF-8
31
+ string: '{"status": 404, "message": "Not Found"}'
32
+ http_version:
33
+ recorded_at: Wed, 05 Nov 2014 21:44:21 GMT
34
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,34 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://my-api-key:@api.navitia.io/v1/http://nothing
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers: {}
10
+ response:
11
+ status:
12
+ code: 404
13
+ message: NOT FOUND
14
+ headers:
15
+ Date:
16
+ - Wed, 05 Nov 2014 21:44:45 GMT
17
+ Server:
18
+ - Apache
19
+ Vary:
20
+ - Authorization
21
+ Content-Length:
22
+ - '39'
23
+ Access-Control-Allow-Origin:
24
+ - '*'
25
+ Connection:
26
+ - close
27
+ Content-Type:
28
+ - application/json
29
+ body:
30
+ encoding: UTF-8
31
+ string: '{"status": 404, "message": "Not Found"}'
32
+ http_version:
33
+ recorded_at: Wed, 05 Nov 2014 21:44:45 GMT
34
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,34 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://my-api-key:@api.navitia.io/v1/http://nothing
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers: {}
10
+ response:
11
+ status:
12
+ code: 404
13
+ message: NOT FOUND
14
+ headers:
15
+ Date:
16
+ - Wed, 05 Nov 2014 21:44:20 GMT
17
+ Server:
18
+ - Apache
19
+ Vary:
20
+ - Authorization
21
+ Content-Length:
22
+ - '39'
23
+ Access-Control-Allow-Origin:
24
+ - '*'
25
+ Connection:
26
+ - close
27
+ Content-Type:
28
+ - application/json
29
+ body:
30
+ encoding: UTF-8
31
+ string: '{"status": 404, "message": "Not Found"}'
32
+ http_version:
33
+ recorded_at: Wed, 05 Nov 2014 21:44:21 GMT
34
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,1086 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://95dd16c9-8b0a-406a-aba6-3ab663234cf4:@api.navitia.io/v1/coverage/fr-idf/journeys?datetime=20141105T2243&from=stop_point:TRN:SP:DUA8711371&min_nb_journeys=3&to=stop_point:TRN:SP:DUA8711602
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers: {}
10
+ response:
11
+ status:
12
+ code: 200
13
+ message: OK
14
+ headers:
15
+ Date:
16
+ - Wed, 05 Nov 2014 21:43:20 GMT
17
+ Server:
18
+ - Apache
19
+ Vary:
20
+ - Authorization
21
+ Content-Length:
22
+ - '30220'
23
+ Access-Control-Allow-Origin:
24
+ - '*'
25
+ Connection:
26
+ - close
27
+ Content-Type:
28
+ - application/json
29
+ body:
30
+ encoding: UTF-8
31
+ string: '{"tickets": [{"comment": "unknown ticket", "name": "unkown_ticket",
32
+ "links": [{"internal": true, "type": "section", "id": "section_0_0", "rel":
33
+ "sections", "templated": false}], "cost": {"currency": "", "value": "0.0"},
34
+ "found": false, "id": "unknown_ticket_0"}], "journeys": [{"fare": {"found":
35
+ false, "total": {"currency": "", "value": "0.0"}, "links": [{"internal": true,
36
+ "type": "ticket", "id": "unknown_ticket_0", "rel": "tickets", "templated":
37
+ false}]}, "sections": [{"links": [{"type": "vehicle_journey", "id": "vehicle_journey:TRN:DUASN118837F010023876807296"},
38
+ {"type": "line", "id": "line:TRN:DUA800805400"}, {"type": "route", "id": "route:TRN:DUA800805014_R"},
39
+ {"type": "commercial_mode", "id": "commercial_mode:train"}, {"type": "physical_mode",
40
+ "id": "physical_mode:Train"}, {"type": "network", "id": "network:RER"}, {"internal":
41
+ true, "type": "ticket", "id": "unknown_ticket_0", "rel": "tickets", "templated":
42
+ false}], "departure_date_time": "20141105T230000", "duration": 1380, "id":
43
+ "section_0_0", "from": {"embedded_type": "stop_point", "stop_point": {"comment":
44
+ "Avenue Raoul Nordling 77330 Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re",
45
+ "coord": {"lat": "48.770779", "lon": "2.690253"}, "equipments": [], "administrative_regions":
46
+ [{"id": "admin:129423", "level": 8, "name": "Montreuil", "coord": {"lat":
47
+ "48.862335", "lon": "2.441218"}, "zip_code": "93100"}, {"id": "admin:130580",
48
+ "level": 8, "name": "Rosny-sous-Bois", "coord": {"lat": "48.876194", "lon":
49
+ "2.485636"}, "zip_code": "93110"}, {"id": "admin:403076", "level": 8, "name":
50
+ "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802", "lon": "2.675999"},
51
+ "zip_code": "77330"}], "address": {"id": "2.690253;48.770779", "house_number":
52
+ 0, "name": "", "administrative_regions": [{"id": "admin:403076", "level":
53
+ 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802", "lon":
54
+ "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon": "2.690253"}},
55
+ "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment": "", "name":
56
+ "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon": "2.689819"},
57
+ "administrative_regions": [{"coord": {"lat": "48.763802", "lon": "2.675999"},
58
+ "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
59
+ "level": 8}], "id": "stop_area:TRN:SA:DUA8711602"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711602",
60
+ "name": "Ozoir-la-Ferri\u00e8re (Montreuil) (Rosny-sous-Bois) (Ozoir-la-Ferri\u00e8re)"},
61
+ "arrival_date_time": "20141105T232300", "additional_informations": ["regular"],
62
+ "geojson": {"type": "LineString", "properties": [{"length": 18791}], "coordinates":
63
+ [[2.489167, 48.854269], [2.494188, 48.839342], [2.511856, 48.824849], [2.54268,
64
+ 48.823267], [2.579837, 48.823152], [2.619396, 48.80577], [2.650388, 48.795655],
65
+ [2.690253, 48.770779]]}, "display_informations": {"direction": "Tournan (Tournan-en-Brie)",
66
+ "code": "E", "description": "", "color": "BD76A1", "physical_mode": "Train",
67
+ "headsign": "TOHA", "commercial_mode": "Train", "equipments": [], "network":
68
+ "RER", "label": "E"}, "to": {"embedded_type": "stop_point", "stop_point":
69
+ {"comment": "Avenue Raoul Nordling 77330 Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re",
70
+ "coord": {"lat": "48.770779", "lon": "2.690253"}, "equipments": [], "administrative_regions":
71
+ [{"id": "admin:403076", "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord":
72
+ {"lat": "48.763802", "lon": "2.675999"}, "zip_code": "77330"}, {"id": "admin:403076",
73
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
74
+ "lon": "2.675999"}, "zip_code": "77330"}], "address": {"id": "2.690253;48.770779",
75
+ "house_number": 0, "name": "", "administrative_regions": [{"id": "admin:403076",
76
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
77
+ "lon": "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon":
78
+ "2.690253"}}, "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment":
79
+ "", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon":
80
+ "2.689819"}, "administrative_regions": [{"coord": {"lat": "48.763802", "lon":
81
+ "2.675999"}, "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
82
+ "level": 8}], "id": "stop_area:TRN:SA:DUA8711602"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711602",
83
+ "name": "Ozoir-la-Ferri\u00e8re (Ozoir-la-Ferri\u00e8re) (Ozoir-la-Ferri\u00e8re)"},
84
+ "type": "public_transport", "stop_date_times": [{"stop_point": {"comment":
85
+ "10 avenue du Val de Fontenay 94120 Fontenay-sous-Bois", "name": "Val de Fontenay",
86
+ "coord": {"lat": "48.854269", "lon": "2.489167"}, "equipments": [], "id":
87
+ "stop_point:TRN:SP:DUA8711371"}, "arrival_date_time": "20141105T225900", "additional_informations":
88
+ [], "links": [], "departure_date_time": "20141105T230000"}, {"stop_point":
89
+ {"comment": "place du Th\u00e9\u00e2tre 94130 NOGENT-SUR-MARNE", "name": "Nogent
90
+ - Le Perreux", "coord": {"lat": "48.839342", "lon": "2.494188"}, "equipments":
91
+ [], "id": "stop_point:TRN:SP:DUA8711374"}, "arrival_date_time": "20141105T230200",
92
+ "additional_informations": [], "links": [], "departure_date_time": "20141105T230300"},
93
+ {"stop_point": {"comment": "Avenue Danielle Casanova 94500 Champigny sur Marne",
94
+ "name": "Les Boullereaux Champigny", "coord": {"lat": "48.824849", "lon":
95
+ "2.511856"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711377"}, "arrival_date_time":
96
+ "20141105T230600", "additional_informations": [], "links": [], "departure_date_time":
97
+ "20141105T230600"}, {"stop_point": {"comment": "place Pierre S\u00e9mard 94350
98
+ VILLIERS-SUR-MARNE", "name": "Villiers-sur-Marne - Le Plessis-Tr\u00e9vise",
99
+ "coord": {"lat": "48.823267", "lon": "2.54268"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711379"},
100
+ "arrival_date_time": "20141105T230900", "additional_informations": [], "links":
101
+ [], "departure_date_time": "20141105T231000"}, {"stop_point": {"comment":
102
+ "avenue du bois St Martin 93160 Noisy le Grand", "name": "Noisy-le-Grand Les
103
+ Yvris", "coord": {"lat": "48.823152", "lon": "2.579837"}, "equipments": [],
104
+ "id": "stop_point:TRN:SP:DUA8711380"}, "arrival_date_time": "20141105T231300",
105
+ "additional_informations": [], "links": [], "departure_date_time": "20141105T231300"},
106
+ {"stop_point": {"comment": "2 avenue de la gare 77184 Emerainville", "name":
107
+ "\u00c9merainville - Pontault-Combault", "coord": {"lat": "48.80577", "lon":
108
+ "2.619396"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711604"}, "arrival_date_time":
109
+ "20141105T231600", "additional_informations": [], "links": [], "departure_date_time":
110
+ "20141105T231700"}, {"stop_point": {"comment": "Place de la gare 77680 Roissy-en-Brie",
111
+ "name": "Roissy-en-Brie", "coord": {"lat": "48.795655", "lon": "2.650388"},
112
+ "equipments": [], "id": "stop_point:TRN:SP:DUA8711603"}, "arrival_date_time":
113
+ "20141105T231900", "additional_informations": [], "links": [], "departure_date_time":
114
+ "20141105T232000"}, {"stop_point": {"comment": "Avenue Raoul Nordling 77330
115
+ Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770779",
116
+ "lon": "2.690253"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711602"},
117
+ "arrival_date_time": "20141105T232300", "additional_informations": [], "links":
118
+ [], "departure_date_time": "20141105T232400"}]}], "tags": ["standard"], "departure_date_time":
119
+ "20141105T230000", "requested_date_time": "20141105T224300", "duration": 1380,
120
+ "nb_transfers": 0, "arrival_date_time": "20141105T232300", "type": "best"},
121
+ {"fare": {"found": false, "total": {"currency": "", "value": "0.0"}, "links":
122
+ []}, "sections": [{"links": [{"type": "vehicle_journey", "id": "vehicle_journey:TRN:DUASN119451F170013856667014"},
123
+ {"type": "line", "id": "line:TRN:DUA800805400"}, {"type": "route", "id": "route:TRN:DUA800805400_R"},
124
+ {"type": "commercial_mode", "id": "commercial_mode:train"}, {"type": "physical_mode",
125
+ "id": "physical_mode:Train"}, {"type": "network", "id": "network:RER"}], "departure_date_time":
126
+ "20141105T234500", "duration": 120, "id": "section_1_1", "from": {"embedded_type":
127
+ "stop_point", "stop_point": {"comment": "10 avenue du Val de Fontenay 94120
128
+ Fontenay-sous-Bois", "name": "Val de Fontenay", "coord": {"lat": "48.854269",
129
+ "lon": "2.489167"}, "equipments": [], "administrative_regions": [{"id": "admin:129423",
130
+ "level": 8, "name": "Montreuil", "coord": {"lat": "48.862335", "lon": "2.441218"},
131
+ "zip_code": "93100"}, {"id": "admin:130580", "level": 8, "name": "Rosny-sous-Bois",
132
+ "coord": {"lat": "48.876194", "lon": "2.485636"}, "zip_code": "93110"}], "address":
133
+ {"id": "2.489167;48.854269", "house_number": 0, "name": "P\u00e9riph\u00e9rique
134
+ d''\u00cele de France", "coord": {"lat": "48.854269", "lon": "2.489167"}},
135
+ "id": "stop_point:TRN:SP:DUA8711371", "stop_area": {"comment": "", "name":
136
+ "Val de Fontenay", "coord": {"lat": "48.854043", "lon": "2.488553"}, "id":
137
+ "stop_area:RTP:SA:1689"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711371",
138
+ "name": "Val de Fontenay (Montreuil) (Rosny-sous-Bois)"}, "arrival_date_time":
139
+ "20141105T234700", "additional_informations": ["regular"], "geojson": {"type":
140
+ "LineString", "properties": [{"length": 1700}], "coordinates": [[2.489167,
141
+ 48.854269], [2.494188, 48.839342]]}, "display_informations": {"direction":
142
+ "Nogent - Le Perreux (Le Perreux-sur-Marne)", "code": "E", "description":
143
+ "", "color": "BD76A1", "physical_mode": "Train", "headsign": "VOHA", "commercial_mode":
144
+ "Train", "equipments": [], "network": "RER", "label": "E"}, "to": {"embedded_type":
145
+ "stop_point", "stop_point": {"comment": "place du Th\u00e9\u00e2tre 94130
146
+ NOGENT-SUR-MARNE", "name": "Nogent - Le Perreux", "coord": {"lat": "48.839342",
147
+ "lon": "2.494188"}, "equipments": [], "administrative_regions": [{"id": "admin:108312",
148
+ "level": 8, "name": "Le Perreux-sur-Marne", "coord": {"lat": "48.840672",
149
+ "lon": "2.508055"}, "zip_code": "94170"}, {"id": "admin:1936381", "level":
150
+ 10, "name": "Plaisance", "coord": {"lat": "48.842677", "lon": "2.488971"},
151
+ "zip_code": ""}, {"id": "admin:1936380", "level": 10, "name": "Nogent Village",
152
+ "coord": {"lat": "48.837835", "lon": "2.48591"}, "zip_code": ""}], "address":
153
+ {"id": "2.494188;48.839342", "house_number": 0, "name": "", "coord": {"lat":
154
+ "48.839342", "lon": "2.494188"}}, "id": "stop_point:TRN:SP:DUA8711374", "stop_area":
155
+ {"comment": "", "name": "Nogent - Le Perreux", "coord": {"lat": "48.839033",
156
+ "lon": "2.494142"}, "id": "stop_area:TRN:SA:DUA8711374"}}, "quality": 0, "id":
157
+ "stop_point:TRN:SP:DUA8711374", "name": "Nogent - Le Perreux (Le Perreux-sur-Marne)"},
158
+ "type": "public_transport", "stop_date_times": [{"stop_point": {"comment":
159
+ "10 avenue du Val de Fontenay 94120 Fontenay-sous-Bois", "name": "Val de Fontenay",
160
+ "coord": {"lat": "48.854269", "lon": "2.489167"}, "equipments": [], "id":
161
+ "stop_point:TRN:SP:DUA8711371"}, "arrival_date_time": "20141105T234400", "additional_informations":
162
+ [], "links": [], "departure_date_time": "20141105T234500"}, {"stop_point":
163
+ {"comment": "place du Th\u00e9\u00e2tre 94130 NOGENT-SUR-MARNE", "name": "Nogent
164
+ - Le Perreux", "coord": {"lat": "48.839342", "lon": "2.494188"}, "equipments":
165
+ [], "id": "stop_point:TRN:SP:DUA8711374"}, "arrival_date_time": "20141105T234700",
166
+ "additional_informations": [], "links": [], "departure_date_time": "20141105T234700"}]},
167
+ {"links": [], "departure_date_time": "20141105T234700", "duration": 660, "id":
168
+ "section_2_1", "arrival_date_time": "20141105T235800", "additional_informations":
169
+ ["regular"], "type": "waiting"}, {"links": [{"type": "vehicle_journey", "id":
170
+ "vehicle_journey:TRN:DUASN021359R0200137976716305"}, {"type": "line", "id":
171
+ "line:TRN:DUA800804100"}, {"type": "route", "id": "route:TRN:DUA800805500_R"},
172
+ {"type": "commercial_mode", "id": "commercial_mode:bus"}, {"type": "physical_mode",
173
+ "id": "physical_mode:Bus"}, {"type": "network", "id": "network:TN"}], "departure_date_time":
174
+ "20141105T235800", "duration": 3900, "id": "section_3_1", "from": {"embedded_type":
175
+ "stop_point", "stop_point": {"comment": "Avenue Raoul Nordling 77330 Ozoir
176
+ la Ferriere", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770779",
177
+ "lon": "2.690253"}, "equipments": [], "administrative_regions": [{"id": "admin:108312",
178
+ "level": 8, "name": "Le Perreux-sur-Marne", "coord": {"lat": "48.840672",
179
+ "lon": "2.508055"}, "zip_code": "94170"}, {"id": "admin:1936381", "level":
180
+ 10, "name": "Plaisance", "coord": {"lat": "48.842677", "lon": "2.488971"},
181
+ "zip_code": ""}, {"id": "admin:1936380", "level": 10, "name": "Nogent Village",
182
+ "coord": {"lat": "48.837835", "lon": "2.48591"}, "zip_code": ""}, {"id": "admin:403076",
183
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
184
+ "lon": "2.675999"}, "zip_code": "77330"}], "address": {"id": "2.690253;48.770779",
185
+ "house_number": 0, "name": "", "administrative_regions": [{"id": "admin:403076",
186
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
187
+ "lon": "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon":
188
+ "2.690253"}}, "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment":
189
+ "", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon":
190
+ "2.689819"}, "administrative_regions": [{"coord": {"lat": "48.763802", "lon":
191
+ "2.675999"}, "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
192
+ "level": 8}], "id": "stop_area:TRN:SA:DUA8711602"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711602",
193
+ "name": "Ozoir-la-Ferri\u00e8re (Le Perreux-sur-Marne) (Ozoir-la-Ferri\u00e8re)"},
194
+ "arrival_date_time": "20141106T010300", "additional_informations": ["regular"],
195
+ "geojson": {"type": "LineString", "properties": [{"length": 17091}], "coordinates":
196
+ [[2.494188, 48.839342], [2.511856, 48.824849], [2.54268, 48.823267], [2.579837,
197
+ 48.823152], [2.619396, 48.80577], [2.650388, 48.795655], [2.690253, 48.770779]]},
198
+ "display_informations": {"direction": "Tournan (Tournan-en-Brie)", "code":
199
+ "BUS", "description": "", "color": "000000", "physical_mode": "Bus", "headsign":
200
+ "21359", "commercial_mode": "Bus", "equipments": [], "network": "Transilien",
201
+ "label": "BUS"}, "to": {"embedded_type": "stop_point", "stop_point": {"comment":
202
+ "Avenue Raoul Nordling 77330 Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re",
203
+ "coord": {"lat": "48.770779", "lon": "2.690253"}, "equipments": [], "administrative_regions":
204
+ [{"id": "admin:403076", "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord":
205
+ {"lat": "48.763802", "lon": "2.675999"}, "zip_code": "77330"}, {"id": "admin:403076",
206
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
207
+ "lon": "2.675999"}, "zip_code": "77330"}], "address": {"id": "2.690253;48.770779",
208
+ "house_number": 0, "name": "", "administrative_regions": [{"id": "admin:403076",
209
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
210
+ "lon": "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon":
211
+ "2.690253"}}, "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment":
212
+ "", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon":
213
+ "2.689819"}, "administrative_regions": [{"coord": {"lat": "48.763802", "lon":
214
+ "2.675999"}, "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
215
+ "level": 8}], "id": "stop_area:TRN:SA:DUA8711602"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711602",
216
+ "name": "Ozoir-la-Ferri\u00e8re (Ozoir-la-Ferri\u00e8re) (Ozoir-la-Ferri\u00e8re)"},
217
+ "type": "public_transport", "stop_date_times": [{"stop_point": {"comment":
218
+ "place du Th\u00e9\u00e2tre 94130 NOGENT-SUR-MARNE", "name": "Nogent - Le
219
+ Perreux", "coord": {"lat": "48.839342", "lon": "2.494188"}, "equipments":
220
+ [], "id": "stop_point:TRN:SP:DUA8711374"}, "arrival_date_time": "20141105T235800",
221
+ "additional_informations": [], "links": [], "departure_date_time": "20141105T235800"},
222
+ {"stop_point": {"comment": "Avenue Danielle Casanova 94500 Champigny sur Marne",
223
+ "name": "Les Boullereaux Champigny", "coord": {"lat": "48.824849", "lon":
224
+ "2.511856"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711377"}, "arrival_date_time":
225
+ "20141106T000800", "additional_informations": [], "links": [], "departure_date_time":
226
+ "20141106T000800"}, {"stop_point": {"comment": "place Pierre S\u00e9mard 94350
227
+ VILLIERS-SUR-MARNE", "name": "Villiers-sur-Marne - Le Plessis-Tr\u00e9vise",
228
+ "coord": {"lat": "48.823267", "lon": "2.54268"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711379"},
229
+ "arrival_date_time": "20141106T001800", "additional_informations": [], "links":
230
+ [], "departure_date_time": "20141106T001800"}, {"stop_point": {"comment":
231
+ "avenue du bois St Martin 93160 Noisy le Grand", "name": "Noisy-le-Grand Les
232
+ Yvris", "coord": {"lat": "48.823152", "lon": "2.579837"}, "equipments": [],
233
+ "id": "stop_point:TRN:SP:DUA8711380"}, "arrival_date_time": "20141106T002800",
234
+ "additional_informations": [], "links": [], "departure_date_time": "20141106T002800"},
235
+ {"stop_point": {"comment": "2 avenue de la gare 77184 Emerainville", "name":
236
+ "\u00c9merainville - Pontault-Combault", "coord": {"lat": "48.80577", "lon":
237
+ "2.619396"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711604"}, "arrival_date_time":
238
+ "20141106T003800", "additional_informations": [], "links": [], "departure_date_time":
239
+ "20141106T003800"}, {"stop_point": {"comment": "Place de la gare 77680 Roissy-en-Brie",
240
+ "name": "Roissy-en-Brie", "coord": {"lat": "48.795655", "lon": "2.650388"},
241
+ "equipments": [], "id": "stop_point:TRN:SP:DUA8711603"}, "arrival_date_time":
242
+ "20141106T004800", "additional_informations": [], "links": [], "departure_date_time":
243
+ "20141106T004800"}, {"stop_point": {"comment": "Avenue Raoul Nordling 77330
244
+ Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770779",
245
+ "lon": "2.690253"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711602"},
246
+ "arrival_date_time": "20141106T010300", "additional_informations": [], "links":
247
+ [], "departure_date_time": "20141106T010300"}]}], "tags": ["standard", "next"],
248
+ "departure_date_time": "20141105T234500", "requested_date_time": "20141105T230100",
249
+ "duration": 4680, "nb_transfers": 1, "arrival_date_time": "20141106T010300",
250
+ "type": "rapid"}, {"fare": {"found": false, "total": {"currency": "", "value":
251
+ "0.0"}, "links": []}, "sections": [{"links": [{"type": "vehicle_journey",
252
+ "id": "vehicle_journey:TRN:DUASN119463F040013856647000"}, {"type": "line",
253
+ "id": "line:TRN:DUA800805400"}, {"type": "route", "id": "route:TRN:DUA800805400_R"},
254
+ {"type": "commercial_mode", "id": "commercial_mode:train"}, {"type": "physical_mode",
255
+ "id": "physical_mode:Train"}, {"type": "network", "id": "network:RER"}], "departure_date_time":
256
+ "20141106T001500", "duration": 120, "id": "section_1_2", "from": {"embedded_type":
257
+ "stop_point", "stop_point": {"comment": "10 avenue du Val de Fontenay 94120
258
+ Fontenay-sous-Bois", "name": "Val de Fontenay", "coord": {"lat": "48.854269",
259
+ "lon": "2.489167"}, "equipments": [], "administrative_regions": [{"id": "admin:129423",
260
+ "level": 8, "name": "Montreuil", "coord": {"lat": "48.862335", "lon": "2.441218"},
261
+ "zip_code": "93100"}, {"id": "admin:130580", "level": 8, "name": "Rosny-sous-Bois",
262
+ "coord": {"lat": "48.876194", "lon": "2.485636"}, "zip_code": "93110"}], "address":
263
+ {"id": "2.489167;48.854269", "house_number": 0, "name": "P\u00e9riph\u00e9rique
264
+ d''\u00cele de France", "coord": {"lat": "48.854269", "lon": "2.489167"}},
265
+ "id": "stop_point:TRN:SP:DUA8711371", "stop_area": {"comment": "", "name":
266
+ "Val de Fontenay", "coord": {"lat": "48.854043", "lon": "2.488553"}, "id":
267
+ "stop_area:RTP:SA:1689"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711371",
268
+ "name": "Val de Fontenay (Montreuil) (Rosny-sous-Bois)"}, "arrival_date_time":
269
+ "20141106T001700", "additional_informations": ["regular"], "geojson": {"type":
270
+ "LineString", "properties": [{"length": 1700}], "coordinates": [[2.489167,
271
+ 48.854269], [2.494188, 48.839342]]}, "display_informations": {"direction":
272
+ "Nogent - Le Perreux (Le Perreux-sur-Marne)", "code": "E", "description":
273
+ "", "color": "BD76A1", "physical_mode": "Train", "headsign": "VOHA", "commercial_mode":
274
+ "Train", "equipments": [], "network": "RER", "label": "E"}, "to": {"embedded_type":
275
+ "stop_point", "stop_point": {"comment": "place du Th\u00e9\u00e2tre 94130
276
+ NOGENT-SUR-MARNE", "name": "Nogent - Le Perreux", "coord": {"lat": "48.839342",
277
+ "lon": "2.494188"}, "equipments": [], "administrative_regions": [{"id": "admin:108312",
278
+ "level": 8, "name": "Le Perreux-sur-Marne", "coord": {"lat": "48.840672",
279
+ "lon": "2.508055"}, "zip_code": "94170"}, {"id": "admin:1936381", "level":
280
+ 10, "name": "Plaisance", "coord": {"lat": "48.842677", "lon": "2.488971"},
281
+ "zip_code": ""}, {"id": "admin:1936380", "level": 10, "name": "Nogent Village",
282
+ "coord": {"lat": "48.837835", "lon": "2.48591"}, "zip_code": ""}], "address":
283
+ {"id": "2.494188;48.839342", "house_number": 0, "name": "", "coord": {"lat":
284
+ "48.839342", "lon": "2.494188"}}, "id": "stop_point:TRN:SP:DUA8711374", "stop_area":
285
+ {"comment": "", "name": "Nogent - Le Perreux", "coord": {"lat": "48.839033",
286
+ "lon": "2.494142"}, "id": "stop_area:TRN:SA:DUA8711374"}}, "quality": 0, "id":
287
+ "stop_point:TRN:SP:DUA8711374", "name": "Nogent - Le Perreux (Le Perreux-sur-Marne)"},
288
+ "type": "public_transport", "stop_date_times": [{"stop_point": {"comment":
289
+ "10 avenue du Val de Fontenay 94120 Fontenay-sous-Bois", "name": "Val de Fontenay",
290
+ "coord": {"lat": "48.854269", "lon": "2.489167"}, "equipments": [], "id":
291
+ "stop_point:TRN:SP:DUA8711371"}, "arrival_date_time": "20141106T001400", "additional_informations":
292
+ [], "links": [], "departure_date_time": "20141106T001500"}, {"stop_point":
293
+ {"comment": "place du Th\u00e9\u00e2tre 94130 NOGENT-SUR-MARNE", "name": "Nogent
294
+ - Le Perreux", "coord": {"lat": "48.839342", "lon": "2.494188"}, "equipments":
295
+ [], "id": "stop_point:TRN:SP:DUA8711374"}, "arrival_date_time": "20141106T001700",
296
+ "additional_informations": [], "links": [], "departure_date_time": "20141106T001700"}]},
297
+ {"links": [], "departure_date_time": "20141106T001700", "duration": 660, "id":
298
+ "section_2_2", "arrival_date_time": "20141106T002800", "additional_informations":
299
+ ["regular"], "type": "waiting"}, {"links": [{"type": "vehicle_journey", "id":
300
+ "vehicle_journey:TRN:DUASN021360R0200137976616314"}, {"type": "line", "id":
301
+ "line:TRN:DUA800804100"}, {"type": "route", "id": "route:TRN:DUA800805500_R"},
302
+ {"type": "commercial_mode", "id": "commercial_mode:bus"}, {"type": "physical_mode",
303
+ "id": "physical_mode:Bus"}, {"type": "network", "id": "network:TN"}], "departure_date_time":
304
+ "20141106T002800", "duration": 3900, "id": "section_3_2", "from": {"embedded_type":
305
+ "stop_point", "stop_point": {"comment": "Avenue Raoul Nordling 77330 Ozoir
306
+ la Ferriere", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770779",
307
+ "lon": "2.690253"}, "equipments": [], "administrative_regions": [{"id": "admin:108312",
308
+ "level": 8, "name": "Le Perreux-sur-Marne", "coord": {"lat": "48.840672",
309
+ "lon": "2.508055"}, "zip_code": "94170"}, {"id": "admin:1936381", "level":
310
+ 10, "name": "Plaisance", "coord": {"lat": "48.842677", "lon": "2.488971"},
311
+ "zip_code": ""}, {"id": "admin:1936380", "level": 10, "name": "Nogent Village",
312
+ "coord": {"lat": "48.837835", "lon": "2.48591"}, "zip_code": ""}, {"id": "admin:403076",
313
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
314
+ "lon": "2.675999"}, "zip_code": "77330"}], "address": {"id": "2.690253;48.770779",
315
+ "house_number": 0, "name": "", "administrative_regions": [{"id": "admin:403076",
316
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
317
+ "lon": "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon":
318
+ "2.690253"}}, "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment":
319
+ "", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon":
320
+ "2.689819"}, "administrative_regions": [{"coord": {"lat": "48.763802", "lon":
321
+ "2.675999"}, "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
322
+ "level": 8}], "id": "stop_area:TRN:SA:DUA8711602"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711602",
323
+ "name": "Ozoir-la-Ferri\u00e8re (Le Perreux-sur-Marne) (Ozoir-la-Ferri\u00e8re)"},
324
+ "arrival_date_time": "20141106T013300", "additional_informations": ["regular"],
325
+ "geojson": {"type": "LineString", "properties": [{"length": 17091}], "coordinates":
326
+ [[2.494188, 48.839342], [2.511856, 48.824849], [2.54268, 48.823267], [2.579837,
327
+ 48.823152], [2.619396, 48.80577], [2.650388, 48.795655], [2.690253, 48.770779]]},
328
+ "display_informations": {"direction": "Tournan (Tournan-en-Brie)", "code":
329
+ "BUS", "description": "", "color": "000000", "physical_mode": "Bus", "headsign":
330
+ "21360", "commercial_mode": "Bus", "equipments": [], "network": "Transilien",
331
+ "label": "BUS"}, "to": {"embedded_type": "stop_point", "stop_point": {"comment":
332
+ "Avenue Raoul Nordling 77330 Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re",
333
+ "coord": {"lat": "48.770779", "lon": "2.690253"}, "equipments": [], "administrative_regions":
334
+ [{"id": "admin:403076", "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord":
335
+ {"lat": "48.763802", "lon": "2.675999"}, "zip_code": "77330"}, {"id": "admin:403076",
336
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
337
+ "lon": "2.675999"}, "zip_code": "77330"}], "address": {"id": "2.690253;48.770779",
338
+ "house_number": 0, "name": "", "administrative_regions": [{"id": "admin:403076",
339
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
340
+ "lon": "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon":
341
+ "2.690253"}}, "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment":
342
+ "", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon":
343
+ "2.689819"}, "administrative_regions": [{"coord": {"lat": "48.763802", "lon":
344
+ "2.675999"}, "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
345
+ "level": 8}], "id": "stop_area:TRN:SA:DUA8711602"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711602",
346
+ "name": "Ozoir-la-Ferri\u00e8re (Ozoir-la-Ferri\u00e8re) (Ozoir-la-Ferri\u00e8re)"},
347
+ "type": "public_transport", "stop_date_times": [{"stop_point": {"comment":
348
+ "place du Th\u00e9\u00e2tre 94130 NOGENT-SUR-MARNE", "name": "Nogent - Le
349
+ Perreux", "coord": {"lat": "48.839342", "lon": "2.494188"}, "equipments":
350
+ [], "id": "stop_point:TRN:SP:DUA8711374"}, "arrival_date_time": "20141106T002800",
351
+ "additional_informations": [], "links": [], "departure_date_time": "20141106T002800"},
352
+ {"stop_point": {"comment": "Avenue Danielle Casanova 94500 Champigny sur Marne",
353
+ "name": "Les Boullereaux Champigny", "coord": {"lat": "48.824849", "lon":
354
+ "2.511856"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711377"}, "arrival_date_time":
355
+ "20141106T003800", "additional_informations": [], "links": [], "departure_date_time":
356
+ "20141106T003800"}, {"stop_point": {"comment": "place Pierre S\u00e9mard 94350
357
+ VILLIERS-SUR-MARNE", "name": "Villiers-sur-Marne - Le Plessis-Tr\u00e9vise",
358
+ "coord": {"lat": "48.823267", "lon": "2.54268"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711379"},
359
+ "arrival_date_time": "20141106T004800", "additional_informations": [], "links":
360
+ [], "departure_date_time": "20141106T004800"}, {"stop_point": {"comment":
361
+ "avenue du bois St Martin 93160 Noisy le Grand", "name": "Noisy-le-Grand Les
362
+ Yvris", "coord": {"lat": "48.823152", "lon": "2.579837"}, "equipments": [],
363
+ "id": "stop_point:TRN:SP:DUA8711380"}, "arrival_date_time": "20141106T005800",
364
+ "additional_informations": [], "links": [], "departure_date_time": "20141106T005800"},
365
+ {"stop_point": {"comment": "2 avenue de la gare 77184 Emerainville", "name":
366
+ "\u00c9merainville - Pontault-Combault", "coord": {"lat": "48.80577", "lon":
367
+ "2.619396"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711604"}, "arrival_date_time":
368
+ "20141106T010800", "additional_informations": [], "links": [], "departure_date_time":
369
+ "20141106T010800"}, {"stop_point": {"comment": "Place de la gare 77680 Roissy-en-Brie",
370
+ "name": "Roissy-en-Brie", "coord": {"lat": "48.795655", "lon": "2.650388"},
371
+ "equipments": [], "id": "stop_point:TRN:SP:DUA8711603"}, "arrival_date_time":
372
+ "20141106T011800", "additional_informations": [], "links": [], "departure_date_time":
373
+ "20141106T011800"}, {"stop_point": {"comment": "Avenue Raoul Nordling 77330
374
+ Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770779",
375
+ "lon": "2.690253"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711602"},
376
+ "arrival_date_time": "20141106T013300", "additional_informations": [], "links":
377
+ [], "departure_date_time": "20141106T013300"}]}], "tags": ["standard", "next"],
378
+ "departure_date_time": "20141106T001500", "requested_date_time": "20141105T234600",
379
+ "duration": 4680, "nb_transfers": 1, "arrival_date_time": "20141106T013300",
380
+ "type": "rapid"}], "links": [{"href": "https://api.navitia.io/v1/coverage/fr-idf/journeys?to=stop_point%3ATRN%3ASP%3ADUA8711602&datetime_represents=arrival&from=stop_point%3ATRN%3ASP%3ADUA8711371&min_nb_journeys=3&datetime=20141105T232200",
381
+ "type": "prev", "templated": false}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/journeys?to=stop_point%3ATRN%3ASP%3ADUA8711602&datetime_represents=departure&from=stop_point%3ATRN%3ASP%3ADUA8711371&min_nb_journeys=3&datetime=20141105T230100",
382
+ "type": "next", "templated": false}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/journeys?to=stop_point%3ATRN%3ASP%3ADUA8711602&datetime_represents=departure&from=stop_point%3ATRN%3ASP%3ADUA8711371&min_nb_journeys=3&datetime=20141105T000000",
383
+ "type": "first", "templated": false}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/journeys?to=stop_point%3ATRN%3ASP%3ADUA8711602&datetime_represents=arrival&from=stop_point%3ATRN%3ASP%3ADUA8711371&min_nb_journeys=3&datetime=20141106T235900",
384
+ "type": "last", "templated": false}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/stop_points/{stop_point.id}",
385
+ "rel": "stop_point", "templated": true}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/stop_areas/{stop_area.id}",
386
+ "rel": "stop_area", "templated": true}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/addresses/{address.id}",
387
+ "rel": "address", "templated": true}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/stop_points/{stop_point.id}",
388
+ "rel": "stop_point", "templated": true}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/stop_areas/{stop_area.id}",
389
+ "rel": "stop_area", "templated": true}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/addresses/{address.id}",
390
+ "rel": "address", "templated": true}], "exceptions": [], "notes": []}'
391
+ http_version:
392
+ recorded_at: Wed, 05 Nov 2014 21:43:21 GMT
393
+ - request:
394
+ method: get
395
+ uri: https://95dd16c9-8b0a-406a-aba6-3ab663234cf4:@api.navitia.io/v1/coverage/fr-idf/journeys?datetime=20141105T2244&from=stop_point:TRN:SP:DUA8711371&min_nb_journeys=3&to=stop_point:TRN:SP:DUA8711602
396
+ body:
397
+ encoding: US-ASCII
398
+ string: ''
399
+ headers: {}
400
+ response:
401
+ status:
402
+ code: 200
403
+ message: OK
404
+ headers:
405
+ Date:
406
+ - Wed, 05 Nov 2014 21:44:19 GMT
407
+ Server:
408
+ - Apache
409
+ Vary:
410
+ - Authorization
411
+ Content-Length:
412
+ - '30220'
413
+ Access-Control-Allow-Origin:
414
+ - '*'
415
+ Connection:
416
+ - close
417
+ Content-Type:
418
+ - application/json
419
+ body:
420
+ encoding: UTF-8
421
+ string: '{"tickets": [{"comment": "unknown ticket", "name": "unkown_ticket",
422
+ "links": [{"internal": true, "type": "section", "id": "section_0_0", "rel":
423
+ "sections", "templated": false}], "cost": {"currency": "", "value": "0.0"},
424
+ "found": false, "id": "unknown_ticket_0"}], "journeys": [{"fare": {"found":
425
+ false, "total": {"currency": "", "value": "0.0"}, "links": [{"internal": true,
426
+ "type": "ticket", "id": "unknown_ticket_0", "rel": "tickets", "templated":
427
+ false}]}, "sections": [{"links": [{"type": "vehicle_journey", "id": "vehicle_journey:TRN:DUASN118837F010023876807296"},
428
+ {"type": "line", "id": "line:TRN:DUA800805400"}, {"type": "route", "id": "route:TRN:DUA800805014_R"},
429
+ {"type": "commercial_mode", "id": "commercial_mode:train"}, {"type": "physical_mode",
430
+ "id": "physical_mode:Train"}, {"type": "network", "id": "network:RER"}, {"internal":
431
+ true, "type": "ticket", "id": "unknown_ticket_0", "rel": "tickets", "templated":
432
+ false}], "departure_date_time": "20141105T230000", "duration": 1380, "id":
433
+ "section_0_0", "from": {"embedded_type": "stop_point", "stop_point": {"comment":
434
+ "Avenue Raoul Nordling 77330 Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re",
435
+ "coord": {"lat": "48.770779", "lon": "2.690253"}, "equipments": [], "administrative_regions":
436
+ [{"id": "admin:129423", "level": 8, "name": "Montreuil", "coord": {"lat":
437
+ "48.862335", "lon": "2.441218"}, "zip_code": "93100"}, {"id": "admin:130580",
438
+ "level": 8, "name": "Rosny-sous-Bois", "coord": {"lat": "48.876194", "lon":
439
+ "2.485636"}, "zip_code": "93110"}, {"id": "admin:403076", "level": 8, "name":
440
+ "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802", "lon": "2.675999"},
441
+ "zip_code": "77330"}], "address": {"id": "2.690253;48.770779", "house_number":
442
+ 0, "name": "", "administrative_regions": [{"id": "admin:403076", "level":
443
+ 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802", "lon":
444
+ "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon": "2.690253"}},
445
+ "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment": "", "name":
446
+ "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon": "2.689819"},
447
+ "administrative_regions": [{"coord": {"lat": "48.763802", "lon": "2.675999"},
448
+ "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
449
+ "level": 8}], "id": "stop_area:TRN:SA:DUA8711602"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711602",
450
+ "name": "Ozoir-la-Ferri\u00e8re (Montreuil) (Rosny-sous-Bois) (Ozoir-la-Ferri\u00e8re)"},
451
+ "arrival_date_time": "20141105T232300", "additional_informations": ["regular"],
452
+ "geojson": {"type": "LineString", "properties": [{"length": 18791}], "coordinates":
453
+ [[2.489167, 48.854269], [2.494188, 48.839342], [2.511856, 48.824849], [2.54268,
454
+ 48.823267], [2.579837, 48.823152], [2.619396, 48.80577], [2.650388, 48.795655],
455
+ [2.690253, 48.770779]]}, "display_informations": {"direction": "Tournan (Tournan-en-Brie)",
456
+ "code": "E", "description": "", "color": "BD76A1", "physical_mode": "Train",
457
+ "headsign": "TOHA", "commercial_mode": "Train", "equipments": [], "network":
458
+ "RER", "label": "E"}, "to": {"embedded_type": "stop_point", "stop_point":
459
+ {"comment": "Avenue Raoul Nordling 77330 Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re",
460
+ "coord": {"lat": "48.770779", "lon": "2.690253"}, "equipments": [], "administrative_regions":
461
+ [{"id": "admin:403076", "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord":
462
+ {"lat": "48.763802", "lon": "2.675999"}, "zip_code": "77330"}, {"id": "admin:403076",
463
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
464
+ "lon": "2.675999"}, "zip_code": "77330"}], "address": {"id": "2.690253;48.770779",
465
+ "house_number": 0, "name": "", "administrative_regions": [{"id": "admin:403076",
466
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
467
+ "lon": "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon":
468
+ "2.690253"}}, "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment":
469
+ "", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon":
470
+ "2.689819"}, "administrative_regions": [{"coord": {"lat": "48.763802", "lon":
471
+ "2.675999"}, "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
472
+ "level": 8}], "id": "stop_area:TRN:SA:DUA8711602"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711602",
473
+ "name": "Ozoir-la-Ferri\u00e8re (Ozoir-la-Ferri\u00e8re) (Ozoir-la-Ferri\u00e8re)"},
474
+ "type": "public_transport", "stop_date_times": [{"stop_point": {"comment":
475
+ "10 avenue du Val de Fontenay 94120 Fontenay-sous-Bois", "name": "Val de Fontenay",
476
+ "coord": {"lat": "48.854269", "lon": "2.489167"}, "equipments": [], "id":
477
+ "stop_point:TRN:SP:DUA8711371"}, "arrival_date_time": "20141105T225900", "additional_informations":
478
+ [], "links": [], "departure_date_time": "20141105T230000"}, {"stop_point":
479
+ {"comment": "place du Th\u00e9\u00e2tre 94130 NOGENT-SUR-MARNE", "name": "Nogent
480
+ - Le Perreux", "coord": {"lat": "48.839342", "lon": "2.494188"}, "equipments":
481
+ [], "id": "stop_point:TRN:SP:DUA8711374"}, "arrival_date_time": "20141105T230200",
482
+ "additional_informations": [], "links": [], "departure_date_time": "20141105T230300"},
483
+ {"stop_point": {"comment": "Avenue Danielle Casanova 94500 Champigny sur Marne",
484
+ "name": "Les Boullereaux Champigny", "coord": {"lat": "48.824849", "lon":
485
+ "2.511856"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711377"}, "arrival_date_time":
486
+ "20141105T230600", "additional_informations": [], "links": [], "departure_date_time":
487
+ "20141105T230600"}, {"stop_point": {"comment": "place Pierre S\u00e9mard 94350
488
+ VILLIERS-SUR-MARNE", "name": "Villiers-sur-Marne - Le Plessis-Tr\u00e9vise",
489
+ "coord": {"lat": "48.823267", "lon": "2.54268"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711379"},
490
+ "arrival_date_time": "20141105T230900", "additional_informations": [], "links":
491
+ [], "departure_date_time": "20141105T231000"}, {"stop_point": {"comment":
492
+ "avenue du bois St Martin 93160 Noisy le Grand", "name": "Noisy-le-Grand Les
493
+ Yvris", "coord": {"lat": "48.823152", "lon": "2.579837"}, "equipments": [],
494
+ "id": "stop_point:TRN:SP:DUA8711380"}, "arrival_date_time": "20141105T231300",
495
+ "additional_informations": [], "links": [], "departure_date_time": "20141105T231300"},
496
+ {"stop_point": {"comment": "2 avenue de la gare 77184 Emerainville", "name":
497
+ "\u00c9merainville - Pontault-Combault", "coord": {"lat": "48.80577", "lon":
498
+ "2.619396"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711604"}, "arrival_date_time":
499
+ "20141105T231600", "additional_informations": [], "links": [], "departure_date_time":
500
+ "20141105T231700"}, {"stop_point": {"comment": "Place de la gare 77680 Roissy-en-Brie",
501
+ "name": "Roissy-en-Brie", "coord": {"lat": "48.795655", "lon": "2.650388"},
502
+ "equipments": [], "id": "stop_point:TRN:SP:DUA8711603"}, "arrival_date_time":
503
+ "20141105T231900", "additional_informations": [], "links": [], "departure_date_time":
504
+ "20141105T232000"}, {"stop_point": {"comment": "Avenue Raoul Nordling 77330
505
+ Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770779",
506
+ "lon": "2.690253"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711602"},
507
+ "arrival_date_time": "20141105T232300", "additional_informations": [], "links":
508
+ [], "departure_date_time": "20141105T232400"}]}], "tags": ["standard"], "departure_date_time":
509
+ "20141105T230000", "requested_date_time": "20141105T224400", "duration": 1380,
510
+ "nb_transfers": 0, "arrival_date_time": "20141105T232300", "type": "best"},
511
+ {"fare": {"found": false, "total": {"currency": "", "value": "0.0"}, "links":
512
+ []}, "sections": [{"links": [{"type": "vehicle_journey", "id": "vehicle_journey:TRN:DUASN119451F170013856667014"},
513
+ {"type": "line", "id": "line:TRN:DUA800805400"}, {"type": "route", "id": "route:TRN:DUA800805400_R"},
514
+ {"type": "commercial_mode", "id": "commercial_mode:train"}, {"type": "physical_mode",
515
+ "id": "physical_mode:Train"}, {"type": "network", "id": "network:RER"}], "departure_date_time":
516
+ "20141105T234500", "duration": 120, "id": "section_1_1", "from": {"embedded_type":
517
+ "stop_point", "stop_point": {"comment": "10 avenue du Val de Fontenay 94120
518
+ Fontenay-sous-Bois", "name": "Val de Fontenay", "coord": {"lat": "48.854269",
519
+ "lon": "2.489167"}, "equipments": [], "administrative_regions": [{"id": "admin:129423",
520
+ "level": 8, "name": "Montreuil", "coord": {"lat": "48.862335", "lon": "2.441218"},
521
+ "zip_code": "93100"}, {"id": "admin:130580", "level": 8, "name": "Rosny-sous-Bois",
522
+ "coord": {"lat": "48.876194", "lon": "2.485636"}, "zip_code": "93110"}], "address":
523
+ {"id": "2.489167;48.854269", "house_number": 0, "name": "P\u00e9riph\u00e9rique
524
+ d''\u00cele de France", "coord": {"lat": "48.854269", "lon": "2.489167"}},
525
+ "id": "stop_point:TRN:SP:DUA8711371", "stop_area": {"comment": "", "name":
526
+ "Val de Fontenay", "coord": {"lat": "48.854043", "lon": "2.488553"}, "id":
527
+ "stop_area:RTP:SA:1689"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711371",
528
+ "name": "Val de Fontenay (Montreuil) (Rosny-sous-Bois)"}, "arrival_date_time":
529
+ "20141105T234700", "additional_informations": ["regular"], "geojson": {"type":
530
+ "LineString", "properties": [{"length": 1700}], "coordinates": [[2.489167,
531
+ 48.854269], [2.494188, 48.839342]]}, "display_informations": {"direction":
532
+ "Nogent - Le Perreux (Le Perreux-sur-Marne)", "code": "E", "description":
533
+ "", "color": "BD76A1", "physical_mode": "Train", "headsign": "VOHA", "commercial_mode":
534
+ "Train", "equipments": [], "network": "RER", "label": "E"}, "to": {"embedded_type":
535
+ "stop_point", "stop_point": {"comment": "place du Th\u00e9\u00e2tre 94130
536
+ NOGENT-SUR-MARNE", "name": "Nogent - Le Perreux", "coord": {"lat": "48.839342",
537
+ "lon": "2.494188"}, "equipments": [], "administrative_regions": [{"id": "admin:108312",
538
+ "level": 8, "name": "Le Perreux-sur-Marne", "coord": {"lat": "48.840672",
539
+ "lon": "2.508055"}, "zip_code": "94170"}, {"id": "admin:1936381", "level":
540
+ 10, "name": "Plaisance", "coord": {"lat": "48.842677", "lon": "2.488971"},
541
+ "zip_code": ""}, {"id": "admin:1936380", "level": 10, "name": "Nogent Village",
542
+ "coord": {"lat": "48.837835", "lon": "2.48591"}, "zip_code": ""}], "address":
543
+ {"id": "2.494188;48.839342", "house_number": 0, "name": "", "coord": {"lat":
544
+ "48.839342", "lon": "2.494188"}}, "id": "stop_point:TRN:SP:DUA8711374", "stop_area":
545
+ {"comment": "", "name": "Nogent - Le Perreux", "coord": {"lat": "48.839033",
546
+ "lon": "2.494142"}, "id": "stop_area:TRN:SA:DUA8711374"}}, "quality": 0, "id":
547
+ "stop_point:TRN:SP:DUA8711374", "name": "Nogent - Le Perreux (Le Perreux-sur-Marne)"},
548
+ "type": "public_transport", "stop_date_times": [{"stop_point": {"comment":
549
+ "10 avenue du Val de Fontenay 94120 Fontenay-sous-Bois", "name": "Val de Fontenay",
550
+ "coord": {"lat": "48.854269", "lon": "2.489167"}, "equipments": [], "id":
551
+ "stop_point:TRN:SP:DUA8711371"}, "arrival_date_time": "20141105T234400", "additional_informations":
552
+ [], "links": [], "departure_date_time": "20141105T234500"}, {"stop_point":
553
+ {"comment": "place du Th\u00e9\u00e2tre 94130 NOGENT-SUR-MARNE", "name": "Nogent
554
+ - Le Perreux", "coord": {"lat": "48.839342", "lon": "2.494188"}, "equipments":
555
+ [], "id": "stop_point:TRN:SP:DUA8711374"}, "arrival_date_time": "20141105T234700",
556
+ "additional_informations": [], "links": [], "departure_date_time": "20141105T234700"}]},
557
+ {"links": [], "departure_date_time": "20141105T234700", "duration": 660, "id":
558
+ "section_2_1", "arrival_date_time": "20141105T235800", "additional_informations":
559
+ ["regular"], "type": "waiting"}, {"links": [{"type": "vehicle_journey", "id":
560
+ "vehicle_journey:TRN:DUASN021359R0200137976716305"}, {"type": "line", "id":
561
+ "line:TRN:DUA800804100"}, {"type": "route", "id": "route:TRN:DUA800805500_R"},
562
+ {"type": "commercial_mode", "id": "commercial_mode:bus"}, {"type": "physical_mode",
563
+ "id": "physical_mode:Bus"}, {"type": "network", "id": "network:TN"}], "departure_date_time":
564
+ "20141105T235800", "duration": 3900, "id": "section_3_1", "from": {"embedded_type":
565
+ "stop_point", "stop_point": {"comment": "Avenue Raoul Nordling 77330 Ozoir
566
+ la Ferriere", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770779",
567
+ "lon": "2.690253"}, "equipments": [], "administrative_regions": [{"id": "admin:108312",
568
+ "level": 8, "name": "Le Perreux-sur-Marne", "coord": {"lat": "48.840672",
569
+ "lon": "2.508055"}, "zip_code": "94170"}, {"id": "admin:1936381", "level":
570
+ 10, "name": "Plaisance", "coord": {"lat": "48.842677", "lon": "2.488971"},
571
+ "zip_code": ""}, {"id": "admin:1936380", "level": 10, "name": "Nogent Village",
572
+ "coord": {"lat": "48.837835", "lon": "2.48591"}, "zip_code": ""}, {"id": "admin:403076",
573
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
574
+ "lon": "2.675999"}, "zip_code": "77330"}], "address": {"id": "2.690253;48.770779",
575
+ "house_number": 0, "name": "", "administrative_regions": [{"id": "admin:403076",
576
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
577
+ "lon": "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon":
578
+ "2.690253"}}, "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment":
579
+ "", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon":
580
+ "2.689819"}, "administrative_regions": [{"coord": {"lat": "48.763802", "lon":
581
+ "2.675999"}, "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
582
+ "level": 8}], "id": "stop_area:TRN:SA:DUA8711602"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711602",
583
+ "name": "Ozoir-la-Ferri\u00e8re (Le Perreux-sur-Marne) (Ozoir-la-Ferri\u00e8re)"},
584
+ "arrival_date_time": "20141106T010300", "additional_informations": ["regular"],
585
+ "geojson": {"type": "LineString", "properties": [{"length": 17091}], "coordinates":
586
+ [[2.494188, 48.839342], [2.511856, 48.824849], [2.54268, 48.823267], [2.579837,
587
+ 48.823152], [2.619396, 48.80577], [2.650388, 48.795655], [2.690253, 48.770779]]},
588
+ "display_informations": {"direction": "Tournan (Tournan-en-Brie)", "code":
589
+ "BUS", "description": "", "color": "000000", "physical_mode": "Bus", "headsign":
590
+ "21359", "commercial_mode": "Bus", "equipments": [], "network": "Transilien",
591
+ "label": "BUS"}, "to": {"embedded_type": "stop_point", "stop_point": {"comment":
592
+ "Avenue Raoul Nordling 77330 Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re",
593
+ "coord": {"lat": "48.770779", "lon": "2.690253"}, "equipments": [], "administrative_regions":
594
+ [{"id": "admin:403076", "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord":
595
+ {"lat": "48.763802", "lon": "2.675999"}, "zip_code": "77330"}, {"id": "admin:403076",
596
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
597
+ "lon": "2.675999"}, "zip_code": "77330"}], "address": {"id": "2.690253;48.770779",
598
+ "house_number": 0, "name": "", "administrative_regions": [{"id": "admin:403076",
599
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
600
+ "lon": "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon":
601
+ "2.690253"}}, "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment":
602
+ "", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon":
603
+ "2.689819"}, "administrative_regions": [{"coord": {"lat": "48.763802", "lon":
604
+ "2.675999"}, "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
605
+ "level": 8}], "id": "stop_area:TRN:SA:DUA8711602"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711602",
606
+ "name": "Ozoir-la-Ferri\u00e8re (Ozoir-la-Ferri\u00e8re) (Ozoir-la-Ferri\u00e8re)"},
607
+ "type": "public_transport", "stop_date_times": [{"stop_point": {"comment":
608
+ "place du Th\u00e9\u00e2tre 94130 NOGENT-SUR-MARNE", "name": "Nogent - Le
609
+ Perreux", "coord": {"lat": "48.839342", "lon": "2.494188"}, "equipments":
610
+ [], "id": "stop_point:TRN:SP:DUA8711374"}, "arrival_date_time": "20141105T235800",
611
+ "additional_informations": [], "links": [], "departure_date_time": "20141105T235800"},
612
+ {"stop_point": {"comment": "Avenue Danielle Casanova 94500 Champigny sur Marne",
613
+ "name": "Les Boullereaux Champigny", "coord": {"lat": "48.824849", "lon":
614
+ "2.511856"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711377"}, "arrival_date_time":
615
+ "20141106T000800", "additional_informations": [], "links": [], "departure_date_time":
616
+ "20141106T000800"}, {"stop_point": {"comment": "place Pierre S\u00e9mard 94350
617
+ VILLIERS-SUR-MARNE", "name": "Villiers-sur-Marne - Le Plessis-Tr\u00e9vise",
618
+ "coord": {"lat": "48.823267", "lon": "2.54268"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711379"},
619
+ "arrival_date_time": "20141106T001800", "additional_informations": [], "links":
620
+ [], "departure_date_time": "20141106T001800"}, {"stop_point": {"comment":
621
+ "avenue du bois St Martin 93160 Noisy le Grand", "name": "Noisy-le-Grand Les
622
+ Yvris", "coord": {"lat": "48.823152", "lon": "2.579837"}, "equipments": [],
623
+ "id": "stop_point:TRN:SP:DUA8711380"}, "arrival_date_time": "20141106T002800",
624
+ "additional_informations": [], "links": [], "departure_date_time": "20141106T002800"},
625
+ {"stop_point": {"comment": "2 avenue de la gare 77184 Emerainville", "name":
626
+ "\u00c9merainville - Pontault-Combault", "coord": {"lat": "48.80577", "lon":
627
+ "2.619396"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711604"}, "arrival_date_time":
628
+ "20141106T003800", "additional_informations": [], "links": [], "departure_date_time":
629
+ "20141106T003800"}, {"stop_point": {"comment": "Place de la gare 77680 Roissy-en-Brie",
630
+ "name": "Roissy-en-Brie", "coord": {"lat": "48.795655", "lon": "2.650388"},
631
+ "equipments": [], "id": "stop_point:TRN:SP:DUA8711603"}, "arrival_date_time":
632
+ "20141106T004800", "additional_informations": [], "links": [], "departure_date_time":
633
+ "20141106T004800"}, {"stop_point": {"comment": "Avenue Raoul Nordling 77330
634
+ Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770779",
635
+ "lon": "2.690253"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711602"},
636
+ "arrival_date_time": "20141106T010300", "additional_informations": [], "links":
637
+ [], "departure_date_time": "20141106T010300"}]}], "tags": ["standard", "next"],
638
+ "departure_date_time": "20141105T234500", "requested_date_time": "20141105T230100",
639
+ "duration": 4680, "nb_transfers": 1, "arrival_date_time": "20141106T010300",
640
+ "type": "rapid"}, {"fare": {"found": false, "total": {"currency": "", "value":
641
+ "0.0"}, "links": []}, "sections": [{"links": [{"type": "vehicle_journey",
642
+ "id": "vehicle_journey:TRN:DUASN119463F040013856647000"}, {"type": "line",
643
+ "id": "line:TRN:DUA800805400"}, {"type": "route", "id": "route:TRN:DUA800805400_R"},
644
+ {"type": "commercial_mode", "id": "commercial_mode:train"}, {"type": "physical_mode",
645
+ "id": "physical_mode:Train"}, {"type": "network", "id": "network:RER"}], "departure_date_time":
646
+ "20141106T001500", "duration": 120, "id": "section_1_2", "from": {"embedded_type":
647
+ "stop_point", "stop_point": {"comment": "10 avenue du Val de Fontenay 94120
648
+ Fontenay-sous-Bois", "name": "Val de Fontenay", "coord": {"lat": "48.854269",
649
+ "lon": "2.489167"}, "equipments": [], "administrative_regions": [{"id": "admin:129423",
650
+ "level": 8, "name": "Montreuil", "coord": {"lat": "48.862335", "lon": "2.441218"},
651
+ "zip_code": "93100"}, {"id": "admin:130580", "level": 8, "name": "Rosny-sous-Bois",
652
+ "coord": {"lat": "48.876194", "lon": "2.485636"}, "zip_code": "93110"}], "address":
653
+ {"id": "2.489167;48.854269", "house_number": 0, "name": "P\u00e9riph\u00e9rique
654
+ d''\u00cele de France", "coord": {"lat": "48.854269", "lon": "2.489167"}},
655
+ "id": "stop_point:TRN:SP:DUA8711371", "stop_area": {"comment": "", "name":
656
+ "Val de Fontenay", "coord": {"lat": "48.854043", "lon": "2.488553"}, "id":
657
+ "stop_area:RTP:SA:1689"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711371",
658
+ "name": "Val de Fontenay (Montreuil) (Rosny-sous-Bois)"}, "arrival_date_time":
659
+ "20141106T001700", "additional_informations": ["regular"], "geojson": {"type":
660
+ "LineString", "properties": [{"length": 1700}], "coordinates": [[2.489167,
661
+ 48.854269], [2.494188, 48.839342]]}, "display_informations": {"direction":
662
+ "Nogent - Le Perreux (Le Perreux-sur-Marne)", "code": "E", "description":
663
+ "", "color": "BD76A1", "physical_mode": "Train", "headsign": "VOHA", "commercial_mode":
664
+ "Train", "equipments": [], "network": "RER", "label": "E"}, "to": {"embedded_type":
665
+ "stop_point", "stop_point": {"comment": "place du Th\u00e9\u00e2tre 94130
666
+ NOGENT-SUR-MARNE", "name": "Nogent - Le Perreux", "coord": {"lat": "48.839342",
667
+ "lon": "2.494188"}, "equipments": [], "administrative_regions": [{"id": "admin:108312",
668
+ "level": 8, "name": "Le Perreux-sur-Marne", "coord": {"lat": "48.840672",
669
+ "lon": "2.508055"}, "zip_code": "94170"}, {"id": "admin:1936381", "level":
670
+ 10, "name": "Plaisance", "coord": {"lat": "48.842677", "lon": "2.488971"},
671
+ "zip_code": ""}, {"id": "admin:1936380", "level": 10, "name": "Nogent Village",
672
+ "coord": {"lat": "48.837835", "lon": "2.48591"}, "zip_code": ""}], "address":
673
+ {"id": "2.494188;48.839342", "house_number": 0, "name": "", "coord": {"lat":
674
+ "48.839342", "lon": "2.494188"}}, "id": "stop_point:TRN:SP:DUA8711374", "stop_area":
675
+ {"comment": "", "name": "Nogent - Le Perreux", "coord": {"lat": "48.839033",
676
+ "lon": "2.494142"}, "id": "stop_area:TRN:SA:DUA8711374"}}, "quality": 0, "id":
677
+ "stop_point:TRN:SP:DUA8711374", "name": "Nogent - Le Perreux (Le Perreux-sur-Marne)"},
678
+ "type": "public_transport", "stop_date_times": [{"stop_point": {"comment":
679
+ "10 avenue du Val de Fontenay 94120 Fontenay-sous-Bois", "name": "Val de Fontenay",
680
+ "coord": {"lat": "48.854269", "lon": "2.489167"}, "equipments": [], "id":
681
+ "stop_point:TRN:SP:DUA8711371"}, "arrival_date_time": "20141106T001400", "additional_informations":
682
+ [], "links": [], "departure_date_time": "20141106T001500"}, {"stop_point":
683
+ {"comment": "place du Th\u00e9\u00e2tre 94130 NOGENT-SUR-MARNE", "name": "Nogent
684
+ - Le Perreux", "coord": {"lat": "48.839342", "lon": "2.494188"}, "equipments":
685
+ [], "id": "stop_point:TRN:SP:DUA8711374"}, "arrival_date_time": "20141106T001700",
686
+ "additional_informations": [], "links": [], "departure_date_time": "20141106T001700"}]},
687
+ {"links": [], "departure_date_time": "20141106T001700", "duration": 660, "id":
688
+ "section_2_2", "arrival_date_time": "20141106T002800", "additional_informations":
689
+ ["regular"], "type": "waiting"}, {"links": [{"type": "vehicle_journey", "id":
690
+ "vehicle_journey:TRN:DUASN021360R0200137976616314"}, {"type": "line", "id":
691
+ "line:TRN:DUA800804100"}, {"type": "route", "id": "route:TRN:DUA800805500_R"},
692
+ {"type": "commercial_mode", "id": "commercial_mode:bus"}, {"type": "physical_mode",
693
+ "id": "physical_mode:Bus"}, {"type": "network", "id": "network:TN"}], "departure_date_time":
694
+ "20141106T002800", "duration": 3900, "id": "section_3_2", "from": {"embedded_type":
695
+ "stop_point", "stop_point": {"comment": "Avenue Raoul Nordling 77330 Ozoir
696
+ la Ferriere", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770779",
697
+ "lon": "2.690253"}, "equipments": [], "administrative_regions": [{"id": "admin:108312",
698
+ "level": 8, "name": "Le Perreux-sur-Marne", "coord": {"lat": "48.840672",
699
+ "lon": "2.508055"}, "zip_code": "94170"}, {"id": "admin:1936381", "level":
700
+ 10, "name": "Plaisance", "coord": {"lat": "48.842677", "lon": "2.488971"},
701
+ "zip_code": ""}, {"id": "admin:1936380", "level": 10, "name": "Nogent Village",
702
+ "coord": {"lat": "48.837835", "lon": "2.48591"}, "zip_code": ""}, {"id": "admin:403076",
703
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
704
+ "lon": "2.675999"}, "zip_code": "77330"}], "address": {"id": "2.690253;48.770779",
705
+ "house_number": 0, "name": "", "administrative_regions": [{"id": "admin:403076",
706
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
707
+ "lon": "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon":
708
+ "2.690253"}}, "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment":
709
+ "", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon":
710
+ "2.689819"}, "administrative_regions": [{"coord": {"lat": "48.763802", "lon":
711
+ "2.675999"}, "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
712
+ "level": 8}], "id": "stop_area:TRN:SA:DUA8711602"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711602",
713
+ "name": "Ozoir-la-Ferri\u00e8re (Le Perreux-sur-Marne) (Ozoir-la-Ferri\u00e8re)"},
714
+ "arrival_date_time": "20141106T013300", "additional_informations": ["regular"],
715
+ "geojson": {"type": "LineString", "properties": [{"length": 17091}], "coordinates":
716
+ [[2.494188, 48.839342], [2.511856, 48.824849], [2.54268, 48.823267], [2.579837,
717
+ 48.823152], [2.619396, 48.80577], [2.650388, 48.795655], [2.690253, 48.770779]]},
718
+ "display_informations": {"direction": "Tournan (Tournan-en-Brie)", "code":
719
+ "BUS", "description": "", "color": "000000", "physical_mode": "Bus", "headsign":
720
+ "21360", "commercial_mode": "Bus", "equipments": [], "network": "Transilien",
721
+ "label": "BUS"}, "to": {"embedded_type": "stop_point", "stop_point": {"comment":
722
+ "Avenue Raoul Nordling 77330 Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re",
723
+ "coord": {"lat": "48.770779", "lon": "2.690253"}, "equipments": [], "administrative_regions":
724
+ [{"id": "admin:403076", "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord":
725
+ {"lat": "48.763802", "lon": "2.675999"}, "zip_code": "77330"}, {"id": "admin:403076",
726
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
727
+ "lon": "2.675999"}, "zip_code": "77330"}], "address": {"id": "2.690253;48.770779",
728
+ "house_number": 0, "name": "", "administrative_regions": [{"id": "admin:403076",
729
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
730
+ "lon": "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon":
731
+ "2.690253"}}, "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment":
732
+ "", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon":
733
+ "2.689819"}, "administrative_regions": [{"coord": {"lat": "48.763802", "lon":
734
+ "2.675999"}, "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
735
+ "level": 8}], "id": "stop_area:TRN:SA:DUA8711602"}}, "quality": 0, "id": "stop_point:TRN:SP:DUA8711602",
736
+ "name": "Ozoir-la-Ferri\u00e8re (Ozoir-la-Ferri\u00e8re) (Ozoir-la-Ferri\u00e8re)"},
737
+ "type": "public_transport", "stop_date_times": [{"stop_point": {"comment":
738
+ "place du Th\u00e9\u00e2tre 94130 NOGENT-SUR-MARNE", "name": "Nogent - Le
739
+ Perreux", "coord": {"lat": "48.839342", "lon": "2.494188"}, "equipments":
740
+ [], "id": "stop_point:TRN:SP:DUA8711374"}, "arrival_date_time": "20141106T002800",
741
+ "additional_informations": [], "links": [], "departure_date_time": "20141106T002800"},
742
+ {"stop_point": {"comment": "Avenue Danielle Casanova 94500 Champigny sur Marne",
743
+ "name": "Les Boullereaux Champigny", "coord": {"lat": "48.824849", "lon":
744
+ "2.511856"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711377"}, "arrival_date_time":
745
+ "20141106T003800", "additional_informations": [], "links": [], "departure_date_time":
746
+ "20141106T003800"}, {"stop_point": {"comment": "place Pierre S\u00e9mard 94350
747
+ VILLIERS-SUR-MARNE", "name": "Villiers-sur-Marne - Le Plessis-Tr\u00e9vise",
748
+ "coord": {"lat": "48.823267", "lon": "2.54268"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711379"},
749
+ "arrival_date_time": "20141106T004800", "additional_informations": [], "links":
750
+ [], "departure_date_time": "20141106T004800"}, {"stop_point": {"comment":
751
+ "avenue du bois St Martin 93160 Noisy le Grand", "name": "Noisy-le-Grand Les
752
+ Yvris", "coord": {"lat": "48.823152", "lon": "2.579837"}, "equipments": [],
753
+ "id": "stop_point:TRN:SP:DUA8711380"}, "arrival_date_time": "20141106T005800",
754
+ "additional_informations": [], "links": [], "departure_date_time": "20141106T005800"},
755
+ {"stop_point": {"comment": "2 avenue de la gare 77184 Emerainville", "name":
756
+ "\u00c9merainville - Pontault-Combault", "coord": {"lat": "48.80577", "lon":
757
+ "2.619396"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711604"}, "arrival_date_time":
758
+ "20141106T010800", "additional_informations": [], "links": [], "departure_date_time":
759
+ "20141106T010800"}, {"stop_point": {"comment": "Place de la gare 77680 Roissy-en-Brie",
760
+ "name": "Roissy-en-Brie", "coord": {"lat": "48.795655", "lon": "2.650388"},
761
+ "equipments": [], "id": "stop_point:TRN:SP:DUA8711603"}, "arrival_date_time":
762
+ "20141106T011800", "additional_informations": [], "links": [], "departure_date_time":
763
+ "20141106T011800"}, {"stop_point": {"comment": "Avenue Raoul Nordling 77330
764
+ Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770779",
765
+ "lon": "2.690253"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711602"},
766
+ "arrival_date_time": "20141106T013300", "additional_informations": [], "links":
767
+ [], "departure_date_time": "20141106T013300"}]}], "tags": ["standard", "next"],
768
+ "departure_date_time": "20141106T001500", "requested_date_time": "20141105T234600",
769
+ "duration": 4680, "nb_transfers": 1, "arrival_date_time": "20141106T013300",
770
+ "type": "rapid"}], "links": [{"href": "https://api.navitia.io/v1/coverage/fr-idf/journeys?to=stop_point%3ATRN%3ASP%3ADUA8711602&datetime_represents=arrival&from=stop_point%3ATRN%3ASP%3ADUA8711371&min_nb_journeys=3&datetime=20141105T232200",
771
+ "type": "prev", "templated": false}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/journeys?to=stop_point%3ATRN%3ASP%3ADUA8711602&datetime_represents=departure&from=stop_point%3ATRN%3ASP%3ADUA8711371&min_nb_journeys=3&datetime=20141105T230100",
772
+ "type": "next", "templated": false}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/journeys?to=stop_point%3ATRN%3ASP%3ADUA8711602&datetime_represents=departure&from=stop_point%3ATRN%3ASP%3ADUA8711371&min_nb_journeys=3&datetime=20141105T000000",
773
+ "type": "first", "templated": false}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/journeys?to=stop_point%3ATRN%3ASP%3ADUA8711602&datetime_represents=arrival&from=stop_point%3ATRN%3ASP%3ADUA8711371&min_nb_journeys=3&datetime=20141106T235900",
774
+ "type": "last", "templated": false}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/stop_points/{stop_point.id}",
775
+ "rel": "stop_point", "templated": true}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/stop_areas/{stop_area.id}",
776
+ "rel": "stop_area", "templated": true}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/addresses/{address.id}",
777
+ "rel": "address", "templated": true}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/stop_points/{stop_point.id}",
778
+ "rel": "stop_point", "templated": true}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/stop_areas/{stop_area.id}",
779
+ "rel": "stop_area", "templated": true}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/addresses/{address.id}",
780
+ "rel": "address", "templated": true}], "exceptions": [], "notes": []}'
781
+ http_version:
782
+ recorded_at: Wed, 05 Nov 2014 21:44:20 GMT
783
+ - request:
784
+ method: get
785
+ uri: https://95dd16c9-8b0a-406a-aba6-3ab663234cf4:@api.navitia.io/v1/coverage/fr-idf/journeys?datetime=20141107T2159&from=stop_point:TRN:SP:DUA8711371&min_nb_journeys=3&to=stop_point:TRN:SP:DUA8711602
786
+ body:
787
+ encoding: US-ASCII
788
+ string: ''
789
+ headers: {}
790
+ response:
791
+ status:
792
+ code: 200
793
+ message: OK
794
+ headers:
795
+ Date:
796
+ - Fri, 07 Nov 2014 20:59:36 GMT
797
+ Server:
798
+ - Apache
799
+ Vary:
800
+ - Authorization
801
+ Content-Length:
802
+ - '23045'
803
+ Access-Control-Allow-Origin:
804
+ - '*'
805
+ Connection:
806
+ - close
807
+ Content-Type:
808
+ - application/json
809
+ body:
810
+ encoding: UTF-8
811
+ string: '{"tickets": [{"comment": "unknown ticket", "name": "unkown_ticket",
812
+ "links": [{"internal": true, "type": "section", "id": "section_0_0", "rel":
813
+ "sections", "templated": false}], "cost": {"currency": "", "value": "0.0"},
814
+ "found": false, "id": "unknown_ticket_0"}, {"comment": "unknown ticket", "name":
815
+ "unkown_ticket", "links": [{"internal": true, "type": "section", "id": "section_0_1",
816
+ "rel": "sections", "templated": false}], "cost": {"currency": "", "value":
817
+ "0.0"}, "found": false, "id": "unknown_ticket_1"}, {"comment": "unknown ticket",
818
+ "name": "unkown_ticket", "links": [{"internal": true, "type": "section", "id":
819
+ "section_0_2", "rel": "sections", "templated": false}], "cost": {"currency":
820
+ "", "value": "0.0"}, "found": false, "id": "unknown_ticket_2"}], "journeys":
821
+ [{"fare": {"found": false, "total": {"currency": "", "value": "0.0"}, "links":
822
+ [{"internal": true, "type": "ticket", "id": "unknown_ticket_0", "rel": "tickets",
823
+ "templated": false}]}, "sections": [{"links": [{"type": "vehicle_journey",
824
+ "id": "vehicle_journey:TRN:DUASN118651F020043876897335_dst_2"}, {"type": "line",
825
+ "id": "line:TRN:DUA800805400"}, {"type": "route", "id": "route:TRN:DUA800805014_R"},
826
+ {"type": "commercial_mode", "id": "commercial_mode:train"}, {"type": "physical_mode",
827
+ "id": "physical_mode:Train"}, {"type": "network", "id": "network:RER"}, {"internal":
828
+ true, "type": "ticket", "id": "unknown_ticket_0", "rel": "tickets", "templated":
829
+ false}], "departure_date_time": "20141107T220700", "duration": 1260, "id":
830
+ "section_0_0", "from": {"embedded_type": "stop_point", "stop_point": {"comment":
831
+ "Avenue Raoul Nordling 77330 Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re",
832
+ "coord": {"lat": "48.770779", "lon": "2.690253"}, "equipments": [], "administrative_regions":
833
+ [{"id": "admin:129423", "level": 8, "name": "Montreuil", "coord": {"lat":
834
+ "48.862335", "lon": "2.441218"}, "zip_code": "93100"}, {"id": "admin:130580",
835
+ "level": 8, "name": "Rosny-sous-Bois", "coord": {"lat": "48.876194", "lon":
836
+ "2.485636"}, "zip_code": "93110"}, {"id": "admin:403076", "level": 8, "name":
837
+ "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802", "lon": "2.675999"},
838
+ "zip_code": "77330"}], "address": {"id": "2.690253;48.770779", "house_number":
839
+ 0, "name": "", "administrative_regions": [{"id": "admin:403076", "level":
840
+ 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802", "lon":
841
+ "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon": "2.690253"}},
842
+ "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment": "", "name":
843
+ "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon": "2.689819"},
844
+ "administrative_regions": [{"coord": {"lat": "48.763802", "lon": "2.675999"},
845
+ "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
846
+ "level": 8}], "timezone": "Europe/Paris", "id": "stop_area:TRN:SA:DUA8711602"}},
847
+ "quality": 0, "id": "stop_point:TRN:SP:DUA8711602", "name": "Ozoir-la-Ferri\u00e8re"},
848
+ "arrival_date_time": "20141107T222800", "additional_informations": ["regular"],
849
+ "geojson": {"type": "LineString", "properties": [{"length": 17979}], "coordinates":
850
+ [[2.489167, 48.854269], [2.54268, 48.823267], [2.579837, 48.823152], [2.619396,
851
+ 48.80577], [2.650388, 48.795655000000004], [2.690253, 48.770779]]}, "display_informations":
852
+ {"direction": "Tournan (Tournan-en-Brie)", "code": "E", "description": "",
853
+ "color": "BD76A1", "physical_mode": "Train", "headsign": "TAVA", "commercial_mode":
854
+ "Train", "equipments": [], "network": "RER", "label": "E"}, "to": {"embedded_type":
855
+ "stop_point", "stop_point": {"comment": "Avenue Raoul Nordling 77330 Ozoir
856
+ la Ferriere", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770779",
857
+ "lon": "2.690253"}, "equipments": [], "administrative_regions": [{"id": "admin:403076",
858
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
859
+ "lon": "2.675999"}, "zip_code": "77330"}, {"id": "admin:403076", "level":
860
+ 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802", "lon":
861
+ "2.675999"}, "zip_code": "77330"}], "address": {"id": "2.690253;48.770779",
862
+ "house_number": 0, "name": "", "administrative_regions": [{"id": "admin:403076",
863
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
864
+ "lon": "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon":
865
+ "2.690253"}}, "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment":
866
+ "", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon":
867
+ "2.689819"}, "administrative_regions": [{"coord": {"lat": "48.763802", "lon":
868
+ "2.675999"}, "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
869
+ "level": 8}], "timezone": "Europe/Paris", "id": "stop_area:TRN:SA:DUA8711602"}},
870
+ "quality": 0, "id": "stop_point:TRN:SP:DUA8711602", "name": "Ozoir-la-Ferri\u00e8re"},
871
+ "type": "public_transport", "stop_date_times": [{"stop_point": {"comment":
872
+ "10 avenue du Val de Fontenay 94120 Fontenay-sous-Bois", "name": "Val de Fontenay",
873
+ "coord": {"lat": "48.854269", "lon": "2.489167"}, "equipments": [], "id":
874
+ "stop_point:TRN:SP:DUA8711371"}, "arrival_date_time": "20141107T220600", "additional_informations":
875
+ [], "links": [], "departure_date_time": "20141107T220700"}, {"stop_point":
876
+ {"comment": "place Pierre S\u00e9mard 94350 VILLIERS-SUR-MARNE", "name": "Villiers-sur-Marne
877
+ - Le Plessis-Tr\u00e9vise", "coord": {"lat": "48.823267", "lon": "2.54268"},
878
+ "equipments": [], "id": "stop_point:TRN:SP:DUA8711379"}, "arrival_date_time":
879
+ "20141107T221300", "additional_informations": [], "links": [], "departure_date_time":
880
+ "20141107T221400"}, {"stop_point": {"comment": "avenue du bois St Martin 93160
881
+ Noisy le Grand", "name": "Noisy-le-Grand Les Yvris", "coord": {"lat": "48.823152",
882
+ "lon": "2.579837"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711380"},
883
+ "arrival_date_time": "20141107T221700", "additional_informations": [], "links":
884
+ [], "departure_date_time": "20141107T221700"}, {"stop_point": {"comment":
885
+ "2 avenue de la gare 77184 Emerainville", "name": "\u00c9merainville - Pontault-Combault",
886
+ "coord": {"lat": "48.80577", "lon": "2.619396"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711604"},
887
+ "arrival_date_time": "20141107T222000", "additional_informations": [], "links":
888
+ [], "departure_date_time": "20141107T222100"}, {"stop_point": {"comment":
889
+ "Place de la gare 77680 Roissy-en-Brie", "name": "Roissy-en-Brie", "coord":
890
+ {"lat": "48.795655", "lon": "2.650388"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711603"},
891
+ "arrival_date_time": "20141107T222400", "additional_informations": [], "links":
892
+ [], "departure_date_time": "20141107T222400"}, {"stop_point": {"comment":
893
+ "Avenue Raoul Nordling 77330 Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re",
894
+ "coord": {"lat": "48.770779", "lon": "2.690253"}, "equipments": [], "id":
895
+ "stop_point:TRN:SP:DUA8711602"}, "arrival_date_time": "20141107T222800", "additional_informations":
896
+ [], "links": [], "departure_date_time": "20141107T222800"}]}], "tags": ["standard"],
897
+ "departure_date_time": "20141107T220700", "requested_date_time": "20141107T215900",
898
+ "duration": 1260, "nb_transfers": 0, "arrival_date_time": "20141107T222800",
899
+ "type": "best"}, {"fare": {"found": false, "total": {"currency": "", "value":
900
+ "0.0"}, "links": [{"internal": true, "type": "ticket", "id": "unknown_ticket_1",
901
+ "rel": "tickets", "templated": false}]}, "sections": [{"links": [{"type":
902
+ "vehicle_journey", "id": "vehicle_journey:TRN:DUASN118817F010033877087347_dst_2"},
903
+ {"type": "line", "id": "line:TRN:DUA800805400"}, {"type": "route", "id": "route:TRN:DUA800805014_R"},
904
+ {"type": "commercial_mode", "id": "commercial_mode:train"}, {"type": "physical_mode",
905
+ "id": "physical_mode:Train"}, {"type": "network", "id": "network:RER"}, {"internal":
906
+ true, "type": "ticket", "id": "unknown_ticket_1", "rel": "tickets", "templated":
907
+ false}], "departure_date_time": "20141107T223000", "duration": 1380, "id":
908
+ "section_0_1", "from": {"embedded_type": "stop_point", "stop_point": {"comment":
909
+ "Avenue Raoul Nordling 77330 Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re",
910
+ "coord": {"lat": "48.770779", "lon": "2.690253"}, "equipments": [], "administrative_regions":
911
+ [{"id": "admin:129423", "level": 8, "name": "Montreuil", "coord": {"lat":
912
+ "48.862335", "lon": "2.441218"}, "zip_code": "93100"}, {"id": "admin:130580",
913
+ "level": 8, "name": "Rosny-sous-Bois", "coord": {"lat": "48.876194", "lon":
914
+ "2.485636"}, "zip_code": "93110"}, {"id": "admin:403076", "level": 8, "name":
915
+ "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802", "lon": "2.675999"},
916
+ "zip_code": "77330"}], "address": {"id": "2.690253;48.770779", "house_number":
917
+ 0, "name": "", "administrative_regions": [{"id": "admin:403076", "level":
918
+ 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802", "lon":
919
+ "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon": "2.690253"}},
920
+ "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment": "", "name":
921
+ "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon": "2.689819"},
922
+ "administrative_regions": [{"coord": {"lat": "48.763802", "lon": "2.675999"},
923
+ "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
924
+ "level": 8}], "timezone": "Europe/Paris", "id": "stop_area:TRN:SA:DUA8711602"}},
925
+ "quality": 0, "id": "stop_point:TRN:SP:DUA8711602", "name": "Ozoir-la-Ferri\u00e8re"},
926
+ "arrival_date_time": "20141107T225300", "additional_informations": ["regular"],
927
+ "geojson": {"type": "LineString", "properties": [{"length": 18791}], "coordinates":
928
+ [[2.489167, 48.854269], [2.494188, 48.839342], [2.511856, 48.824849], [2.54268,
929
+ 48.823267], [2.579837, 48.823152], [2.619396, 48.80577], [2.650388, 48.795655000000004],
930
+ [2.690253, 48.770779]]}, "display_informations": {"direction": "Tournan (Tournan-en-Brie)",
931
+ "code": "E", "description": "", "color": "BD76A1", "physical_mode": "Train",
932
+ "headsign": "TOHA", "commercial_mode": "Train", "equipments": [], "network":
933
+ "RER", "label": "E"}, "to": {"embedded_type": "stop_point", "stop_point":
934
+ {"comment": "Avenue Raoul Nordling 77330 Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re",
935
+ "coord": {"lat": "48.770779", "lon": "2.690253"}, "equipments": [], "administrative_regions":
936
+ [{"id": "admin:403076", "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord":
937
+ {"lat": "48.763802", "lon": "2.675999"}, "zip_code": "77330"}, {"id": "admin:403076",
938
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
939
+ "lon": "2.675999"}, "zip_code": "77330"}], "address": {"id": "2.690253;48.770779",
940
+ "house_number": 0, "name": "", "administrative_regions": [{"id": "admin:403076",
941
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
942
+ "lon": "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon":
943
+ "2.690253"}}, "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment":
944
+ "", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon":
945
+ "2.689819"}, "administrative_regions": [{"coord": {"lat": "48.763802", "lon":
946
+ "2.675999"}, "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
947
+ "level": 8}], "timezone": "Europe/Paris", "id": "stop_area:TRN:SA:DUA8711602"}},
948
+ "quality": 0, "id": "stop_point:TRN:SP:DUA8711602", "name": "Ozoir-la-Ferri\u00e8re"},
949
+ "type": "public_transport", "stop_date_times": [{"stop_point": {"comment":
950
+ "10 avenue du Val de Fontenay 94120 Fontenay-sous-Bois", "name": "Val de Fontenay",
951
+ "coord": {"lat": "48.854269", "lon": "2.489167"}, "equipments": [], "id":
952
+ "stop_point:TRN:SP:DUA8711371"}, "arrival_date_time": "20141107T222900", "additional_informations":
953
+ [], "links": [], "departure_date_time": "20141107T223000"}, {"stop_point":
954
+ {"comment": "place du Th\u00e9\u00e2tre 94130 NOGENT-SUR-MARNE", "name": "Nogent
955
+ - Le Perreux", "coord": {"lat": "48.839342", "lon": "2.494188"}, "equipments":
956
+ [], "id": "stop_point:TRN:SP:DUA8711374"}, "arrival_date_time": "20141107T223200",
957
+ "additional_informations": [], "links": [], "departure_date_time": "20141107T223300"},
958
+ {"stop_point": {"comment": "Avenue Danielle Casanova 94500 Champigny sur Marne",
959
+ "name": "Les Boullereaux Champigny", "coord": {"lat": "48.824849", "lon":
960
+ "2.511856"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711377"}, "arrival_date_time":
961
+ "20141107T223600", "additional_informations": [], "links": [], "departure_date_time":
962
+ "20141107T223600"}, {"stop_point": {"comment": "place Pierre S\u00e9mard 94350
963
+ VILLIERS-SUR-MARNE", "name": "Villiers-sur-Marne - Le Plessis-Tr\u00e9vise",
964
+ "coord": {"lat": "48.823267", "lon": "2.54268"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711379"},
965
+ "arrival_date_time": "20141107T223900", "additional_informations": [], "links":
966
+ [], "departure_date_time": "20141107T224000"}, {"stop_point": {"comment":
967
+ "avenue du bois St Martin 93160 Noisy le Grand", "name": "Noisy-le-Grand Les
968
+ Yvris", "coord": {"lat": "48.823152", "lon": "2.579837"}, "equipments": [],
969
+ "id": "stop_point:TRN:SP:DUA8711380"}, "arrival_date_time": "20141107T224300",
970
+ "additional_informations": [], "links": [], "departure_date_time": "20141107T224300"},
971
+ {"stop_point": {"comment": "2 avenue de la gare 77184 Emerainville", "name":
972
+ "\u00c9merainville - Pontault-Combault", "coord": {"lat": "48.80577", "lon":
973
+ "2.619396"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711604"}, "arrival_date_time":
974
+ "20141107T224600", "additional_informations": [], "links": [], "departure_date_time":
975
+ "20141107T224700"}, {"stop_point": {"comment": "Place de la gare 77680 Roissy-en-Brie",
976
+ "name": "Roissy-en-Brie", "coord": {"lat": "48.795655", "lon": "2.650388"},
977
+ "equipments": [], "id": "stop_point:TRN:SP:DUA8711603"}, "arrival_date_time":
978
+ "20141107T224900", "additional_informations": [], "links": [], "departure_date_time":
979
+ "20141107T225000"}, {"stop_point": {"comment": "Avenue Raoul Nordling 77330
980
+ Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770779",
981
+ "lon": "2.690253"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711602"},
982
+ "arrival_date_time": "20141107T225300", "additional_informations": [], "links":
983
+ [], "departure_date_time": "20141107T225400"}]}], "tags": ["standard", "next"],
984
+ "departure_date_time": "20141107T223000", "requested_date_time": "20141107T220800",
985
+ "duration": 1380, "nb_transfers": 0, "arrival_date_time": "20141107T225300",
986
+ "type": "rapid"}, {"fare": {"found": false, "total": {"currency": "", "value":
987
+ "0.0"}, "links": [{"internal": true, "type": "ticket", "id": "unknown_ticket_2",
988
+ "rel": "tickets", "templated": false}]}, "sections": [{"links": [{"type":
989
+ "vehicle_journey", "id": "vehicle_journey:TRN:DUASN118837F010023876807296_dst_2"},
990
+ {"type": "line", "id": "line:TRN:DUA800805400"}, {"type": "route", "id": "route:TRN:DUA800805014_R"},
991
+ {"type": "commercial_mode", "id": "commercial_mode:train"}, {"type": "physical_mode",
992
+ "id": "physical_mode:Train"}, {"type": "network", "id": "network:RER"}, {"internal":
993
+ true, "type": "ticket", "id": "unknown_ticket_2", "rel": "tickets", "templated":
994
+ false}], "departure_date_time": "20141107T230000", "duration": 1380, "id":
995
+ "section_0_2", "from": {"embedded_type": "stop_point", "stop_point": {"comment":
996
+ "Avenue Raoul Nordling 77330 Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re",
997
+ "coord": {"lat": "48.770779", "lon": "2.690253"}, "equipments": [], "administrative_regions":
998
+ [{"id": "admin:129423", "level": 8, "name": "Montreuil", "coord": {"lat":
999
+ "48.862335", "lon": "2.441218"}, "zip_code": "93100"}, {"id": "admin:130580",
1000
+ "level": 8, "name": "Rosny-sous-Bois", "coord": {"lat": "48.876194", "lon":
1001
+ "2.485636"}, "zip_code": "93110"}, {"id": "admin:403076", "level": 8, "name":
1002
+ "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802", "lon": "2.675999"},
1003
+ "zip_code": "77330"}], "address": {"id": "2.690253;48.770779", "house_number":
1004
+ 0, "name": "", "administrative_regions": [{"id": "admin:403076", "level":
1005
+ 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802", "lon":
1006
+ "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon": "2.690253"}},
1007
+ "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment": "", "name":
1008
+ "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon": "2.689819"},
1009
+ "administrative_regions": [{"coord": {"lat": "48.763802", "lon": "2.675999"},
1010
+ "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
1011
+ "level": 8}], "timezone": "Europe/Paris", "id": "stop_area:TRN:SA:DUA8711602"}},
1012
+ "quality": 0, "id": "stop_point:TRN:SP:DUA8711602", "name": "Ozoir-la-Ferri\u00e8re"},
1013
+ "arrival_date_time": "20141107T232300", "additional_informations": ["regular"],
1014
+ "geojson": {"type": "LineString", "properties": [{"length": 18791}], "coordinates":
1015
+ [[2.489167, 48.854269], [2.494188, 48.839342], [2.511856, 48.824849], [2.54268,
1016
+ 48.823267], [2.579837, 48.823152], [2.619396, 48.80577], [2.650388, 48.795655000000004],
1017
+ [2.690253, 48.770779]]}, "display_informations": {"direction": "Tournan (Tournan-en-Brie)",
1018
+ "code": "E", "description": "", "color": "BD76A1", "physical_mode": "Train",
1019
+ "headsign": "TOHA", "commercial_mode": "Train", "equipments": [], "network":
1020
+ "RER", "label": "E"}, "to": {"embedded_type": "stop_point", "stop_point":
1021
+ {"comment": "Avenue Raoul Nordling 77330 Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re",
1022
+ "coord": {"lat": "48.770779", "lon": "2.690253"}, "equipments": [], "administrative_regions":
1023
+ [{"id": "admin:403076", "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord":
1024
+ {"lat": "48.763802", "lon": "2.675999"}, "zip_code": "77330"}, {"id": "admin:403076",
1025
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
1026
+ "lon": "2.675999"}, "zip_code": "77330"}], "address": {"id": "2.690253;48.770779",
1027
+ "house_number": 0, "name": "", "administrative_regions": [{"id": "admin:403076",
1028
+ "level": 8, "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.763802",
1029
+ "lon": "2.675999"}, "zip_code": "77330"}], "coord": {"lat": "48.770779", "lon":
1030
+ "2.690253"}}, "id": "stop_point:TRN:SP:DUA8711602", "stop_area": {"comment":
1031
+ "", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770601", "lon":
1032
+ "2.689819"}, "administrative_regions": [{"coord": {"lat": "48.763802", "lon":
1033
+ "2.675999"}, "zip_code": "77330", "id": "admin:403076", "name": "Ozoir-la-Ferri\u00e8re",
1034
+ "level": 8}], "timezone": "Europe/Paris", "id": "stop_area:TRN:SA:DUA8711602"}},
1035
+ "quality": 0, "id": "stop_point:TRN:SP:DUA8711602", "name": "Ozoir-la-Ferri\u00e8re"},
1036
+ "type": "public_transport", "stop_date_times": [{"stop_point": {"comment":
1037
+ "10 avenue du Val de Fontenay 94120 Fontenay-sous-Bois", "name": "Val de Fontenay",
1038
+ "coord": {"lat": "48.854269", "lon": "2.489167"}, "equipments": [], "id":
1039
+ "stop_point:TRN:SP:DUA8711371"}, "arrival_date_time": "20141107T225900", "additional_informations":
1040
+ [], "links": [], "departure_date_time": "20141107T230000"}, {"stop_point":
1041
+ {"comment": "place du Th\u00e9\u00e2tre 94130 NOGENT-SUR-MARNE", "name": "Nogent
1042
+ - Le Perreux", "coord": {"lat": "48.839342", "lon": "2.494188"}, "equipments":
1043
+ [], "id": "stop_point:TRN:SP:DUA8711374"}, "arrival_date_time": "20141107T230200",
1044
+ "additional_informations": [], "links": [], "departure_date_time": "20141107T230300"},
1045
+ {"stop_point": {"comment": "Avenue Danielle Casanova 94500 Champigny sur Marne",
1046
+ "name": "Les Boullereaux Champigny", "coord": {"lat": "48.824849", "lon":
1047
+ "2.511856"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711377"}, "arrival_date_time":
1048
+ "20141107T230600", "additional_informations": [], "links": [], "departure_date_time":
1049
+ "20141107T230600"}, {"stop_point": {"comment": "place Pierre S\u00e9mard 94350
1050
+ VILLIERS-SUR-MARNE", "name": "Villiers-sur-Marne - Le Plessis-Tr\u00e9vise",
1051
+ "coord": {"lat": "48.823267", "lon": "2.54268"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711379"},
1052
+ "arrival_date_time": "20141107T230900", "additional_informations": [], "links":
1053
+ [], "departure_date_time": "20141107T231000"}, {"stop_point": {"comment":
1054
+ "avenue du bois St Martin 93160 Noisy le Grand", "name": "Noisy-le-Grand Les
1055
+ Yvris", "coord": {"lat": "48.823152", "lon": "2.579837"}, "equipments": [],
1056
+ "id": "stop_point:TRN:SP:DUA8711380"}, "arrival_date_time": "20141107T231300",
1057
+ "additional_informations": [], "links": [], "departure_date_time": "20141107T231300"},
1058
+ {"stop_point": {"comment": "2 avenue de la gare 77184 Emerainville", "name":
1059
+ "\u00c9merainville - Pontault-Combault", "coord": {"lat": "48.80577", "lon":
1060
+ "2.619396"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711604"}, "arrival_date_time":
1061
+ "20141107T231600", "additional_informations": [], "links": [], "departure_date_time":
1062
+ "20141107T231700"}, {"stop_point": {"comment": "Place de la gare 77680 Roissy-en-Brie",
1063
+ "name": "Roissy-en-Brie", "coord": {"lat": "48.795655", "lon": "2.650388"},
1064
+ "equipments": [], "id": "stop_point:TRN:SP:DUA8711603"}, "arrival_date_time":
1065
+ "20141107T231900", "additional_informations": [], "links": [], "departure_date_time":
1066
+ "20141107T232000"}, {"stop_point": {"comment": "Avenue Raoul Nordling 77330
1067
+ Ozoir la Ferriere", "name": "Ozoir-la-Ferri\u00e8re", "coord": {"lat": "48.770779",
1068
+ "lon": "2.690253"}, "equipments": [], "id": "stop_point:TRN:SP:DUA8711602"},
1069
+ "arrival_date_time": "20141107T232300", "additional_informations": [], "links":
1070
+ [], "departure_date_time": "20141107T232400"}]}], "tags": ["standard", "next"],
1071
+ "departure_date_time": "20141107T230000", "requested_date_time": "20141107T223100",
1072
+ "duration": 1380, "nb_transfers": 0, "arrival_date_time": "20141107T232300",
1073
+ "type": "rapid"}], "links": [{"href": "https://api.navitia.io/v1/coverage/fr-idf/journeys?to=stop_point%3ATRN%3ASP%3ADUA8711602&datetime_represents=arrival&from=stop_point%3ATRN%3ASP%3ADUA8711371&min_nb_journeys=3&datetime=20141107T222700",
1074
+ "type": "prev", "templated": false}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/journeys?to=stop_point%3ATRN%3ASP%3ADUA8711602&datetime_represents=departure&from=stop_point%3ATRN%3ASP%3ADUA8711371&min_nb_journeys=3&datetime=20141107T220800",
1075
+ "type": "next", "templated": false}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/journeys?to=stop_point%3ATRN%3ASP%3ADUA8711602&datetime_represents=departure&from=stop_point%3ATRN%3ASP%3ADUA8711371&min_nb_journeys=3&datetime=20141107T000000",
1076
+ "type": "first", "templated": false}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/journeys?to=stop_point%3ATRN%3ASP%3ADUA8711602&datetime_represents=arrival&from=stop_point%3ATRN%3ASP%3ADUA8711371&min_nb_journeys=3&datetime=20141107T235900",
1077
+ "type": "last", "templated": false}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/stop_points/{stop_point.id}",
1078
+ "rel": "stop_point", "templated": true}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/stop_areas/{stop_area.id}",
1079
+ "rel": "stop_area", "templated": true}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/addresses/{address.id}",
1080
+ "rel": "address", "templated": true}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/stop_points/{stop_point.id}",
1081
+ "rel": "stop_point", "templated": true}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/stop_areas/{stop_area.id}",
1082
+ "rel": "stop_area", "templated": true}, {"href": "https://api.navitia.io/v1/coverage/fr-idf/addresses/{address.id}",
1083
+ "rel": "address", "templated": true}], "exceptions": [], "notes": []}'
1084
+ http_version:
1085
+ recorded_at: Fri, 07 Nov 2014 20:59:37 GMT
1086
+ recorded_with: VCR 2.9.3