Changeset 19671 in osm for applications/editors/josm


Ignore:
Timestamp:
2010-01-30T17:18:23+01:00 (15 years ago)
Author:
bastik
Message:

josm plugin photo_geotagging: first version

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  
    11README
    22======
    3 nothing here yet
     3This plugin is used to write latitude and longitude information
     4to the EXIF header of jpg files.
     5It extends the core geoimage feature of JOSM by adding a new entry
     6to the right click menu of any image layer.
     7
     8The real work (writing lat/lon values to file) is done by the pure Java
     9sanselan library.
     10
     11Note: 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
     13Author: Sebastian Klein
     14
     15License: 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  
    11<?xml version="1.0" encoding="UTF-8"?>
    22<!--
    3 ** This is a template build file for a JOSM  plugin.
    4 **
    5 ** Maintaining versions
    6 ** ====================
    7 ** see README.template
    8 **
    93** Usage
    104** =====
     
    6357    -->
    6458    <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 ... "/>
    6960        <copy todir="${plugin.build.dir}/images">
    7061            <fileset dir="images"/>
     
    7364            <fileset dir=".">
    7465                <include name="README" />
    75                 <include name="LICENSE" />
    7666            </fileset>
    7767        </copy>
     
    8676    -->
    8777            <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"/>
    9080                <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"/>
    9484                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    9585            </manifest>
Note: See TracChangeset for help on using the changeset viewer.