Changeset 29174 in osm for applications/editors/josm/plugins/smed2/src/seamap/SeaMap.java
- Timestamp:
- 2013-01-06T12:00:09+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed2/src/seamap/SeaMap.java
r29172 r29174 54 54 55 55 public class Coord { 56 double lat; 57 double lon; 56 public double lat; 57 public double lon; 58 58 59 59 Coord(double ilat, double ilon) { … … 67 67 public HashMap<Long, ArrayList<Long>> mpolys; 68 68 public EnumMap<Obj, ArrayList<Feature>> features; 69 public double minlat;70 public double minlon;71 public double maxlat;72 public double maxlon;73 69 74 70 private Feature feature; … … 149 145 if (atts == null) { 150 146 atts = new EnumMap<Att, AttItem>(Att.class); 147 items.put(idx, atts); 151 148 } 152 149 AttVal attval = S57val.convertValue(val, att);
Note:
See TracChangeset
for help on using the changeset viewer.