Changeset 29958 in osm


Ignore:
Timestamp:
2013-09-24T21:50:36+02:00 (11 years ago)
Author:
oliverw
Message:

[josm_elevationprofile]: Support GPX files with multiple tracks/routes

Location:
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gpx/ElevationModel.java

    r29955 r29958  
    4040        private GpxData gpxData;
    4141        private String name;
    42         private WayPointMap children = new WayPointMap();
     42        private WayPointMap profiles = new WayPointMap();
    4343        private List<IElevationModelListener> listeners = new ArrayList<IElevationModelListener>();
    4444        private List<WayPoint> buffer = new ArrayList<WayPoint>();
     
    7878         */
    7979        protected WayPointMap getTracks() {
    80                 return children;
     80                return profiles;
    8181        }
    8282
     
    8686        protected void fireModelChanged() {             
    8787                for (IElevationModelListener listener : listeners) {
    88                     if (children != null && children.size() > 0)
     88                    if (profiles != null && profiles.size() > 0)
    8989                        listener.elevationProfileChanged(getCurrentProfile());
    9090                }
     
    149149
    150150        public void start() {
    151                 curProfile = new ElevationProfileBase(name);           
    152         }
    153 
    154         public void end() {
    155                 String trackName = name; //gpxData.getString(GpxData.META_NAME);// "Track#" + trackCounter;
    156                
    157                 if (trackCounter > 0) {
    158                     trackName += "." + trackCounter;
     151                curProfile = new ElevationProfileBase(name);
     152                trackCounter++;
     153        }
     154
     155        public void end() {             
     156                commitTrack();
     157        }
     158       
     159
     160        @Override
     161        public void start(GpxTrack track) {
     162            // check GPX data
     163            String trackName = (String) track.get("name");
     164           
     165            // no name given, build artificial one
     166            if (trackName == null) {
     167                trackName = (String) track.get(GpxData.META_NAME);
     168                if (trackName == null) {
     169                    trackName = name + "." + trackCounter;
    159170                }
    160                 addTrackOrRoute(trackName);     
    161                 trackCounter++;
    162         }
    163        
    164 
    165         @Override
    166         public void start(GpxTrack track) {
    167             curProfile = new ElevationProfileBase(name);           
     171            }
     172           
     173            curProfile = new ElevationProfileBase(trackName);
    168174        }
    169175
     
    173179           
    174180            curProfile.setDistance(track.length());
    175             addTrackOrRoute(name);         
     181            commitTrack();
    176182        }
    177183       
     
    192198         * @param trackName the track name
    193199         */
    194         private void addTrackOrRoute(String trackName) {
    195                 if (buffer.size() > 0) {                       
     200        private void commitTrack() {
     201                if (buffer.size() > 0) {   
     202                        // assign way points to profile...
    196203                        curProfile.setWayPoints(buffer);
    197                         curProfile.setName(trackName);
    198                         children.add(curProfile);
     204                        // ... and add to profile list
     205                        profiles.add(curProfile);
     206                        buffer.clear();
    199207                }
    200208        }
     
    214222        @Override
    215223        public List<IElevationProfile> getProfiles() {
    216                 return children;
     224                return profiles;
    217225        }
    218226
     
    221229            if (currentProfileIndex < 0 || currentProfileIndex >= profileCount()) return null;
    222230           
    223             return children.get(currentProfileIndex);
     231            return profiles.get(currentProfileIndex);
    224232        }
    225233
     
    228236            CheckParameterUtil.ensureParameterNotNull(newProfile);
    229237           
    230             if (!children.contains(newProfile)) {
    231                 children.add(newProfile);
     238            if (!profiles.contains(newProfile)) {
     239                profiles.add(newProfile);
    232240            }
    233241           
    234             setCurrentProfile(children.indexOf(newProfile));
     242            setCurrentProfile(profiles.indexOf(newProfile));
    235243        }
    236244
     
    245253        @Override
    246254        public int profileCount() {
    247             return children != null ? children.size() : 0;
     255            return profiles != null ? profiles.size() : 0;
    248256        }
    249257}
  • applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gpx/ElevationProfileBase.java

    r29955 r29958  
    493493       
    494494        public String toString() {
    495                 return "ElevationProfileBase [start=" + getStart() + ", end=" + getEnd()
     495                return name; /*"ElevationProfileBase [start=" + getStart() + ", end=" + getEnd()
    496496                                + ", minHeight=" + getMinHeight() + ", maxHeight="
    497                                 + getMaxHeight() + "]";
     497                                + getMaxHeight() + "]";*/
    498498        }
    499499}
  • applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui/ElevationProfileDialog.java

    r29955 r29958  
    1818
    1919import java.awt.BorderLayout;
     20import java.awt.FlowLayout;
    2021import java.awt.Font;
    2122import java.awt.GridLayout;
     
    2324import java.awt.event.ComponentListener;
    2425import java.util.ArrayList;
     26import java.util.Collection;
    2527import java.util.HashMap;
    2628import java.util.List;
    2729
     30import javax.swing.ComboBoxModel;
     31import javax.swing.JComboBox;
    2832import javax.swing.JLabel;
    2933import javax.swing.JPanel;
    30 import javax.swing.JRadioButton;
    31 import javax.swing.JTextField;
     34import javax.swing.event.ListDataEvent;
     35import javax.swing.event.ListDataListener;
    3236
    3337import org.openstreetmap.josm.Main;
     
    4448import org.openstreetmap.josm.plugins.elevation.IElevationProfile;
    4549import org.openstreetmap.josm.plugins.elevation.gpx.ElevationModel;
    46 import org.openstreetmap.josm.plugins.elevation.gpx.GeoidCorrectionKind;
    4750import org.openstreetmap.josm.tools.Shortcut;
    4851/**
     
    7275        private JLabel totalTimeLabel;
    7376        private JLabel distLabel;
     77        private JComboBox<IElevationProfile> trackCombo;
     78       
    7479        /* Listener to the elevation model */
    7580        private List<IElevationModelListener> listeners = new ArrayList<IElevationModelListener>();
     
    7883         * Corresponding layer instance within map view.
    7984         */
    80         private ElevationProfileLayer profileLayer;     
     85        private ElevationProfileLayer profileLayer;
     86       
    8187
    8288        /**
     
    116122                        Shortcut shortcut, int preferredHeight, boolean defShow) {
    117123                super(name, iconName, tooltip, shortcut, preferredHeight, defShow);
     124               
     125                // create model
     126                model = new ElevationModel();
    118127                               
    119                 JPanel dataPanel = new JPanel();
    120                 GridLayout gridLayout = new GridLayout(2, 6);
    121                 dataPanel.setLayout(gridLayout);
     128                // top panel
     129                JPanel rootPanel = new JPanel();
     130                GridLayout gridLayout1 = new GridLayout(2, 1);
     131                rootPanel.setLayout(gridLayout1);
     132               
     133                // statistics panel
     134                JPanel statPanel = new JPanel();
     135                GridLayout gridLayoutStat = new GridLayout(2, 6);
     136                statPanel.setLayout(gridLayoutStat);
    122137
    123138                // first row: Headlines with bold font
    124                 JLabel lbl = new JLabel(tr("Min"));
    125                 lbl.setFont(getFont().deriveFont(Font.BOLD));
    126                 dataPanel.add(lbl);
    127                 lbl = new JLabel(tr("Avrg"));
    128                 lbl.setFont(getFont().deriveFont(Font.BOLD));
    129                 dataPanel.add(lbl);
    130                 lbl = new JLabel(tr("Max"));
    131                 lbl.setFont(getFont().deriveFont(Font.BOLD));
    132                 dataPanel.add(lbl);
    133                 lbl = new JLabel(tr("Dist"));
    134                 lbl.setFont(getFont().deriveFont(Font.BOLD));
    135                 dataPanel.add(lbl);
    136                 lbl = new JLabel(tr("Gain"));
    137                 lbl.setFont(getFont().deriveFont(Font.BOLD));
    138                 dataPanel.add(lbl);
    139                 lbl = new JLabel(tr("Time"));
    140                 lbl.setFont(getFont().deriveFont(Font.BOLD));
    141                 dataPanel.add(lbl);
    142 
     139                String[] labels = new String[]{tr("Min"), tr("Avrg"), tr("Max"), tr("Dist"), tr("Gain"), tr("Time")};
     140                for (int i = 0; i < labels.length; i++) {
     141                        JLabel lbl = new JLabel(labels[i]);
     142                        lbl.setFont(getFont().deriveFont(Font.BOLD));
     143                        statPanel.add(lbl);
     144                }
     145               
    143146                // second row
    144147                minHeightLabel = new JLabel("0 m");
    145                 dataPanel.add(minHeightLabel);
     148                statPanel.add(minHeightLabel);
    146149                avrgHeightLabel = new JLabel("0 m");
    147                 dataPanel.add(avrgHeightLabel);
     150                statPanel.add(avrgHeightLabel);
    148151                maxHeightLabel = new JLabel("0 m");
    149                 dataPanel.add(maxHeightLabel);
     152                statPanel.add(maxHeightLabel);
    150153                distLabel = new JLabel("0 km");
    151                 dataPanel.add(distLabel);
     154                statPanel.add(distLabel);
    152155                elevationGainLabel = new JLabel("0 m");
    153                 dataPanel.add(elevationGainLabel);
     156                statPanel.add(elevationGainLabel);
    154157                totalTimeLabel = new JLabel("0");
    155                 dataPanel.add(totalTimeLabel);
    156 
    157                 add(dataPanel, BorderLayout.PAGE_END);
    158                 model = new ElevationModel();
    159 
     158                statPanel.add(totalTimeLabel);
     159               
     160                // track selection panel
     161                JPanel trackPanel = new JPanel();
     162                FlowLayout fl = new FlowLayout(FlowLayout.LEFT);
     163                trackPanel.setLayout(fl);
     164                               
     165                JLabel lbTrack = new JLabel(tr("Tracks"));             
     166                lbTrack.setFont(getFont().deriveFont(Font.BOLD));
     167                trackPanel.add(lbTrack);
     168               
     169                trackCombo = new JComboBox<IElevationProfile>(new TrackModel());
     170                trackPanel.add(trackCombo);
     171
     172                // assemble root panel
     173                rootPanel.add(statPanel);
     174                rootPanel.add(trackPanel);
     175               
     176                add(rootPanel, BorderLayout.PAGE_END);
     177               
     178                // add chart component
    160179                profPanel = new ElevationProfilePanel(null);
    161180                add(profPanel, BorderLayout.CENTER);
     
    258277                    totalTimeLabel.setText(String.format("%d:%d h", hours, minutes));
    259278                    distLabel.setText(NavigatableComponent.getSystemOfMeasurement().getDistText(dist));
     279                    trackCombo.setEnabled(model.profileCount() > 1);               
    260280                } else { // no elevation data, -> switch back to empty view
    261281                    setTitle(String.format("%s: (No data)", tr("Elevation Profile")));
     
    267287                    totalTimeLabel.setText(EMPTY_DATA_STRING);
    268288                    distLabel.setText(EMPTY_DATA_STRING);
    269                 }
    270 
     289                    trackCombo.setEnabled(false);
     290                }
     291               
    271292                fireModelChanged();
    272293                repaint();         
     
    398419        public void componentShown(ComponentEvent e) {
    399420        }
     421       
     422       
     423        class TrackModel implements ComboBoxModel<IElevationProfile> {
     424            private Collection<ListDataListener> listeners;
     425
     426            @Override
     427            public void addListDataListener(ListDataListener arg0) {
     428                if (listeners == null) {
     429                    listeners = new ArrayList<ListDataListener>();
     430                }
     431                listeners.add(arg0);
     432            }
     433
     434            @Override
     435            public IElevationProfile getElementAt(int index) {
     436                if (model == null) return null;
     437               
     438                IElevationProfile ep = model.getProfiles().get(index);
     439                return ep;
     440            }
     441
     442            @Override
     443            public int getSize() {
     444                if (model == null) return 0;
     445               
     446                return model.profileCount();
     447            }
     448
     449            @Override
     450            public void removeListDataListener(ListDataListener listener) {
     451                if (listeners == null) return; 
     452               
     453                listeners.remove(listener);
     454            }
     455
     456            @Override
     457            public Object getSelectedItem() {
     458                if (model == null) return null;
     459               
     460                return model.getCurrentProfile();
     461            }
     462
     463            @Override
     464            public void setSelectedItem(Object selectedObject) {
     465                if (model != null && selectedObject instanceof IElevationProfile) {
     466                    model.setCurrentProfile((IElevationProfile) selectedObject);
     467                    profileLayer.setProfile(model.getCurrentProfile());
     468                   
     469                    repaint();             
     470                }
     471            }
     472           
     473        }
    400474}
  • applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui/ElevationProfileLayer.java

    r29955 r29958  
    3131import org.openstreetmap.josm.gui.layer.Layer;
    3232import org.openstreetmap.josm.plugins.elevation.ElevationHelper;
     33import org.openstreetmap.josm.plugins.elevation.IElevationModelListener;
    3334import org.openstreetmap.josm.plugins.elevation.IElevationProfile;
    3435import org.openstreetmap.josm.plugins.elevation.gpx.ElevationWayPointKind;
     
    4243 *
    4344 */
    44 public class ElevationProfileLayer extends
    45 org.openstreetmap.josm.gui.layer.Layer implements IElevationProfileSelectionListener {
     45public class ElevationProfileLayer extends Layer implements IElevationProfileSelectionListener {
     46   
    4647    private static final double Level_Factor = 100.0;
    4748    private IElevationProfile profile;
Note: See TracChangeset for help on using the changeset viewer.