Changeset 29209 in osm for applications/editors/josm/plugins/smed2/src/s57/S57val.java
- Timestamp:
- 2013-01-27T17:08:57+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed2/src/s57/S57val.java
r29207 r29209 1109 1109 1110 1110 public static String decodeValue(String val, Integer attl) { // Convert S57 attribute value string to OSeaM attribute value string 1111 Att att = S57att. lookupAttribute(attl);1111 Att att = S57att.decodeAttribute(attl); 1112 1112 switch (keys.get(att).conv) { 1113 1113 case A: … … 1135 1135 1136 1136 1137 public static String stringValue(AttVal attval) { // Convert OSeaM value struct to OSeaM attribute value string1137 public static String stringValue(AttVal attval) { // Convert OSeaM value object to OSeaM attribute value string 1138 1138 switch (attval.conv) { 1139 1139 case A: … … 1171 1171 } 1172 1172 1173 public static AttVal convertValue(String val, Att att) { // Convert OSeaM attribute value string to OSeaM value struct1173 public static AttVal convertValue(String val, Att att) { // Convert OSeaM attribute value string to OSeaM value object 1174 1174 switch (keys.get(att).conv) { 1175 1175 case A:
Note:
See TracChangeset
for help on using the changeset viewer.