Index: route_mgr.cxx
===================================================================
RCS file: /var/cvs/FlightGear-0.9/source/src/Autopilot/route_mgr.cxx,v
retrieving revision 1.16
diff -B -b -w -i -U 3 -r1.16 route_mgr.cxx
--- route_mgr.cxx	14 May 2006 11:14:49 -0000	1.16
+++ route_mgr.cxx	5 Aug 2007 07:20:49 -0000
@@ -384,6 +384,14 @@
         prop->setDoubleValue("latitude-deg", wp.get_target_lat());
         prop->setDoubleValue("altitude-m", wp.get_target_alt());
         prop->setDoubleValue("altitude-ft", wp.get_target_alt() * SG_METER_TO_FEET);
+
+        char tmpid[5];
+        strncpy( tmpid, wp.get_id().c_str(), 5 );
+        prop->setIntValue("id_asc1",(int)tmpid[0] );
+        prop->setIntValue("id_asc2",(int)tmpid[1] );
+        prop->setIntValue("id_asc3",(int)tmpid[2] );
+        prop->setIntValue("id_asc4",(int)tmpid[3] );
+
     }
     // set number as listener attachment point
     mirror->setIntValue("num", route->size());
