Changeset 19249 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2024-10-22T19:40:35+02:00 (4 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/geoimage/ImageMetadata.java
r18592 r19249 7 7 import java.io.UncheckedIOException; 8 8 import java.net.URI; 9 import java.nio.file.FileSystemNotFoundException; 9 10 import java.time.Instant; 10 11 import java.util.List; … … 262 263 /** 263 264 * Extract GPS metadata from image EXIF. Has no effect if the image file is not set 264 * 265 * <p> 265 266 * If successful, fills in the LatLon, speed, elevation, image direction, and other attributes 266 267 * @since 18592 (interface), 9270 (GpxImageEntry) … … 272 273 } catch (IOException e) { 273 274 throw new UncheckedIOException(e); 275 } catch (IllegalArgumentException | FileSystemNotFoundException e) { 276 throw new UncheckedIOException(new IOException(e)); 274 277 } 275 278 }
Note:
See TracChangeset
for help on using the changeset viewer.