Index: trunk/src/org/openstreetmap/josm/io/imagery/ImageryReader.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/imagery/ImageryReader.java	(revision 4438)
+++ trunk/src/org/openstreetmap/josm/io/imagery/ImageryReader.java	(revision 4439)
@@ -40,6 +40,6 @@
         ENTRY,              // inside an entry
         ENTRY_ATTRIBUTE,    // note we are inside an entry attribute to collect the character data
-        SUPPORTED_PROJECTIONS,
-        SRS,
+        PROJECTIONS,
+        CODE,
         BOUNDS,
         SHAPE,
@@ -84,5 +84,5 @@
         ImageryBounds bounds;
         Shape shape;
-        List<String> supported_srs;
+        List<String> projections;
 
         @Override public void startDocument() {
@@ -94,5 +94,5 @@
             entry = null;
             bounds = null;
-            supported_srs = null;
+            projections = null;
         }
 
@@ -143,7 +143,7 @@
                         }
                         newState = State.BOUNDS;
-                    } else if (qName.equals("supported-projections")) {
-                        supported_srs = new ArrayList<String>();
-                        newState = State.SUPPORTED_PROJECTIONS;
+                    } else if (qName.equals("projections")) {
+                        projections = new ArrayList<String>();
+                        newState = State.PROJECTIONS;
                     }
                     break;
@@ -163,7 +163,7 @@
                     }
                     break;
-                case SUPPORTED_PROJECTIONS:
-                    if (qName.equals("srs")) {
-                        newState = State.SRS;
+                case PROJECTIONS:
+                    if (qName.equals("code")) {
+                        newState = State.CODE;
                     }
                     break;
@@ -271,10 +271,10 @@
                     shape = null;
                     break;
-                case SRS:
-                    supported_srs.add(accumulator.toString());
-                    break;
-                case SUPPORTED_PROJECTIONS:
-                    entry.setServerProjections(supported_srs);
-                    supported_srs = null;
+                case CODE:
+                    projections.add(accumulator.toString());
+                    break;
+                case PROJECTIONS:
+                    entry.setServerProjections(projections);
+                    projections = null;
                     break;
             }
