~opensatnav-admins/opensatnav/release-1.0

« back to all changes in this revision

Viewing changes to src/org/opensatnav/android/contribute/util/UnitConversions.java

  • Committer: Kieran Fleming
  • Date: 2010-12-13 13:13:48 UTC
  • Revision ID: kieran.fleming@gmail.com-20101213131348-pixo12i0wjf11jk3
Add all the missing stuff from the failed package rename

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2008 Google Inc.
 
3
 * 
 
4
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 
5
 * use this file except in compliance with the License. You may obtain a copy of
 
6
 * the License at
 
7
 * 
 
8
 * http://www.apache.org/licenses/LICENSE-2.0
 
9
 * 
 
10
 * Unless required by applicable law or agreed to in writing, software
 
11
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
12
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
13
 * License for the specific language governing permissions and limitations under
 
14
 * the License.
 
15
 */
 
16
package org.opensatnav.android.contribute.util;
 
17
 
 
18
/**
 
19
 * Unit conversion constants.
 
20
 * 
 
21
 * @author Sandor Dornbush
 
22
 */
 
23
public abstract class UnitConversions {
 
24
 
 
25
  public static final double KM_TO_MI = 0.621371192;
 
26
  public static final double M_TO_FT = 3.2808399;
 
27
  public static final double MI_TO_M = 1609.344;
 
28
  public static final double MI_TO_FEET = 5280.0;
 
29
  public static final double KMH_TO_MPH = 1000 * M_TO_FT / MI_TO_FEET;
 
30
  public static final double TO_RADIANS = Math.PI / 180.0;
 
31
 
 
32
  protected UnitConversions() {
 
33
  }
 
34
}