Profile.java :  » Google-tech » dsm2-grid-map » gov » ca » modeling » maps » elevation » client » model » Java Open Source

Java Open Source » Google tech » dsm2 grid map 
dsm2 grid map » gov » ca » modeling » maps » elevation » client » model » Profile.java
package gov.ca.modeling.maps.elevation.client.model;


import java.io.Serializable;
import java.util.List;

@SuppressWarnings("serial")
public class Profile implements Serializable {
  /**
   * A unique id given to this profile
   */
  public long id;
  /**
   * The points starting from x1,y1 which x representing the distance along
   * the cross section from (x1,y1) and y representing the elevation and z
   * representing the perpendicular distance to the xsection (0 in all cases)
   */
  public List<DataPoint> points;
  /**
   * The line between x1,y1 and x2,y2 in UTM coordinates is the cross section
   * line on the surface of the earth.
   */
  public double x1, y1, x2, y2;
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.