Index: trunk/src/org/openstreetmap/josm/data/gpx/GpxConstants.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/gpx/GpxConstants.java	(revision 15247)
+++ trunk/src/org/openstreetmap/josm/data/gpx/GpxConstants.java	(revision 15249)
@@ -199,4 +199,4 @@
      * The ratio factor of ʺratio‐testʺ for standard integer ambiguity validation strategy.
      * The value means the ratio of the squared sum of the residuals with the second best integer vector to with the best integer vector. */
-    String RTKLIB_RATIO = "ration";
+    String RTKLIB_RATIO = "ratio";
 }
Index: trunk/src/org/openstreetmap/josm/gui/layer/gpx/ConvertFromGpxLayerAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/layer/gpx/ConvertFromGpxLayerAction.java	(revision 15247)
+++ trunk/src/org/openstreetmap/josm/gui/layer/gpx/ConvertFromGpxLayerAction.java	(revision 15249)
@@ -68,13 +68,10 @@
                         String key = entry.getKey();
                         Object obj = p.get(key);
-                        if (check && !keys.contains(key) && (obj instanceof String || obj instanceof Date)) {
+                        if (check && !keys.contains(key) && (obj instanceof String || obj instanceof Number || obj instanceof Date)) {
                             keys.add(key);
                         }
-                        if (obj instanceof String) {
-                            String str = (String) obj;
-                            if (!none) {
-                                // only convert when required
-                                n.put(key, str);
-                            }
+                        if (!none && (obj instanceof String || obj instanceof Number)) {
+                            // only convert when required
+                            n.put(key, obj.toString());
                         } else if (obj instanceof Date && GpxConstants.PT_TIME.equals(key)) {
                             // timestamps should always be converted
