Ignore:
Timestamp:
2010-09-15T18:56:19+02:00 (14 years ago)
Author:
stoecker
Message:

remove tabs

Location:
applications/editors/josm/plugins/globalsat/src/org/openstreetmap/josm/plugins/globalsat
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/globalsat/src/org/openstreetmap/josm/plugins/globalsat/GlobalsatDg100.java

    r20267 r23191  
    135135     */
    136136    public GpxData readData(ProgressMonitor progressMonitor) throws ConnectionException {
    137         progressMonitor.beginTask(null);
    138         try {
    139                 GpxData result = null;
    140                 cancelled = false;
    141                 if(port == null){
    142                         connect();
    143                 }
    144 
    145                 List<FileInfoRec> fileInfoList = readFileInfoList();
    146                 List<GpsRec> gpsRecList = readGpsRecList(fileInfoList);
    147 
    148                 progressMonitor.setTicksCount(gpsRecList.size());
    149                 if(gpsRecList.size() > 0){
    150                         GpsRec last = null;
    151                         result = new GpxData();
    152                         Collection<WayPoint> seg = new ArrayList<WayPoint>(100);
    153                         for(GpsRec r:gpsRecList){
    154                                 if(cancelled){
    155                                         return result;
    156                                 }
    157                                 WayPoint p = wayPointFrom(r);
    158                                 if(r.equals(last)){
    159                                         result.waypoints.add(p);
    160                                 }else{
    161                                         seg.add(p);
    162                                 }
    163                                 last = r;
    164                                 progressMonitor.worked(1);
    165                         }
    166                         result.tracks.add(new SingleSegmentGpxTrack(new ImmutableGpxTrackSegment(seg), Collections.<String, Object>emptyMap()));
    167                 }
    168                 return result;
    169         } finally {
    170                 progressMonitor.finishTask();
    171         }
     137        progressMonitor.beginTask(null);
     138        try {
     139            GpxData result = null;
     140            cancelled = false;
     141            if(port == null){
     142                connect();
     143            }
     144
     145            List<FileInfoRec> fileInfoList = readFileInfoList();
     146            List<GpsRec> gpsRecList = readGpsRecList(fileInfoList);
     147
     148            progressMonitor.setTicksCount(gpsRecList.size());
     149            if(gpsRecList.size() > 0){
     150                GpsRec last = null;
     151                result = new GpxData();
     152                Collection<WayPoint> seg = new ArrayList<WayPoint>(100);
     153                for(GpsRec r:gpsRecList){
     154                    if(cancelled){
     155                        return result;
     156                    }
     157                    WayPoint p = wayPointFrom(r);
     158                    if(r.equals(last)){
     159                        result.waypoints.add(p);
     160                    }else{
     161                        seg.add(p);
     162                    }
     163                    last = r;
     164                    progressMonitor.worked(1);
     165                }
     166                result.tracks.add(new SingleSegmentGpxTrack(new ImmutableGpxTrackSegment(seg), Collections.<String, Object>emptyMap()));
     167            }
     168            return result;
     169        } finally {
     170            progressMonitor.finishTask();
     171        }
    172172    }
    173173
  • applications/editors/josm/plugins/globalsat/src/org/openstreetmap/josm/plugins/globalsat/GlobalsatPlugin.java

    r19436 r23191  
    4747
    4848        @Override public void realRun() throws IOException, SAXException {
    49                 progressMonitor.subTask(tr("Importing data from DG100..."));
     49            progressMonitor.subTask(tr("Importing data from DG100..."));
    5050            try{
    5151                data = GlobalsatPlugin.dg100().readData(progressMonitor.createSubTaskMonitor(ProgressMonitor.ALL_TICKS, true));
     
    8989    GlobalsatImportAction importAction;
    9090    public GlobalsatPlugin(PluginInformation info) {
    91         super(info);
     91        super(info);
    9292        boolean error = false;
    9393        try{
  • applications/editors/josm/plugins/globalsat/src/org/openstreetmap/josm/plugins/globalsat/SingleSegmentGpxTrack.java

    r20431 r23191  
    1111public class SingleSegmentGpxTrack implements GpxTrack {
    1212
    13         private final Map<String, Object> attributes;
    14         private final GpxTrackSegment trackSegment;
     13    private final Map<String, Object> attributes;
     14    private final GpxTrackSegment trackSegment;
    1515
    16         public SingleSegmentGpxTrack(GpxTrackSegment trackSegment, Map<String, Object> attributes) {
    17                 this.attributes = Collections.unmodifiableMap(attributes);
    18                 this.trackSegment = trackSegment;
    19         }
     16    public SingleSegmentGpxTrack(GpxTrackSegment trackSegment, Map<String, Object> attributes) {
     17        this.attributes = Collections.unmodifiableMap(attributes);
     18        this.trackSegment = trackSegment;
     19    }
    2020
    2121
    22         public Map<String, Object> getAttributes() {
    23                 return attributes;
    24         }
     22    public Map<String, Object> getAttributes() {
     23        return attributes;
     24    }
    2525
    26         public Bounds getBounds() {
    27                 return trackSegment.getBounds();
    28         }
     26    public Bounds getBounds() {
     27        return trackSegment.getBounds();
     28    }
    2929
    30         public Collection<GpxTrackSegment> getSegments() {
    31                 return Collections.singleton(trackSegment);
    32         }
     30    public Collection<GpxTrackSegment> getSegments() {
     31        return Collections.singleton(trackSegment);
     32    }
    3333
    34         public double length() {
    35                 return trackSegment.length();
    36         }
     34    public double length() {
     35        return trackSegment.length();
     36    }
    3737
    38         @Override
    39         public int getUpdateCount() {
    40                 return trackSegment.getUpdateCount();
    41         }
     38    @Override
     39    public int getUpdateCount() {
     40        return trackSegment.getUpdateCount();
     41    }
    4242
    4343}
Note: See TracChangeset for help on using the changeset viewer.