Ignore:
Timestamp:
2015-11-09T15:16:40+01:00 (9 years ago)
Author:
malcolmh
Message:

[seachart] bug fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/seachart/src/s57/S57osm.java

    r31735 r31737  
    1818import s57.S57val.*;
    1919
    20 public class S57osm { // OSM to S57 Object/Attribute conversions
     20public class S57osm { // OSM to S57 Object/Attribute and Object/Primitive conversions
     21       
     22        enum Prims { P, L, A, PA, PL, LA, PLA }
     23        private static final EnumMap<Obj, Prims> S57prims = new EnumMap<Obj, Prims>(Obj.class);
     24        static {
     25                S57prims.put(Obj.UNKOBJ, Prims.PLA);
     26        }
    2127
    2228        static class KeyVal<V> {
Note: See TracChangeset for help on using the changeset viewer.