Index: applications/editors/josm/plugins/seachart/src/render/Rules.java
===================================================================
--- applications/editors/josm/plugins/seachart/src/render/Rules.java	(revision 34993)
+++ applications/editors/josm/plugins/seachart/src/render/Rules.java	(revision 35086)
@@ -1038,4 +1038,5 @@
 			}
 			Signals.addSignals();
+            addName(15, new Font("Arial", Font.BOLD, 40), new Delta(Handle.BL, AffineTransform.getTranslateInstance(60, -50)));
 		}
 	}
@@ -1340,10 +1341,10 @@
 						Renderer.lineVector(new LineStyle(Color.black, 10, new float[] { 40, 40 }, null));
 						if (Renderer.zoom >= 15)
-							Renderer.lineText("(covers)", new Font("Arial", Font.PLAIN, 60), Color.black, 80);
+							Renderer.lineText("(covers)", new Font("Arial", Font.PLAIN, 40), Color.black, 80);
 					} else {
 						Renderer.lineVector(new LineStyle(Color.black, 10, null, null));
 					}
 					if (Renderer.zoom >= 15)
-						Renderer.lineText("Training Wall", new Font("Arial", Font.PLAIN, 60), Color.black, -30);
+						Renderer.lineText("Training Wall", new Font("Arial", Font.PLAIN, 40), Color.black, -30);
 					break;
 				case SLC_SWAY:
Index: applications/editors/josm/plugins/seachart/src/render/Signals.java
===================================================================
--- applications/editors/josm/plugins/seachart/src/render/Signals.java	(revision 34993)
+++ applications/editors/josm/plugins/seachart/src/render/Signals.java	(revision 35086)
@@ -208,27 +208,29 @@
 			CatRTB cat = (CatRTB) getAttEnum(Obj.RTPBCN, Att.CATRTB);
 			String wal = getAttStr(Obj.RTPBCN, Att.RADWAL);
-			switch (cat) {
-			case RTB_RAMK:
-				bstr += " Ramark";
-				break;
-			case RTB_RACN:
-				bstr += " Racon";
-				String astr = getAttStr(Obj.RTPBCN, Att.SIGGRP);
-				if (!astr.isEmpty()) {
-					bstr += "(" + astr + ")";
-				}
-				Double per = (Double) getAttVal(Obj.RTPBCN, Att.SIGPER);
-				Double mxr = (Double) getAttVal(Obj.RTPBCN, Att.VALMXR);
-				if ((per != null) || (mxr != null)) {
-					bstr += (astr.isEmpty() ? " " : "");
-					if (per != null)
-						bstr += (per != 0) ? per.toString() + "s" : "";
-					if (mxr != null)
-						bstr += (mxr != 0) ? mxr.toString() + "M" : "";
-				}
-				break;
-			default:
-				break;
-			}
+            if ((cat == CatRTB.RTB_RAMK) || (cat == CatRTB.RTB_RACN)) {
+                switch (cat) {
+                case RTB_RAMK:
+                    bstr += " Ramark";
+                    break;
+                case RTB_RACN:
+                    bstr += " Racon";
+                    break;
+                default:
+                    break;
+                }
+                String astr = getAttStr(Obj.RTPBCN, Att.SIGGRP);
+                if (!astr.isEmpty()) {
+                    bstr += "(" + astr + ")";
+                }
+                Double per = (Double) getAttVal(Obj.RTPBCN, Att.SIGPER);
+                Double mxr = (Double) getAttVal(Obj.RTPBCN, Att.VALMXR);
+                if ((per != null) || (mxr != null)) {
+                    bstr += (astr.isEmpty() ? " " : "");
+                    if (per != null)
+                        bstr += (per != 0) ? per.toString() + "s" : "";
+                    if (mxr != null)
+                        bstr += (mxr != 0) ? mxr.toString() + "M" : "";
+                }
+            }
 			if (!wal.isEmpty()) {
 				switch (wal) {
