Changeset 19671 in osm for applications/editors/josm
- Timestamp:
- 2010-01-30T17:18:23+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/photo_geotagging
- Files:
-
- 7 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/photo_geotagging/README
r19664 r19671 1 1 README 2 2 ====== 3 nothing here yet 3 This plugin is used to write latitude and longitude information 4 to the EXIF header of jpg files. 5 It extends the core geoimage feature of JOSM by adding a new entry 6 to the right click menu of any image layer. 7 8 The real work (writing lat/lon values to file) is done by the pure Java 9 sanselan library. 10 11 Note: Although sanselan is a proper apache commons project, there was not much activity recently (End of 2009). So let's hope, it is stable enough and gets fixed, if necessary. 12 13 Author: Sebastian Klein 14 15 License: GPL v2 or above. (Note: When used together with sanselan library only GPL v3 or above can be used.) -
applications/editors/josm/plugins/photo_geotagging/build.xml
r19664 r19671 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <!-- 3 ** This is a template build file for a JOSM plugin.4 **5 ** Maintaining versions6 ** ====================7 ** see README.template8 **9 3 ** Usage 10 4 ** ===== … … 63 57 --> 64 58 <target name="dist" depends="compile,revision"> 65 <echo message="creating ${plugin.jar.name} ... "/> 66 <copy todir="${plugin.build.dir}/resources"> 67 <fileset dir="resources"/> 68 </copy> 59 <echo message="creating ${ant.project.name}.jar ... "/> 69 60 <copy todir="${plugin.build.dir}/images"> 70 61 <fileset dir="images"/> … … 73 64 <fileset dir="."> 74 65 <include name="README" /> 75 <include name="LICENSE" />76 66 </fileset> 77 67 </copy> … … 86 76 --> 87 77 <manifest> 88 <attribute name="Author" value=" ..."/>89 <attribute name="Plugin-Class" value=" ..."/>78 <attribute name="Author" value="Sebastian Klein"/> 79 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.photo_geotagging.GeotaggingPlugin"/> 90 80 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 91 <attribute name="Plugin-Description" value=" ..."/>92 <attribute name="Plugin-Link" value=" ..."/>93 <attribute name="Plugin-Mainversion" value=" ..."/>81 <attribute name="Plugin-Description" value="Write gps position info to the image file header. Run this feature from the right click menu of the image layer."/> 82 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Photo_Geotagging"/> 83 <attribute name="Plugin-Mainversion" value="2904"/> 94 84 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 95 85 </manifest>
Note:
See TracChangeset
for help on using the changeset viewer.