/**
* Copyright 2014 David L. Whitehurst
*
* Licensed under the Apache License, Version 2.0
* (the "License"); You may not use this file except
* in compliance with the License. You may obtain a
* copy of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific
* language governing permissions and limitations under the
* License.
*
* Code developed and licensed here for com.dlw packaging was
* formulated, copied, written, drafted, or otherwise created by
* David L. Whitehurst, at dlwhitehurst@me.com. This license is
* freely available to the general public and is used here because
* it provides the foundation for the use, duplication, and sharing
* of open source software code. The cummulative code base under this
* packaging was not written, maintained, or otherwise deployed by
* the Apache Group. This code does not reflect the technological
* growth at apache.org or the Apache Software Foundation community
* collective.
*
*/
package org.musicrecital.util;
import java.math.BigDecimal;
/**
* @author <a href="mailto:dlwhitehurst@me.com">David L. Whitehurst</a>
* @version $Id: f09703ff6ef7af673e8f349345addc1a8babc487 $
*
*/
public class ZipCodeUtil {
public BigDecimal getDistanceBetweenZipsInKilometers(BigDecimal Lon1, BigDecimal Lat1, BigDecimal Lon2, BigDecimal Lat2){
// TODO - implement and test
return new BigDecimal("0.00");
}
public BigDecimal getDistanceBetweenZipsInMiles(BigDecimal Lon1, BigDecimal Lat1, BigDecimal Lon2, BigDecimal Lat2){
// TODO - implement and test
return new BigDecimal("0.00");
}
}