~ubuntu-branches/ubuntu/saucy/gpsprune/saucy

« back to all changes in this revision

Viewing changes to tim/prune/FunctionLibrary.java

  • Committer: Bazaar Package Importer
  • Author(s): David Paleino
  • Date: 2010-05-06 00:08:17 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100506000817-uxan1bazwz66g0q5
Tags: 10-1
* New upstream version
* debian/copyright:
  - updated to include new info about generated and binary files in
    tim/prune/function/srtm/
* debian/scripts/get-tiles.py added, can be used to re-generate
  tiles*.txt files (see debian/copyright)
* debian/rules:
  - added srtmtiles target; re-build the srtmtiles.dat binary file
    at build-time
  - added tim/prune/function/srtm/srtmtiles.dat to JH_JAR_EXTRA
* debian/patches/00-fix_readme_in_about.patch removed, merged upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
import tim.prune.function.distance.DistanceFunction;
8
8
import tim.prune.function.edit.PointNameEditor;
9
9
import tim.prune.function.gpsies.GetGpsiesFunction;
 
10
import tim.prune.function.srtm.LookupSrtmFunction;
10
11
import tim.prune.load.GpsLoader;
11
12
import tim.prune.save.GpsSaver;
12
13
import tim.prune.save.GpxExporter;
28
29
        public static RearrangeWaypointsFunction FUNCTION_REARRANGE_WAYPOINTS = null;
29
30
        public static GenericFunction FUNCTION_REARRANGE_PHOTOS = null;
30
31
        public static GenericFunction FUNCTION_COMPRESS = null;
 
32
        public static GenericFunction FUNCTION_LOOKUP_SRTM = null;
31
33
        public static GenericFunction FUNCTION_ADD_TIME_OFFSET  = null;
32
34
        public static GenericFunction FUNCTION_ADD_ALTITUDE_OFFSET  = null;
33
35
        public static GenericFunction FUNCTION_CONVERT_NAMES_TO_TIMES  = null;
44
46
        public static GenericFunction FUNCTION_FULL_RANGE_DETAILS = null;
45
47
        public static GenericFunction FUNCTION_GET_GPSIES = null;
46
48
        public static GenericFunction FUNCTION_SET_MAP_BG = null;
 
49
        public static GenericFunction FUNCTION_SET_DISK_CACHE = null;
47
50
        public static GenericFunction FUNCTION_SET_PATHS  = null;
48
51
        public static GenericFunction FUNCTION_SET_KMZ_IMAGE_SIZE = null;
49
52
        public static GenericFunction FUNCTION_SET_COLOURS = null;
70
73
                FUNCTION_REARRANGE_WAYPOINTS = new RearrangeWaypointsFunction(inApp);
71
74
                FUNCTION_REARRANGE_PHOTOS = new RearrangePhotosFunction(inApp);
72
75
                FUNCTION_COMPRESS = new CompressTrackFunction(inApp);
 
76
                FUNCTION_LOOKUP_SRTM = new LookupSrtmFunction(inApp);
73
77
                FUNCTION_ADD_TIME_OFFSET = new AddTimeOffset(inApp);
74
78
                FUNCTION_ADD_ALTITUDE_OFFSET = new AddAltitudeOffset(inApp);
75
79
                FUNCTION_CONVERT_NAMES_TO_TIMES = new ConvertNamesToTimes(inApp);
86
90
                FUNCTION_FULL_RANGE_DETAILS = new FullRangeDetails(inApp);
87
91
                FUNCTION_GET_GPSIES = new GetGpsiesFunction(inApp);
88
92
                FUNCTION_SET_MAP_BG = new SetMapBgFunction(inApp);
 
93
                FUNCTION_SET_DISK_CACHE = new DiskCacheConfig(inApp);
89
94
                FUNCTION_SET_PATHS = new SetPathsFunction(inApp);
90
95
                FUNCTION_SET_KMZ_IMAGE_SIZE = new SetKmzImageSize(inApp);
91
96
                FUNCTION_SET_COLOURS = new SetColours(inApp);