Changeset 31311 in osm for applications/editors/josm


Ignore:
Timestamp:
2015-06-25T18:35:15+02:00 (9 years ago)
Author:
nokutu
Message:

Started adding test, solved bug regarding image inputs and a start crash

Location:
applications/editors/josm/plugins/mapillary
Files:
19 added
2 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/mapillary

    • Property svn:ignore
      •  

        old new  
        11build
         2bin
  • applications/editors/josm/plugins/mapillary/.classpath

    r31245 r31311  
    22<classpath>
    33        <classpathentry kind="src" path="src"/>
     4        <classpathentry kind="src" path="test/unit"/>
    45        <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
    56        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
    67        <classpathentry combineaccessrules="false" exported="true" kind="src" path="/JOSM-commons-imaging"/>
    78        <classpathentry exported="true" kind="lib" path="/home/nokutu/josm/dist/commons-imaging.jar"/>
     9        <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
    810        <classpathentry kind="output" path="bin"/>
    911</classpath>
  • applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryAbstractImage.java

    r31299 r31311  
    11package org.openstreetmap.josm.plugins.mapillary;
    22
    3 import java.sql.Date;
     3import java.util.Date;
    44import java.text.ParseException;
    55import java.text.SimpleDateFormat;
     
    1111
    1212/**
    13  * Abstract supperclass for all image objects. At the moment there is just 2,
     13 * Abstract superclass for all image objects. At the moment there is just 2,
    1414 * {@code MapillaryImportedImage} and {@code MapillaryImage}.
    1515 *
     
    2121    private long capturedAt;
    2222
    23     /** Postion of the picture */
     23    /** Position of the picture */
    2424    public final LatLon latLon;
    2525    /** Direction of the picture */
  • applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryData.java

    r31300 r31311  
    2020 */
    2121public class MapillaryData implements ICachedLoaderListener {
    22     public volatile static MapillaryData INSTANCE;
    23 
    24     private final List<MapillaryAbstractImage> images;
    25     private MapillaryAbstractImage selectedImage;
    26     private MapillaryAbstractImage hoveredImage;
    27     private final List<MapillaryAbstractImage> multiSelectedImages;
    28 
    29     private List<MapillaryDataListener> listeners = new ArrayList<>();
    30 
    31     public MapillaryData() {
    32         images = new CopyOnWriteArrayList<>();
    33         multiSelectedImages = new ArrayList<>();
    34         selectedImage = null;
    35     }
    36 
    37     public static MapillaryData getInstance() {
    38         if (INSTANCE == null) {
    39             INSTANCE = new MapillaryData();
    40         }
    41         return INSTANCE;
    42     }
    43 
    44     /**
    45      * Adds a set of MapillaryImages to the object, and then repaints mapView.
    46      *
    47      * @param images
    48      *            The set of images to be added.
    49      */
    50     public synchronized void add(List<MapillaryAbstractImage> images) {
    51         for (MapillaryAbstractImage image : images) {
    52             add(image);
    53         }
    54     }
    55 
    56     /**
    57      * Adds an MapillaryImage to the object, and then repaints mapView.
    58      *
    59      * @param image
    60      *            The image to be added.
    61      */
    62     public synchronized void add(MapillaryAbstractImage image) {
    63         if (!images.contains(image)) {
    64             this.images.add(image);
    65         }
    66         dataUpdated();
    67         fireImagesAdded();
    68     }
    69 
    70     public void addListener(MapillaryDataListener lis) {
    71         listeners.add(lis);
    72     }
    73 
    74     public void removeListener(MapillaryDataListener lis) {
    75         listeners.remove(lis);
    76     }
    77 
    78     /**
    79      * Adds a set of MapillaryImages to the object, but doesn't repaint mapView.
    80      * This is needed for concurrency.
    81      *
    82      * @param images
    83      *            The set of images to be added.
    84      */
    85     public synchronized void addWithoutUpdate(
    86             List<MapillaryAbstractImage> images) {
    87         for (MapillaryAbstractImage image : images) {
    88             addWithoutUpdate(image);
    89         }
    90     }
    91 
    92     /**
    93      * Sets the image under the mouse cursor.
    94      *
    95      * @param image
    96      */
    97     public void setHoveredImage(MapillaryAbstractImage image) {
    98         hoveredImage = image;
    99     }
    100 
    101     /**
    102      * Returns the image under the mouse cursor.
    103      *
    104      * @return
    105      */
    106     public MapillaryAbstractImage getHoveredImage() {
    107         return hoveredImage;
    108     }
    109 
    110     /**
    111      * Adds a MapillaryImage to the object, but doesn't repaint mapView. This is
    112      * needed for concurrency.
    113      *
    114      * @param image
    115      *            The image to be added.
    116      */
    117     public synchronized void addWithoutUpdate(MapillaryAbstractImage image) {
    118         if (!images.contains(image)) {
    119             this.images.add(image);
    120         }
    121         fireImagesAdded();
    122     }
    123 
    124     /**
    125      * Repaints mapView object.
    126      */
    127     public synchronized void dataUpdated() {
    128         Main.map.mapView.repaint();
    129     }
    130 
    131     /**
    132      * Returns a List containing all images.
    133      *
    134      * @return A List object containing all images.
    135      */
    136     public List<MapillaryAbstractImage> getImages() {
    137         return images;
    138     }
    139 
    140     /**
    141      * Returns the MapillaryImage object that is currently selected.
    142      *
    143      * @return The selected MapillaryImage object.
    144      */
    145     public MapillaryAbstractImage getSelectedImage() {
    146         return selectedImage;
    147     }
    148 
    149     private void fireImagesAdded() {
    150         if (listeners.isEmpty())
    151             return;
    152         for (MapillaryDataListener lis : listeners)
    153             lis.imagesAdded();
    154     }
    155 
    156     /**
    157      * If the selected MapillaryImage is part of a MapillarySequence then the
    158      * following visible MapillaryImage is selected. In case there is none, does
    159      * nothing.
    160      */
    161     public void selectNext() {
    162         if (getSelectedImage() instanceof MapillaryImage) {
    163             if (getSelectedImage() == null)
    164                 return;
    165             if (((MapillaryImage) getSelectedImage()).getSequence() == null)
    166                 return;
    167             if (selectedImage instanceof MapillaryImage && ((MapillaryImage) selectedImage).getSequence() != null) {
     22        public volatile static MapillaryData INSTANCE;
     23        public static boolean TEST_MODE = false;
     24
     25        private final List<MapillaryAbstractImage> images;
     26        private MapillaryAbstractImage selectedImage;
     27        private MapillaryAbstractImage hoveredImage;
     28        private final List<MapillaryAbstractImage> multiSelectedImages;
     29
     30        private List<MapillaryDataListener> listeners = new ArrayList<>();
     31
     32        public MapillaryData() {
     33                images = new CopyOnWriteArrayList<>();
     34                multiSelectedImages = new ArrayList<>();
     35                selectedImage = null;
     36        }
     37
     38        public static MapillaryData getInstance() {
     39                if (INSTANCE == null) {
     40                        INSTANCE = new MapillaryData();
     41                }
     42                return INSTANCE;
     43        }
     44
     45        /**
     46         * Adds a set of MapillaryImages to the object, and then repaints mapView.
     47         *
     48         * @param images
     49         *            The set of images to be added.
     50         */
     51        public synchronized void add(List<MapillaryAbstractImage> images) {
     52                for (MapillaryAbstractImage image : images) {
     53                        add(image);
     54                }
     55        }
     56
     57        /**
     58         * Adds an MapillaryImage to the object, and then repaints mapView.
     59         *
     60         * @param image
     61         *            The image to be added.
     62         */
     63        public synchronized void add(MapillaryAbstractImage image) {
     64                if (!images.contains(image)) {
     65                        this.images.add(image);
     66                }
     67                dataUpdated();
     68                fireImagesAdded();
     69        }
     70
     71        public void addListener(MapillaryDataListener lis) {
     72                listeners.add(lis);
     73        }
     74
     75        public void removeListener(MapillaryDataListener lis) {
     76                listeners.remove(lis);
     77        }
     78
     79        /**
     80         * Adds a set of MapillaryImages to the object, but doesn't repaint mapView.
     81         * This is needed for concurrency.
     82         *
     83         * @param images
     84         *            The set of images to be added.
     85         */
     86        public synchronized void addWithoutUpdate(
     87                        List<MapillaryAbstractImage> images) {
     88                for (MapillaryAbstractImage image : images) {
     89                        addWithoutUpdate(image);
     90                }
     91        }
     92
     93        /**
     94         * Sets the image under the mouse cursor.
     95         *
     96         * @param image
     97         */
     98        public void setHoveredImage(MapillaryAbstractImage image) {
     99                hoveredImage = image;
     100        }
     101
     102        /**
     103         * Returns the image under the mouse cursor.
     104         *
     105         * @return
     106         */
     107        public MapillaryAbstractImage getHoveredImage() {
     108                return hoveredImage;
     109        }
     110
     111        /**
     112         * Adds a MapillaryImage to the object, but doesn't repaint mapView. This is
     113         * needed for concurrency.
     114         *
     115         * @param image
     116         *            The image to be added.
     117         */
     118        public synchronized void addWithoutUpdate(MapillaryAbstractImage image) {
     119                if (!images.contains(image)) {
     120                        this.images.add(image);
     121                }
     122                fireImagesAdded();
     123        }
     124
     125        /**
     126         * Repaints mapView object.
     127         */
     128        public synchronized void dataUpdated() {
     129                if (!TEST_MODE)
     130                        Main.map.mapView.repaint();
     131        }
     132
     133        /**
     134         * Returns a List containing all images.
     135         *
     136         * @return A List object containing all images.
     137         */
     138        public List<MapillaryAbstractImage> getImages() {
     139                return images;
     140        }
     141
     142        /**
     143         * Returns the MapillaryImage object that is currently selected.
     144         *
     145         * @return The selected MapillaryImage object.
     146         */
     147        public MapillaryAbstractImage getSelectedImage() {
     148                return selectedImage;
     149        }
     150
     151        private void fireImagesAdded() {
     152                if (listeners.isEmpty())
     153                        return;
     154                for (MapillaryDataListener lis : listeners)
     155                        lis.imagesAdded();
     156        }
     157
     158        /**
     159         * If the selected MapillaryImage is part of a MapillarySequence then the
     160         * following visible MapillaryImage is selected. In case there is none, does
     161         * nothing.
     162         */
     163        public void selectNext() {
     164                if (getSelectedImage() instanceof MapillaryImage) {
     165                        if (getSelectedImage() == null)
     166                                return;
     167                        if (((MapillaryImage) getSelectedImage()).getSequence() == null)
     168                                return;
     169                        if (selectedImage instanceof MapillaryImage
     170                                        && ((MapillaryImage) selectedImage).getSequence() != null) {
    168171                                MapillaryImage tempImage = (MapillaryImage) selectedImage;
    169172                                while (tempImage.next() != null) {
    170173                                        tempImage = tempImage.next();
    171174                                        if (tempImage.isVisible()) {
    172                                     setSelectedImage(tempImage, true);
     175                                                setSelectedImage(tempImage, true);
    173176                                                break;
    174177                                        }
    175178                                }
    176179                        }
    177         }
    178     }
    179 
    180     /**
    181      * If the selected MapillaryImage is part of a MapillarySequence then the
    182      * previous visible MapillaryImage is selected. In case there is none, does nothing.
    183      */
    184     public void selectPrevious() {
    185         if (getSelectedImage() instanceof MapillaryImage) {
    186             if (getSelectedImage() == null)
    187                 return;
    188             if (((MapillaryImage) getSelectedImage()).getSequence() == null)
    189                 throw new IllegalStateException();
    190             if (selectedImage instanceof MapillaryImage && ((MapillaryImage) selectedImage).getSequence() != null) {
     180                }
     181        }
     182
     183        /**
     184         * If the selected MapillaryImage is part of a MapillarySequence then the
     185         * previous visible MapillaryImage is selected. In case there is none, does
     186         * nothing.
     187         */
     188        public void selectPrevious() {
     189                if (getSelectedImage() instanceof MapillaryImage) {
     190                        if (getSelectedImage() == null)
     191                                return;
     192                        if (((MapillaryImage) getSelectedImage()).getSequence() == null)
     193                                throw new IllegalStateException();
     194                        if (selectedImage instanceof MapillaryImage
     195                                        && ((MapillaryImage) selectedImage).getSequence() != null) {
    191196                                MapillaryImage tempImage = (MapillaryImage) selectedImage;
    192197                                while (tempImage.previous() != null) {
    193198                                        tempImage = tempImage.previous();
    194199                                        if (tempImage.isVisible()) {
    195                                     setSelectedImage(tempImage, true);
     200                                                setSelectedImage(tempImage, true);
    196201                                                break;
    197202                                        }
    198203                                }
    199204                        }
    200         }
    201     }
    202 
    203     /**
    204     * Selects a new image and then starts a new MapillaryImageDownloadThread
    205     * thread in order to download its surrounding thumbnails. If the user does
    206     * ctrl+click, this isn't triggered.
    207     *
    208     * @param image
    209     *            The MapillaryImage which is going to be selected
    210     */
    211     public void setSelectedImage(MapillaryAbstractImage image) {
    212         setSelectedImage(image, false);
    213     }
    214 
    215     /**
    216     * Selects a new image and then starts a new MapillaryImageDownloadThread
    217     * thread in order to download its surrounding thumbnails. If the user does
    218     * ctrl+click, this isn't triggered. You can choose wheter to center the
    219     * view on the new image or not.
    220     *
    221     * @param image
    222     * @param zoom
    223     */
    224     public void setSelectedImage(MapillaryAbstractImage image, boolean zoom) {
    225         MapillaryAbstractImage oldImage = selectedImage;
    226         selectedImage = image;
    227         multiSelectedImages.clear();
    228         multiSelectedImages.add(image);
    229         if (image != null) {
    230             if (image instanceof MapillaryImage) {
    231                 MapillaryImage mapillaryImage = (MapillaryImage) image;
    232                 if (mapillaryImage.next() != null) {
    233                     new MapillaryCache(mapillaryImage.next().getKey(),
    234                             MapillaryCache.Type.THUMBNAIL).submit(this, false);
    235                     if (mapillaryImage.next().next() != null)
    236                         new MapillaryCache(mapillaryImage.next().next()
    237                                 .getKey(), MapillaryCache.Type.THUMBNAIL)
    238                                 .submit(this, false);
    239                 }
    240                 if (mapillaryImage.previous() != null) {
    241                     new MapillaryCache(mapillaryImage.previous().getKey(),
    242                             MapillaryCache.Type.THUMBNAIL).submit(this, false);
    243                     if (mapillaryImage.previous().previous() != null)
    244                         new MapillaryCache(mapillaryImage.previous().previous()
    245                                 .getKey(), MapillaryCache.Type.THUMBNAIL)
    246                                 .submit(this, false);
    247                 }
    248             }
    249         }
    250         if (zoom)
    251             Main.map.mapView.zoomTo(MapillaryData.getInstance()
    252                     .getSelectedImage().getLatLon());
    253         if (Main.map != null)
    254             Main.map.mapView.repaint();
    255         fireSelectedImageChanged(oldImage, selectedImage);
    256     }
    257 
    258     private void fireSelectedImageChanged(MapillaryAbstractImage oldImage,
    259             MapillaryAbstractImage newImage) {
    260         if (listeners.isEmpty())
    261             return;
    262         for (MapillaryDataListener lis : listeners)
    263             lis.selectedImageChanged(oldImage, newImage);
    264     }
    265 
    266     /**
    267     * Adds a MapillaryImage object to the list of selected images, (when ctrl +
    268     * click)
    269     *
    270     * @param image
    271     *            The MapillaryImage object to be added.
    272     */
    273     public void addMultiSelectedImage(MapillaryAbstractImage image) {
    274         if (!this.multiSelectedImages.contains(image)) {
    275             if (this.getSelectedImage() != null)
    276                 this.multiSelectedImages.add(image);
    277             else
    278                 this.setSelectedImage(image);
    279         }
    280         Main.map.mapView.repaint();
    281     }
    282 
    283     /**
    284     * Adds a set of MapillaryImage objects to the list of selected images.
    285     *
    286     * @param images
    287     */
    288     public void addMultiSelectedImage(List<MapillaryAbstractImage> images) {
    289         for (MapillaryAbstractImage image : images)
    290             if (!this.multiSelectedImages.contains(image)) {
    291                 if (this.getSelectedImage() != null)
    292                     this.multiSelectedImages.add(image);
    293                 else
    294                     this.setSelectedImage(image);
    295             }
    296         Main.map.mapView.repaint();
    297     }
    298 
    299     /**
    300     * Returns a list containing all MapillaryImage objects selected with ctrl +
    301     * click
    302     *
    303     * @return
    304     */
    305     public List<MapillaryAbstractImage> getMultiSelectedImages() {
    306         return multiSelectedImages;
    307     }
    308 
    309     /**
    310     * This is empty because it is used just to make sure that certain images
    311     * have already been downloaded.
    312     */
    313     @Override
    314     public void loadingFinished(CacheEntry data,
    315             CacheEntryAttributes attributes, LoadResult result) {
    316         // DO NOTHING
    317     }
    318 
    319     /**
    320     * Returns the amount of images contained by this object.
    321     *
    322     * @return
    323     */
    324     public int size() {
    325         return images.size();
    326     }
     205                }
     206        }
     207
     208        /**
     209        * Selects a new image and then starts a new MapillaryImageDownloadThread
     210        * thread in order to download its surrounding thumbnails. If the user does
     211        * ctrl+click, this isn't triggered.
     212        *
     213        * @param image
     214        *            The MapillaryImage which is going to be selected
     215        */
     216        public void setSelectedImage(MapillaryAbstractImage image) {
     217                setSelectedImage(image, false);
     218        }
     219
     220        /**
     221        * Selects a new image and then starts a new MapillaryImageDownloadThread
     222        * thread in order to download its surrounding thumbnails. If the user does
     223        * ctrl+click, this isn't triggered. You can choose wheter to center the
     224        * view on the new image or not.
     225        *
     226        * @param image
     227        * @param zoom
     228        */
     229        public void setSelectedImage(MapillaryAbstractImage image, boolean zoom) {
     230                MapillaryAbstractImage oldImage = selectedImage;
     231                selectedImage = image;
     232                multiSelectedImages.clear();
     233                multiSelectedImages.add(image);
     234                if (image != null) {
     235                        if (image instanceof MapillaryImage) {
     236                                MapillaryImage mapillaryImage = (MapillaryImage) image;
     237                                if (mapillaryImage.next() != null) {
     238                                        new MapillaryCache(mapillaryImage.next().getKey(),
     239                                                        MapillaryCache.Type.THUMBNAIL).submit(this, false);
     240                                        if (mapillaryImage.next().next() != null)
     241                                                new MapillaryCache(mapillaryImage.next().next()
     242                                                                .getKey(), MapillaryCache.Type.THUMBNAIL)
     243                                                                .submit(this, false);
     244                                }
     245                                if (mapillaryImage.previous() != null) {
     246                                        new MapillaryCache(mapillaryImage.previous().getKey(),
     247                                                        MapillaryCache.Type.THUMBNAIL).submit(this, false);
     248                                        if (mapillaryImage.previous().previous() != null)
     249                                                new MapillaryCache(mapillaryImage.previous().previous()
     250                                                                .getKey(), MapillaryCache.Type.THUMBNAIL)
     251                                                                .submit(this, false);
     252                                }
     253                        }
     254                }
     255                if (zoom)
     256                        Main.map.mapView.zoomTo(MapillaryData.getInstance()
     257                                        .getSelectedImage().getLatLon());
     258                if (Main.map != null)
     259                        Main.map.mapView.repaint();
     260                fireSelectedImageChanged(oldImage, selectedImage);
     261        }
     262
     263        private void fireSelectedImageChanged(MapillaryAbstractImage oldImage,
     264                        MapillaryAbstractImage newImage) {
     265                if (listeners.isEmpty())
     266                        return;
     267                for (MapillaryDataListener lis : listeners)
     268                        lis.selectedImageChanged(oldImage, newImage);
     269        }
     270
     271        /**
     272        * Adds a MapillaryImage object to the list of selected images, (when ctrl +
     273        * click)
     274        *
     275        * @param image
     276        *            The MapillaryImage object to be added.
     277        */
     278        public void addMultiSelectedImage(MapillaryAbstractImage image) {
     279                if (!this.multiSelectedImages.contains(image)) {
     280                        if (this.getSelectedImage() != null)
     281                                this.multiSelectedImages.add(image);
     282                        else
     283                                this.setSelectedImage(image);
     284                }
     285                Main.map.mapView.repaint();
     286        }
     287
     288        /**
     289        * Adds a set of MapillaryImage objects to the list of selected images.
     290        *
     291        * @param images
     292        */
     293        public void addMultiSelectedImage(List<MapillaryAbstractImage> images) {
     294                for (MapillaryAbstractImage image : images)
     295                        if (!this.multiSelectedImages.contains(image)) {
     296                                if (this.getSelectedImage() != null)
     297                                        this.multiSelectedImages.add(image);
     298                                else
     299                                        this.setSelectedImage(image);
     300                        }
     301                Main.map.mapView.repaint();
     302        }
     303
     304        /**
     305        * Returns a list containing all MapillaryImage objects selected with ctrl +
     306        * click
     307        *
     308        * @return
     309        */
     310        public List<MapillaryAbstractImage> getMultiSelectedImages() {
     311                return multiSelectedImages;
     312        }
     313
     314        /**
     315        * This is empty because it is used just to make sure that certain images
     316        * have already been downloaded.
     317        */
     318        @Override
     319        public void loadingFinished(CacheEntry data,
     320                        CacheEntryAttributes attributes, LoadResult result) {
     321                // DO NOTHING
     322        }
     323
     324        /**
     325        * Returns the amount of images contained by this object.
     326        *
     327        * @return
     328        */
     329        public int size() {
     330                return images.size();
     331        }
    327332}
  • applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryImportedImage.java

    r31306 r31311  
    44import java.io.File;
    55import java.io.IOException;
     6import java.text.SimpleDateFormat;
     7import java.util.Calendar;
    68
    79import javax.imageio.ImageIO;
     
    1416    protected File file;
    1517    public final long datetimeOriginal;
     18   
     19    public MapillaryImportedImage(double lat, double lon, double ca, File file) {
     20        this(lat, lon, ca, file, currentDate());
     21    }
    1622
    1723    public MapillaryImportedImage(double lat, double lon, double ca, File file,
     
    4753        return this.file.hashCode();
    4854    }
     55   
     56    private static String currentDate() {
     57        Calendar cal = Calendar.getInstance();
     58
     59        SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd hh:mm:ss");
     60        return formatter.format(cal.getTime());
     61
     62    }
    4963}
  • applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryLayer.java

    r31300 r31311  
    110110                Main.map.mapView.setActiveLayer(this);
    111111                createHatchTexture();
    112                 Main.map.repaint();
     112                data.dataUpdated();
    113113        }
    114114
  • applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/actions/MapillaryImportAction.java

    r31278 r31311  
    77import java.io.File;
    88import java.io.IOException;
    9 import java.text.SimpleDateFormat;
    10 import java.util.Calendar;
    119
    1210import javax.swing.JFileChooser;
     
    3836public class MapillaryImportAction extends JosmAction {
    3937
    40     public JFileChooser chooser;
     38        public JFileChooser chooser;
    4139
    42     /**
    43     * Amount of pictures without the proper EXIF tags.
    44     */
    45     private int noTagsPics = 0;
     40        /**
     41        * Amount of pictures without the proper EXIF tags.
     42        */
     43        private int noTagsPics = 0;
    4644
    47     public MapillaryImportAction() {
    48         super(tr("Import pictures"), new ImageProvider("icon24.png"),
    49                 tr("Import local pictures"), Shortcut.registerShortcut(
    50                         "Import Mapillary",
    51                         tr("Import pictures into Mapillary layer"),
    52                         KeyEvent.VK_M, Shortcut.NONE), false,
    53                 "mapillaryImport", false);
    54         this.setEnabled(false);
    55     }
     45        public MapillaryImportAction() {
     46                super(tr("Import pictures"), new ImageProvider("icon24.png"),
     47                                tr("Import local pictures"), Shortcut.registerShortcut(
     48                                                "Import Mapillary",
     49                                                tr("Import pictures into Mapillary layer"),
     50                                                KeyEvent.VK_M, Shortcut.NONE), false,
     51                                "mapillaryImport", false);
     52                this.setEnabled(false);
     53        }
    5654
    57     @Override
    58     public void actionPerformed(ActionEvent e) {
    59         chooser = new JFileChooser();
    60         chooser.setCurrentDirectory(new java.io.File(System
    61                 .getProperty("user.home")));
    62         chooser.setDialogTitle(tr("Select pictures"));
    63         chooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
    64         chooser.setAcceptAllFileFilterUsed(false);
    65         chooser.addChoosableFileFilter(new FileNameExtensionFilter("images",
    66                 "jpg", "jpeg", "png"));
    67         chooser.setMultiSelectionEnabled(true);
    68         if (chooser.showOpenDialog(Main.parent) == JFileChooser.APPROVE_OPTION) {
    69             for (int i = 0; i < chooser.getSelectedFiles().length; i++) {
    70                 File file = chooser.getSelectedFiles()[i];
    71                 if (file.isDirectory()) {
     55        @Override
     56        public void actionPerformed(ActionEvent e) {
     57                chooser = new JFileChooser();
     58                chooser.setCurrentDirectory(new java.io.File(System
     59                                .getProperty("user.home")));
     60                chooser.setDialogTitle(tr("Select pictures"));
     61                chooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
     62                chooser.setAcceptAllFileFilterUsed(false);
     63                chooser.addChoosableFileFilter(new FileNameExtensionFilter("images",
     64                                "jpg", "jpeg", "png"));
     65                chooser.setMultiSelectionEnabled(true);
     66                if (chooser.showOpenDialog(Main.parent) == JFileChooser.APPROVE_OPTION) {
     67                        for (int i = 0; i < chooser.getSelectedFiles().length; i++) {
     68                                File file = chooser.getSelectedFiles()[i];
     69                                if (file.isDirectory()) {
    7270
    73                 } else {
    74                     if (file.getPath().substring(file.getPath().length() - 4)
    75                             .equals(".jpg")
    76                             || file.getPath()
    77                                     .substring(file.getPath().length() - 5)
    78                                     .equals(".jpeg")) {
    79                         try {
    80                             readJPG(file);
    81                         } catch (ImageReadException ex) {
    82                             Main.error(ex);
    83                         } catch (IOException ex) {
    84                             Main.error(ex);
    85                         }
    86                     } else if (file.getPath()
    87                             .substring(file.getPath().length() - 4)
    88                             .equals(".png")) {
    89                         readPNG(file);
    90                     }
    91                 }
    92             }
    93         }
    94         MapillaryLayer.getInstance();
    95     }
     71                                } else {
     72                                        if (file.getPath().substring(file.getPath().length() - 4)
     73                                                        .equals(".jpg")
     74                                                        || file.getPath()
     75                                                                        .substring(file.getPath().length() - 5)
     76                                                                        .equals(".jpeg")) {
     77                                                try {
     78                                                        readJPG(file);
     79                                                } catch (ImageReadException ex) {
     80                                                        Main.error(ex);
     81                                                } catch (IOException ex) {
     82                                                        Main.error(ex);
     83                                                }
     84                                        } else if (file.getPath()
     85                                                        .substring(file.getPath().length() - 4)
     86                                                        .equals(".png")) {
     87                                                readPNG(file);
     88                                        }
     89                                }
     90                        }
     91                }
     92                MapillaryLayer.getInstance();
     93        }
    9694
    97     /**
    98     * Reads a jpg pictures that contains the needed GPS information (position
    99     * and direction) and creates a new icon in that position.
    100     *
    101     * @param file
    102     * @throws ImageReadException
    103     * @throws IOException
    104     */
    105     public void readJPG(File file) throws ImageReadException, IOException {
    106         final ImageMetadata metadata = Imaging.getMetadata(file);
    107         if (metadata instanceof JpegImageMetadata) {
    108             final JpegImageMetadata jpegMetadata = (JpegImageMetadata) metadata;
    109             final TiffField lat_ref = jpegMetadata
    110                     .findEXIFValueWithExactMatch(GpsTagConstants.GPS_TAG_GPS_LATITUDE_REF);
    111             final TiffField lat = jpegMetadata
    112                     .findEXIFValueWithExactMatch(GpsTagConstants.GPS_TAG_GPS_LATITUDE);
    113             final TiffField lon_ref = jpegMetadata
    114                     .findEXIFValueWithExactMatch(GpsTagConstants.GPS_TAG_GPS_LONGITUDE_REF);
    115             final TiffField lon = jpegMetadata
    116                     .findEXIFValueWithExactMatch(GpsTagConstants.GPS_TAG_GPS_LONGITUDE);
    117             final TiffField ca = jpegMetadata
    118                     .findEXIFValueWithExactMatch(GpsTagConstants.GPS_TAG_GPS_IMG_DIRECTION);
    119             final TiffField datetimeOriginal = jpegMetadata
    120                     .findEXIFValueWithExactMatch(ExifTagConstants.EXIF_TAG_DATE_TIME_ORIGINAL);
    121             if (lat_ref == null || lat == null || lon == null
    122                     || lon_ref == null) {
    123                 readNoTags(file);
    124             }
    125             double latValue = 0;
    126             double lonValue = 0;
    127             double caValue = 0;
    128             if (lat != null && lat.getValue() instanceof RationalNumber[])
    129                 latValue = DegMinSecToDouble((RationalNumber[]) lat.getValue(),
    130                         lat_ref.getValue().toString());
    131             if (lon != null && lon.getValue() instanceof RationalNumber[])
    132                 lonValue = DegMinSecToDouble((RationalNumber[]) lon.getValue(),
    133                         lon_ref.getValue().toString());
    134             if (ca != null && ca.getValue() instanceof RationalNumber)
    135                 caValue = ((RationalNumber) ca.getValue()).doubleValue();
    136             if (lat_ref.getValue().toString().equals("S"))
    137                 latValue = -latValue;
    138             if (lon_ref.getValue().toString().equals("W"))
    139                 lonValue = -lonValue;
    140             if (datetimeOriginal != null)
    141                 MapillaryData.getInstance().add(
    142                         new MapillaryImportedImage(latValue, lonValue, caValue,
    143                                 file, datetimeOriginal.getStringValue()));
    144             else
    145                 MapillaryData.getInstance().add(
    146                         new MapillaryImportedImage(latValue, lonValue, caValue,
    147                                 file, currentDate()));
    148         }
    149     }
     95        /**
     96        * Reads a jpg pictures that contains the needed GPS information (position
     97        * and direction) and creates a new icon in that position.
     98        *
     99        * @param file
     100        * @throws ImageReadException
     101        * @throws IOException
     102        */
     103        public void readJPG(File file) throws ImageReadException, IOException {
     104                final ImageMetadata metadata = Imaging.getMetadata(file);
     105                if (metadata instanceof JpegImageMetadata) {
     106                        final JpegImageMetadata jpegMetadata = (JpegImageMetadata) metadata;
     107                        final TiffField lat_ref = jpegMetadata
     108                                        .findEXIFValueWithExactMatch(GpsTagConstants.GPS_TAG_GPS_LATITUDE_REF);
     109                        final TiffField lat = jpegMetadata
     110                                        .findEXIFValueWithExactMatch(GpsTagConstants.GPS_TAG_GPS_LATITUDE);
     111                        final TiffField lon_ref = jpegMetadata
     112                                        .findEXIFValueWithExactMatch(GpsTagConstants.GPS_TAG_GPS_LONGITUDE_REF);
     113                        final TiffField lon = jpegMetadata
     114                                        .findEXIFValueWithExactMatch(GpsTagConstants.GPS_TAG_GPS_LONGITUDE);
     115                        final TiffField ca = jpegMetadata
     116                                        .findEXIFValueWithExactMatch(GpsTagConstants.GPS_TAG_GPS_IMG_DIRECTION);
     117                        final TiffField datetimeOriginal = jpegMetadata
     118                                        .findEXIFValueWithExactMatch(ExifTagConstants.EXIF_TAG_DATE_TIME_ORIGINAL);
     119                        if (lat_ref == null || lat == null || lon == null
     120                                        || lon_ref == null) {
     121                                readNoTags(file);
     122                        }
     123                        double latValue = 0;
     124                        double lonValue = 0;
     125                        double caValue = 0;
     126                        if (lat != null && lat.getValue() instanceof RationalNumber[])
     127                                latValue = DegMinSecToDouble((RationalNumber[]) lat.getValue(),
     128                                                lat_ref.getValue().toString());
     129                        if (lon != null && lon.getValue() instanceof RationalNumber[])
     130                                lonValue = DegMinSecToDouble((RationalNumber[]) lon.getValue(),
     131                                                lon_ref.getValue().toString());
     132                        if (ca != null && ca.getValue() instanceof RationalNumber)
     133                                caValue = ((RationalNumber) ca.getValue()).doubleValue();
     134                        if (lat_ref.getValue().toString().equals("S"))
     135                                latValue = -latValue;
     136                        if (lon_ref.getValue().toString().equals("W"))
     137                                lonValue = -lonValue;
     138                        if (datetimeOriginal != null)
     139                                MapillaryData.getInstance().add(
     140                                                new MapillaryImportedImage(latValue, lonValue, caValue,
     141                                                                file, datetimeOriginal.getStringValue()));
     142                        else
     143                                MapillaryData.getInstance().add(
     144                                                new MapillaryImportedImage(latValue, lonValue, caValue,
     145                                                                file));
     146                }
     147        }
    150148
    151     /**
    152     * Reads a image file that doesn't contain the needed GPS information. And
    153     * creates a new icon in the middle of the map.
    154     *
    155     * @param file
    156     */
    157     private void readNoTags(File file) {
    158         double HORIZONTAL_DISTANCE = 0.0001;
    159         double horDev;
    160         if (noTagsPics % 2 == 0)
    161             horDev = HORIZONTAL_DISTANCE * noTagsPics / 2;
    162         else
    163             horDev = -HORIZONTAL_DISTANCE * (noTagsPics + 1) / 2;
    164         LatLon pos = Main.map.mapView.getProjection().eastNorth2latlon(
    165                 Main.map.mapView.getCenter());
    166         MapillaryData.getInstance().add(
    167                 new MapillaryImportedImage(pos.lat(), pos.lon() + horDev, 0,
    168                         file, currentDate()));
    169         noTagsPics++;
    170     }
     149        /**
     150        * Reads a image file that doesn't contain the needed GPS information. And
     151        * creates a new icon in the middle of the map.
     152        *
     153        * @param file
     154        */
     155        private void readNoTags(File file) {
     156                double HORIZONTAL_DISTANCE = 0.0001;
     157                double horDev;
     158                if (noTagsPics % 2 == 0)
     159                        horDev = HORIZONTAL_DISTANCE * noTagsPics / 2;
     160                else
     161                        horDev = -HORIZONTAL_DISTANCE * (noTagsPics + 1) / 2;
     162                LatLon pos = Main.map.mapView.getProjection().eastNorth2latlon(
     163                                Main.map.mapView.getCenter());
     164                MapillaryData.getInstance().add(
     165                                new MapillaryImportedImage(pos.lat(), pos.lon() + horDev, 0,
     166                                                file));
     167                noTagsPics++;
     168        }
    171169
    172     private void readPNG(File file) {
    173         readNoTags(file);
    174     }
     170        private void readPNG(File file) {
     171                readNoTags(file);
     172        }
    175173
    176     private double DegMinSecToDouble(RationalNumber[] degMinSec, String ref) {
    177         RationalNumber deg = degMinSec[0];
    178         RationalNumber min = degMinSec[1];
    179         RationalNumber sec = degMinSec[2];
    180         return deg.doubleValue() + min.doubleValue() / 60 + sec.doubleValue()
    181                 / 3600;
    182     }
    183 
    184     private String currentDate() {
    185         Calendar cal = Calendar.getInstance();
    186 
    187         SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd hh:mm:ss");
    188         return formatter.format(cal);
    189 
    190     }
     174        private double DegMinSecToDouble(RationalNumber[] degMinSec, String ref) {
     175                RationalNumber deg = degMinSec[0];
     176                RationalNumber min = degMinSec[1];
     177                RationalNumber sec = degMinSec[2];
     178                return deg.doubleValue() + min.doubleValue() / 60 + sec.doubleValue()
     179                                / 3600;
     180        }
    191181}
  • applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryFilterChooseSigns.java

    r31306 r31311  
    3939        JLabel maxspeedLabel = new JLabel(tr("Speed limit"));
    4040        maxspeedLabel.setIcon(new ImageProvider(
    41                 "styles/standard/vehicle/restriction/speed.png").get());
     41                "signs/speed.png").get());
    4242        maxspeedPanel.add(maxspeedLabel);
    4343        maxspeedPanel.add(maxspeed);
     
    4848        JLabel stopLabel = new JLabel(tr("Stop"));
    4949        stopLabel.setIcon(new ImageProvider(
    50                 "styles/standard/vehicle/restriction/stop.png").get());
     50                "signs/stop.png").get());
    5151        stopPanel.add(stopLabel);
    5252        stopPanel.add(stop);
     
    5757        JLabel giveWayLabel = new JLabel(tr("Give way"));
    5858        giveWayLabel.setIcon(new ImageProvider(
    59                 "styles/standard/vehicle/restriction/right_of_way.png").get());
     59                "signs/right_of_way.png").get());
    6060        giveWayPanel.add(giveWayLabel);
    6161        giveWayPanel.add(giveWay);
     
    6666        JLabel roundaboutLabel = new JLabel(tr("Give way"));
    6767        roundaboutLabel.setIcon(new ImageProvider(
    68                 "styles/standard/vehicle/restriction/roundabout_right.png")
     68                "signs/roundabout_right.png")
    6969                .get());
    7070        roundaboutPanel.add(roundaboutLabel);
     
    7777        JLabel noEntryLabel = new JLabel(tr("No entry"));
    7878        noEntryLabel.setIcon(new ImageProvider(
    79                 "no_entry.png").get());
     79                "signs/no_entry.png").get());
    8080        noEntryPanel.add(noEntryLabel);
    8181        noEntryPanel.add(access);
     
    8686        JLabel intersectionLabel = new JLabel(tr("Intersection danger"));
    8787        intersectionLabel.setIcon(new ImageProvider(
    88                 "intersection_danger.png").get());
     88                "signs/intersection_danger.png").get());
    8989        intersectionPanel.add(intersectionLabel);
    9090        intersectionPanel.add(intersection);
     
    9595        JLabel directionLabel = new JLabel(tr("Mandatory direction (any)"));
    9696        directionLabel.setIcon(new ImageProvider(
    97                 "/home/nokutu/josm/core/images/styles/standard/vehicle/restriction/turn_restrictions/only_straight_on.png").get());
     97                "signs/only_straight_on.png").get());
    9898        directionPanel.add(directionLabel);
    9999        directionPanel.add(direction);
  • applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryFilterDialog.java

    r31306 r31311  
    5050        private final JPanel panel = new JPanel(new GridLayout(ROWS, COLUMNS));
    5151
    52         private final JCheckBox imported = new JCheckBox("Imported images");
    53         private final JCheckBox downloaded = new JCheckBox(
     52        public final JCheckBox imported = new JCheckBox("Imported images");
     53        public final JCheckBox downloaded = new JCheckBox(
    5454                        new downloadCheckBoxAction());
    55         private final JCheckBox onlySigns = new JCheckBox(new OnlySignsAction());
    56         private final JComboBox<String> time;
    57         private final JTextField user;
    58 
    59         private final SideButton updateButton = new SideButton(new UpdateAction());
    60         private final SideButton resetButton = new SideButton(new ResetAction());
    61         private final JButton signChooser = new JButton(new SignChooserAction());
     55        public final JCheckBox onlySigns = new JCheckBox(new OnlySignsAction());
     56        public final JComboBox<String> time;
     57        public final JTextField user;
     58
     59        public final SideButton updateButton = new SideButton(new UpdateAction());
     60        public final SideButton resetButton = new SideButton(new ResetAction());
     61        public final JButton signChooser = new JButton(new SignChooserAction());
    6262
    6363        public final MapillaryFilterChooseSigns signFilter = MapillaryFilterChooseSigns
Note: See TracChangeset for help on using the changeset viewer.