Index: trunk/BNC/bncgetthread.cpp
===================================================================
--- trunk/BNC/bncgetthread.cpp	(revision 1574)
+++ trunk/BNC/bncgetthread.cpp	(revision 1575)
@@ -505,6 +505,6 @@
     if ( _miscMount == _staID || _miscMount == "ALL" ) {
 
-      // RTCMv3 message types
-      // --------------------
+      // RTCM message types
+      // ------------------
       for (int ii = 0; ii <_decoder->_typeList.size(); ii++) {
         QString type =  QString("%1 ").arg(_decoder->_typeList[ii]);
@@ -519,6 +519,6 @@
       }
 
-      // Antenna Coordinates
-      // -------------------
+      // RTCM Antenna Coordinates
+      // ------------------------
       for (int ii=0; ii <_decoder->_antList.size(); ii++) {
         QByteArray antT;
@@ -529,4 +529,15 @@
           antT = "APC";
         }
+        QByteArray ant1, ant2, ant3;
+        ant1 = QString("%1 ").arg(_decoder->_antList[ii].xx,0,'f',4).toAscii();
+        ant2 = QString("%1 ").arg(_decoder->_antList[ii].yy,0,'f',4).toAscii();
+        ant3 = QString("%1 ").arg(_decoder->_antList[ii].zz,0,'f',4).toAscii();
+        emit(newMessage(_staID + ": " + antT + " (ITRF) X " + ant1 + "m", true));
+        emit(newMessage(_staID + ": " + antT + " (ITRF) Y " + ant2 + "m", true));
+        emit(newMessage(_staID + ": " + antT + " (ITRF) Z " + ant3 + "m", true));
+        if (_decoder->_antList[ii].height_f) {
+          QByteArray ant4 = QString("%1 ").arg(_decoder->_antList[ii].height,0,'f',4).toAscii();
+          emit(newMessage(_staID + ": Antenna height above marker "  + ant4 + "m", true));
+        }
         emit(newAntCrd(_staID, _decoder->_antList[ii].xx, 
                        _decoder->_antList[ii].yy, _decoder->_antList[ii].zz, 
@@ -535,5 +546,5 @@
     }
   }
-      
+
   _decoder->_typeList.clear();
   _decoder->_antType.clear();
Index: trunk/BNC/bncnetqueryv1.cpp
===================================================================
--- trunk/BNC/bncnetqueryv1.cpp	(revision 1574)
+++ trunk/BNC/bncnetqueryv1.cpp	(revision 1575)
@@ -68,5 +68,5 @@
         _socket = 0;
         _status = error;
-        emit newMessage(_url.path().toAscii() + " read timeout", true);
+        emit newMessage(_url.path().toAscii() + ": Read timeout", true);
         return;
       }
@@ -149,5 +149,5 @@
     _socket = 0;
     _status = error;
-    emit newMessage(_url.path().toAscii() + " write timeout", true);
+    emit newMessage(_url.path().toAscii() + ": Write timeout", true);
     return;
   }
@@ -161,5 +161,5 @@
       _socket = 0;
       _status = error;
-      emit newMessage(_url.path().toAscii() + " response timeout", true);
+      emit newMessage(_url.path().toAscii() + ": Response timeout", true);
       return;
     }
@@ -181,6 +181,6 @@
     _socket = 0;
     _status = error;
-    emit newMessage(_url.path().toAscii() + " wrong caster response\n" +
-                    response.join("\n").toAscii(), true);
+    emit newMessage(_url.path().toAscii() + ": Wrong caster response\n" +
+                    response.join("").toAscii(), true);
   }
 }
