Java 经纬度转UTM投影

java 经纬度转UTM投影

public class UtmConvert {

/* Ellipsoid model constants (actual values here are for WGS84) */
static double sm_a = 6378137.0;
static double sm_b = 6356752.314;
static double sm_EccSquared = 6.69437999013e-03;

static double UTMScaleFactor = 0.9996;


public static double DegToRad(double deg) {
	return (deg / 180.0 * Math.PI);
}


public static double RadToDeg(double rad) {
	return (rad / Math.PI * 180.0);
}

public static double ArcLengthOfMeridian(double phi) {
	double alpha, beta, gamma, delta, epsilon, n;
	double result;

	n = (sm_a - sm_b) / (sm_a + sm_b);

	alpha = ((sm_a + sm_b) / 2.0)
			* (1.0 + (Math.pow(n, 2.0) / 4.0) + (Math.pow(n, 4.0) / 64.0));

	beta = (-3.0 * n / 2.0) + (9.0 * Math.pow(n, 3.0) / 16.0)
			+ (-3.0 * Math.pow(n, 5.0) / 32.0);

	gamma = (15.0 * Math.pow(n, 2.0) / 16.0)
			+ (-15.0 * Math.pow(n, 4.0) / 32.0);


	delta = (-35.0 * Math.pow(n, 3.0) / 48.0)
			+ (105.0 * Math.pow(n, 5.0) / 256.0);


	epsilon = (315.0 * Math.pow(n, 4.0) / 512.0);

	result = alpha
			* (phi + (beta * Math.sin(2.0 * phi))
					+ (gamma * Math.sin(4.0 * phi))
					+ (delta * Math.sin(6.0 * phi)) + (epsilon * Math
					.sin(8.0 * phi)));

	return result;
}

public static double UTMCentralMeridian(int zone) {
	double cmeridian;

	cmeridian = DegToRad(-183.0 + (zone * 6.0));

	return cmeridian;
}

public static double FootpointLatitude(double y) {
	double y_, alpha_, beta_, gamma_, delta_, epsilon_, n;
	double result;

	n = (sm_a - sm_b) / (sm_a + sm_b);

	
	alpha_ = ((sm_a + sm_b) / 2.0)
			* (1 + (Math.pow(n, 2.0) / 4) + (Math.pow(n, 4.0) / 64));


	y_ = y / alpha_;

	
	beta_ = (3.0 * n / 2.0) + (-27.0 * Math.pow(n, 3.0) / 32.0)
			+ (269.0 * Math.pow(n, 5.0) / 512.0);


	gamma_ = (21.0 * Math.pow(n, 2.0) / 16.0)
			+ (-55.0 * Math.pow(n, 4.0) / 32.0);
			+ 
	delta_ = (151.0 * Math.pow(n, 3.0) / 96.0)
			+ (-417.0 * Math.pow(n, 5.0) / 128.0);

	epsilon_ = (1097.0 * Math.pow(n, 4.0) / 512.0);

	result = y_ + (beta_ * Math.sin(2.0 * y_))
			+ (gamma_ * Math.sin(4.0 * y_)) + (delta_ * Math.sin(6.0 * y_))
			+ (epsilon_ * Math.sin(8.0 * y_));

	return result;
}

public static void MapLatLonToXY(double phi, double lambda, double lambda0,
		double[] xy) {
	double N, nu2, ep2, t, t2, l;
	double l3coef, l4coef, l5coef, l6coef, l7coef, l8coef;
	//double tmp;

	/* Precalculate ep2 */
	ep2 = (Math.pow(sm_a, 2.0) - Math.pow(sm_b, 2.0)) / Math.pow(sm_b, 2.0);

	/* Precalculate nu2 */
	nu2 = ep2 * Math.pow(Math.cos(phi), 2.0);

	/* Precalculate N */
	N = Math.pow(sm_a, 2.0) / (sm_b * Math.sqrt(1 + nu2));

	/* Precalculate t */
	t = Math.tan(phi);
	t2 = t * t;
	//tmp = (t2 * t2 * t2) - Math.pow(t, 6.0);

	/* Precalculate l */
	l = lambda - lambda0;

	/*
	 * Precalculate coefficients for ln in the equations below so a normal
	 * human being can read the expressions for easting and northing -- l1
	 * and l2 have coefficients of 1.0
	 */
	l3coef = 1.0 - t2 + nu2;

	l4coef = 5.0 - t2 + 9 * nu2 + 4.0 * (nu2 * nu2);

	l5coef = 5.0 - 18.0 * t2 + (t2 * t2) + 14.0 * nu2 - 58.0 * t2 * nu2;

	l6coef = 61.0 - 58.0 * t2 + (t2 * t2) + 270.0 * nu2 - 330.0 * t2 * nu2;

	l7coef = 61.0 - 479.0 * t2 + 179.0 * (t2 * t2) - (t2 * t2 * t2);

	l8coef = 1385.0 - 3111.0 * t2 + 543.0 * (t2 * t2) - (t2 * t2 * t2);

	/* Calculate easting (x) */
	xy[0] = N
			* Math.cos(phi)
			* l
			+ (N / 6.0 * Math.pow(Math.cos(phi), 3.0) * l3coef * Math.pow(
					l, 3.0))
			+ (N / 120.0 * Math.pow(Math.cos(phi), 5.0) * l5coef * Math
					.pow(l, 5.0))
			+ (N / 5040.0 * Math.pow(Math.cos(phi), 7.0) * l7coef * Math
					.pow(l, 7.0));

	/* Calculate northing (y) */
	xy[1] = ArcLengthOfMeridian(phi)
			+ (t / 2.0 * N * Math.pow(Math.cos(phi), 2.0) * Math
					.pow(l, 2.0))
			+ (t / 24.0 * N * Math.pow(Math.cos(phi), 4.0) * l4coef * Math
					.pow(l, 4.0))
			+ (t / 720.0 * N * Math.pow(Math.cos(phi), 6.0) * l6coef * Math
					.pow(l, 6.0))
			+ (t / 40320.0 * N * Math.pow(Math.cos(phi), 8.0) * l8coef * Math
					.pow(l, 8.0));

	return;
}

public static void MapXYToLatLon(double x, double y, double lambda0,
		double[] philambda) {
	double phif, Nf, Nfpow, nuf2, ep2, tf, tf2, tf4, cf;
	double x1frac, x2frac, x3frac, x4frac, x5frac, x6frac, x7frac, x8frac;
	double x2poly, x3poly, x4poly, x5poly, x6poly, x7poly, x8poly;

	/* Get the value of phif, the footpoint latitude. */
	phif = FootpointLatitude(y);

	/* Precalculate ep2 */
	ep2 = (Math.pow(sm_a, 2.0) - Math.pow(sm_b, 2.0)) / Math.pow(sm_b, 2.0);

	/* Precalculate cos (phif) */
	cf = Math.cos(phif);

	/* Precalculate nuf2 */
	nuf2 = ep2 * Math.pow(cf, 2.0);

	/* Precalculate Nf and initialize Nfpow */
	Nf = Math.pow(sm_a, 2.0) / (sm_b * Math.sqrt(1 + nuf2));
	Nfpow = Nf;

	/* Precalculate tf */
	tf = Math.tan(phif);
	tf2 = tf * tf;
	tf4 = tf2 * tf2;

	/*
	 * Precalculate fractional coefficients for xn in the equations below to
	 * simplify the expressions for latitude and longitude.
	 */
	x1frac = 1.0 / (Nfpow * cf);

	Nfpow *= Nf; /* now equals Nf2) */
	x2frac = tf / (2.0 * Nfpow);

	Nfpow *= Nf; /* now equals Nf3) */
	x3frac = 1.0 / (6.0 * Nfpow * cf);

	Nfpow *= Nf; /* now equals Nf4) */
	x4frac = tf / (24.0 * Nfpow);

	Nfpow *= Nf; /* now equals Nf5) */
	x5frac = 1.0 / (120.0 * Nfpow * cf);

	Nfpow *= Nf; /* now equals Nf6) */
	x6frac = tf / (720.0 * Nfpow);

	Nfpow *= Nf; /* now equals Nf7) */
	x7frac = 1.0 / (5040.0 * Nfpow * cf);

	Nfpow *= Nf; /* now equals Nf8) */
	x8frac = tf / (40320.0 * Nfpow);

	x2poly = -1.0 - nuf2;

	x3poly = -1.0 - 2 * tf2 - nuf2;

	x4poly = 5.0 + 3.0 * tf2 + 6.0 * nuf2 - 6.0 * tf2 * nuf2 - 3.0
			* (nuf2 * nuf2) - 9.0 * tf2 * (nuf2 * nuf2);

	x5poly = 5.0 + 28.0 * tf2 + 24.0 * tf4 + 6.0 * nuf2 + 8.0 * tf2 * nuf2;

	x6poly = -61.0 - 90.0 * tf2 - 45.0 * tf4 - 107.0 * nuf2 + 162.0 * tf2
			* nuf2;

	x7poly = -61.0 - 662.0 * tf2 - 1320.0 * tf4 - 720.0 * (tf4 * tf2);

	x8poly = 1385.0 + 3633.0 * tf2 + 4095.0 * tf4 + 1575 * (tf4 * tf2);

	philambda[0] = phif + x2frac * x2poly * (x * x) + x4frac * x4poly
			* Math.pow(x, 4.0) + x6frac * x6poly * Math.pow(x, 6.0)
			+ x8frac * x8poly * Math.pow(x, 8.0);

	philambda[1] = lambda0 + x1frac * x + x3frac * x3poly
			* Math.pow(x, 3.0) + x5frac * x5poly * Math.pow(x, 5.0)
			+ x7frac * x7poly * Math.pow(x, 7.0);

}

public static double[] getBounds(double[] xy1, double[] xy2)
		throws Exception {
	double[] utm1 = GeoConvert.toUtm(xy1[0], xy1[1]);
	
	double[] utm2 = GeoConvert.toUtm(xy2[0], xy2[1]);

	double[] utmBounds = { Math.abs(utm1[0] - utm2[0]),
			Math.abs(utm1[1] - utm2[1]) };

	return utmBounds;
}

public static int[] getPos(double lon, double lat, double[] xy1,
		double[] xy2, int height, int width) throws Exception {
	double[] utmPoint = GeoConvert.toUtm(lat, lon);

	double[] utmBounds = getBounds(xy1, xy2);

	double[] utmXy2 = GeoConvert.toUtm(xy2[0], xy2[1]);

	double pdiffX = (utmXy2[0] - utmPoint[0]) / utmBounds[0];
	double pdiffY = (1 - (utmXy2[1] - utmPoint[1]) / utmBounds[1]);

	int[] xy = { 0, 0 };
	xy[0] = (int) ((height * pdiffY) / 2) + 300;
	xy[1] = (int) ((width * pdiffX) / 2) + 300;

	return xy;
}

public static int LatLonToUTMXY(double lat, double lon, int zone,
		double[] xy) {
	MapLatLonToXY(lat, lon, UTMCentralMeridian(zone), xy);
	xy[0] = xy[0] * UTMScaleFactor + 500000.0;
	xy[1] = xy[1] * UTMScaleFactor;
	if (xy[1] < 0.0)
		xy[1] = xy[1] + 10000000.0;

	return zone;
}


public static void UTMXYToLatLon(double x, double y, int zone,
		boolean southhemi, double[] latlon) {
	double cmeridian;

	x -= 500000.0;
	x /= UTMScaleFactor;

	if (southhemi)
		y -= 10000000.0;

	y /= UTMScaleFactor;

	cmeridian = UTMCentralMeridian(zone);
	MapXYToLatLon(x, y, cmeridian, latlon);

	return;
}

public static double[] toUtm(double lon, double lat) throws Exception {
	double[] xy = { 0, 0 };

	if ((lon < -180.0) || (180.0 <= lon)) {
		throw new Exception("The longitude you entered is out of range.  "
				+ "Please enter a number in the range [-180, 180).");

	}

	if ((lat < -90.0) || (90.0 < lat)) {
		throw new Exception("The latitude you entered is out of range.  "
				+ "Please enter a number in the range [-90, 90].");

	}

	// Compute the UTM zone.
	int zone = (int) Math.floor((lon + 180.0) / 6) + 1;

	zone = LatLonToUTMXY(DegToRad(lat), DegToRad(lon), zone, xy);

	// System.out.println("X:" + xy[0]);
	// System.out.println("Y:" + xy[1]);
	// System.out.println("Zone:" + zone);

	return xy;
	// if (lat < 0)
	// // Set the S button.
	// document.frmConverter.rbtnHemisphere[1].checked = true;
	// else
	// // Set the N button.
	// document.frmConverter.rbtnHemisphere[0].checked = true;

}

public static String toMGRS(double lon, double lat) throws Exception {
	
	double[] xy = toUtm(lon, lat);
	
	String[][] eastings = {
			{"S", "T", "U", "V", "W", "X", "Y", "Z"},
			{"A", "B", "C", "D", "E", "F", "G", "H"},
			{"J", "K", "L", "M", "N", "P", "Q", "R"}
	};
	
	String [] northings = {"A", "B", "C", "D", "E", "F", "G",
							"H", "J", "K", "L", "M", "N", "P",
							"Q", "R", "S", "T", "U", "V"};
	
	int zone = (int) Math.floor((lon + 180.0) / 6) + 1;
	boolean zoneIsEven = (zone % 2) == 0;
	String band = getZoneBand(lat);
	
	String x = String.format("%6s", String.valueOf(Math.round(xy[0]))).replaceAll(" ", "0");
	String y = String.format("%7s", String.valueOf(Math.round(xy[1]))).replaceAll(" ", "0");
	
	String easting = eastings[zone % 3][Integer.parseInt(x.substring(0,1)) - 1];
	String northing = northings[((Integer.parseInt(y.substring(0,2))  + (zoneIsEven ? 5 : 0)) % 20)];
	
	return zone + band + " " + easting + northing + " " + x.substring(1,6) + " " + y.substring(2,7);
}

public static String getZoneBand(double lat) throws Exception {
	
	String [] bands = {"C", "D", "E", "F", "G", "H", "J",
						"K", "L", "M", "N", "P", "Q", "R",
						"S", "T", "U", "V", "W"};
	
	if(lat >= -80.0 && lat < 72.0) {
		return bands[((int) lat + 80) / 8];
	}
	else if(lat >= 72.0 && lat < 84.0) {
		return "X";
	}
	else
		throw new Exception("Latitude must be between -80 and +84");
}

}

单元测试:
import static org.junit.Assert.assertEquals;

public classUtmConvertTest {

public void testConvertToUTM() throws Exception {

	double[] utm = UtmoConvert.toUtm(48.188767, 16.418349);
	assertEquals(199753.6610440401, utm[0], 0);
	assertEquals(1817294.8635275129, utm[1], 0);
	System.out.println("X: " + utm[0]);
	System.out.println("X: " + utm[1]);
}

}

评论 16
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

番茄辣酱魂

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值