e0e8afb095af2f956b4fceddf8ba0a85f4f2a979
[fw/altos] / altoslib / AltosMapTransform.java
1 /*
2  * Copyright © 2014 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 package org.altusmetrum.altoslib_7;
19
20 import java.io.*;
21 import java.lang.Math;
22 import java.util.*;
23 import java.util.concurrent.*;
24
25 public class AltosMapTransform {
26
27         double  scale_x, scale_y;
28
29         double  offset_x, offset_y;
30
31         public AltosLatLon lat_lon (AltosPointDouble point) {
32                 double lat, lon;
33                 double rads;
34
35                 lon = point.x/scale_x;
36                 rads = 2 * Math.atan(Math.exp(-point.y/scale_y));
37                 lat = Math.toDegrees(rads - Math.PI/2);
38
39                 return new AltosLatLon(lat,lon);
40         }
41
42         public AltosPointDouble screen_point(AltosPointInt screen) {
43                 return new AltosPointDouble(screen.x + offset_x, screen.y + offset_y);
44         }
45
46         public AltosPointDouble screen_point(AltosPointDouble screen) {
47                 return new AltosPointDouble(screen.x + offset_x, screen.y + offset_y);
48         }
49
50         public AltosLatLon screen_lat_lon(AltosPointInt screen) {
51                 return lat_lon(screen_point(screen));
52         }
53
54         public AltosLatLon screen_lat_lon(AltosPointDouble screen) {
55                 return lat_lon(screen_point(screen));
56         }
57
58         public AltosPointDouble point(AltosLatLon lat_lon) {
59                 double x, y;
60                 double e;
61
62                 x = lat_lon.lon * scale_x;
63
64                 e = Math.sin(Math.toRadians(lat_lon.lat));
65                 e = Math.max(e,-(1-1.0E-15));
66                 e = Math.min(e,  1-1.0E-15 );
67
68                 y = 0.5*Math.log((1+e)/(1-e))*-scale_y;
69
70                 return new AltosPointDouble(x, y);
71         }
72
73         public AltosPointDouble screen(AltosPointDouble point) {
74                 return new AltosPointDouble(point.x - offset_x, point.y - offset_y);
75         }
76
77         public AltosPointInt screen(AltosPointInt point) {
78                 return new AltosPointInt((int) (point.x - offset_x + 0.5),
79                                          (int) (point.y - offset_y + 0.5));
80         }
81
82         public AltosRectangle screen(AltosMapRectangle map_rect) {
83                 AltosPointDouble        ul = screen(map_rect.ul);
84                 AltosPointDouble        lr = screen(map_rect.lr);
85
86                 return new AltosRectangle((int) ul.x, (int) ul.y, (int) (lr.x - ul.x), (int) (lr.y - ul.y));
87         }
88
89         public AltosPointDouble screen(AltosLatLon lat_lon) {
90                 return screen(point(lat_lon));
91         }
92
93         private boolean has_location;
94
95         public boolean has_location() {
96                 return has_location;
97         }
98
99         public AltosMapTransform(int width, int height, int zoom, AltosLatLon centre_lat_lon) {
100                 scale_x = 256/360.0 * Math.pow(2, zoom);
101                 scale_y = 256/(2.0*Math.PI) * Math.pow(2, zoom);
102
103                 AltosPointDouble centre_pt = point(centre_lat_lon);
104
105                 has_location = (centre_lat_lon.lat != 0 || centre_lat_lon.lon != 0);
106                 offset_x = centre_pt.x - width / 2.0;
107                 offset_y = centre_pt.y - height / 2.0;
108         }
109 }