Class Strip

java.lang.Object
  |
  +--Strip

public class Strip
extends Object


Field Summary
protected  Request associatedRequest
          request associated with the strip
protected  Image[] cImage
          pair of possible acquisitions of the strip.
protected  double DUj
          duration of the strip acquisition in seconds
protected  double fr
          ratio between the surface of the strip and the surface of the associated request
protected  GeoPoint geoPoint0
          geographic points 0 and 1, i.e. first and second ends of the strip
protected  GeoPoint geoPoint1
          geographic points 0 and 1, i.e. first and second ends of the strip
protected  Integer j
          index of the strip
protected  Integer Rj
          index of the request which the strip comes from
protected  double SUj
          useful surface of the strip in square kilometers
protected  int Twj
          index of the twin strip in case of a stereo request 0 in case of a mono request
 
Constructor Summary
Strip(Integer j, Integer Rj, int Twj, double SUj, double DUj, GeoPoint geoPoint0, GeoPoint geoPoint1, Request associatedRequest)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

j

protected Integer j
index of the strip

Rj

protected Integer Rj
index of the request which the strip comes from

Twj

protected int Twj
index of the twin strip in case of a stereo request 0 in case of a mono request

SUj

protected double SUj
useful surface of the strip in square kilometers

DUj

protected double DUj
duration of the strip acquisition in seconds

geoPoint0

protected GeoPoint geoPoint0
geographic points 0 and 1, i.e. first and second ends of the strip

geoPoint1

protected GeoPoint geoPoint1
geographic points 0 and 1, i.e. first and second ends of the strip

associatedRequest

protected Request associatedRequest
request associated with the strip

fr

protected double fr
ratio between the surface of the strip and the surface of the associated request

cImage

protected Image[] cImage
pair of possible acquisitions of the strip.
the first going from the geographic point 0 to the geographic point 1.
the second going from the geographic point 1 to the geographic point 0.
Constructor Detail

Strip

public Strip(Integer j,
             Integer Rj,
             int Twj,
             double SUj,
             double DUj,
             GeoPoint geoPoint0,
             GeoPoint geoPoint1,
             Request associatedRequest)