New release: version 2.3
bringing Velib back :D
It’s based on the OpenDataParis. It has some downsides, but it should improve in the coming weeks I hope: some stations are missing, the information on electric bikes is not available, some information is not real time…
As before, you can set a graph showing the past day trend (always nice to know how much bikes are coming in and out of station around the time you leave).
Read the statement by Michael Teeuw here.
Posts made by da4throux
-
RE: MMM-Paris-RATP-PG - Paris: Bus, Metro, RER, Tramway & Velib
-
RE: MMM-Paris-RATP-PG - Paris: Bus, Metro, RER, Tramway & Velib
@polzy
merci beaucoup.
bien sûr il peut s’adapter à beaucoup de type d’échanges avec API.
Si tu regardes sur github, tu verras plusieurs Forks du projet, dont un pour Toulouse par example :D
Mon projet est aussi forké d’un projet transport d’une autre ville.
Par contre le mien a évolué pour pouvoir gérer plusieurs APIs plus facilement, car je voulais faire un module multi-modal (pas que la RATP).En plus: la partie prédiction des pluies dans l’heure reste utilisable en l’état partout en France, il suffit de lui indiquer le “bon” lieu :D
-
RE: MMM-Paris-RATP-PG - Paris: Bus, Metro, RER, Tramway & Velib
New double release: version 2.1 and 2.2.
- 2.1: possibility some status if they are part of the config (use case: hide normal traffic, and known incident - ex: line stop in the evening until march for ground work…)
- 2.2: autolib station (possibility to hide or show car types (utilib .9 & 1.4); possibility to set a list of backup stations (use case: show those stations only if the one nearest to my place is empty)
-
RE: MMM-Paris-RATP-PG - Paris: Bus, Metro, RER, Tramway & Velib
New release: version 2.0. a few bugs corrected, but especially: adding the risk of rain within the next hour (from Meteo France): I know it’s a bit outside the scope of the product, but it’s really what I want to know when I leave my place: is my bus coming soon, will it rain … And also the possibility to color the transport name, and/or the whole line.
I did some re-architecturing that should allow me to add Autolib, RER, and the new Velib more easily in the coming future. -
RE: Can't make MMM-Paris-RATP-PG work
@Chris
Hi,
just as a note, this is a config for a different module. To do a similar check with this module you would do:{ module: 'MMM-Paris-RATP-PG', position: 'top_left', header: 'Chris', config: { busStations: [ {type: 'bus', line: 147, stations: 'mairie+de+livry+++gargan', destination: 'R'} ] } },
-
RE: Can't make MMM-Paris-RATP-PG work
@Jab
Hi, thanks for giving the module a try.
the busStations element in your config seems to only as for traffic information, for those 3 lines.
N/A is typically what I get when there is no traffic in the night for example.
I checked with a similar config{ module: 'MMM-Paris-RATP-PG', position: 'bottom_right', header: 'Test Config', config: { busStations: [ {type: 'traffic', line: ['rers','A']}, {type: 'traffic', line: ['metros','3']}, {type: 'traffic', line: ['metros','9']} ], pluiePlaces: [{id: '751140', name: 'Home'}], pluieUpdateInterval: 1 * 5 * 60 * 1000, //default is 10 minutes, make it 5 (minimum update time) }
and get: three Traffic OK.
So that might have been the time you worked on it maybe ?
Out of curiosity how did you resolve your first issue of “Loading Connection” ? -
RE: Can't make MMM-Paris-RATP-PG work
@AFCM
It sounds like a connectivity issue.
1st step: Do the standard modules work: not setting the RATP, but for example the weather module ?
2nd step: if it worked, then add the RATP module, also add ‘debug:true’ in the config also, and share the browser console, this will probably give some more hint. -
RE: Can't make MMM-Paris-RATP-PG work
Hi @AFCM , so did you try something from the suggestions of the github readme file,
like just with one bus for example:
config:{
busStations: {api: ‘v3’, type: ‘bus’, line: 38, stations: ‘observatoire+++port+royal’, destination: ‘A’}
}Would it be working on your setup ?
-
RE: Not updating after network lost
@retroflex I think I have a similar issue, did @rcollie suggestion solved the issue for you ?
-
RE: Face recognition recognizing anyone as me
@saifkazi I just checked to see if I still have the code but it’s gone with a module update :(
basically, I think I just modified capture.py in MMM-Facial-Recognition-Tools, and added a loop around the capture.capture(preview) with a wait time of 3 seconds (you get to see if the process was successful in the shell).Hope that help