source: ether_statistics/service/implementation/gov/noaa/pmel/util/Latitude.java @ 569

Last change on this file since 569 was 569, checked in by vmipsl, 12 years ago

Nouveau projet

File size: 638 bytes
Line 
1
2 package gov.noaa.pmel.util;
3
4/**
5* LatitudeValue translates between float and deg/min/sec.
6*/
7  public class Latitude extends GeographicValue {
8
9     // ---------------------------------------------
10     //
11     public Latitude( ) {
12        super();
13     }
14
15     // ---------------------------------------------
16     //
17     public Latitude( float latitude ) {
18        super( latitude );
19     }
20
21     // ---------------------------------------------
22     //
23     public static void main( String args[] ) {
24        Latitude l1 = new Latitude( -54.7002716064453f);
25        System.out.println(" toString: " + l1.toString());
26     }
27 
28  }
Note: See TracBrowser for help on using the repository browser.