Skip to content

Instantly share code, notes, and snippets.

@mebibou
mebibou / simple-map
Created August 18, 2013 07:29
simple map
== The setup
This is a simple map.
//setup
//hide
[source,cypher]
----
CREATE (s1:Stop {name:"First Stop"})
CREATE (s2:Stop {name:"Second Stop"})
@mebibou
mebibou / simple-map-shortcut
Last active December 21, 2015 05:58
simple map with shortcut
== The setup
This is a map that contains a 'shortcut' from s1 to s4 (without going through s2 and s3).
//setup
//hide
[source,cypher]
----
CREATE (s1:Stop {name:"First Stop"})
CREATE (s2:Stop {name:"Second Stop"})
@mebibou
mebibou / train-map
Last active December 20, 2015 09:59
Paris' RER A train map
= Bus line network and routing
http://www.ratp.fr/informer/pdf/orienter/f_plan.php?loc=reseaux&nompdf=rer_a&fm=gif
== The setup
This is the bus network for one Bus line `21` with a number of bus stops.
//setup
//hide