@prefix k: <http://opencyc.sourceforge.net/daml/cyc.daml#> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>.
@prefix map: <http://www.w3.org/2000/10/swap/pim/earthMap#>.
@prefix str: <http://www.w3.org/2000/10/swap/string#>.
@prefix log: <http://www.w3.org/2000/10/swap/log#>.


k:fromLocation a <#ArLv>.
k:toLocation a <#ArLv>.

{ 
  ?P a <#ArLv>.
  [] k:subEvents [
    ?P [ geo:lat ?LAT; geo:long ?LONG; map:cityName ?N ] ].

  (?LAT " " ?LONG " \"" ?N "\" color=blue\n") str:concatenation ?TXT.
}
 => {
 ?N log:outputString ?TXT
 }.
