org.deegree_impl.io.shpapi
Class SHPEnvelope

java.lang.Object
  extended byorg.deegree_impl.io.shpapi.SHPEnvelope
All Implemented Interfaces:
java.io.Serializable

public class SHPEnvelope
extends java.lang.Object
implements java.io.Serializable

Class representing a rectangle - envelope.

Last changes:
07.01.2000 ap: all methods copied from Rectangle.java
07.01.2000 ap: constructor renamed
17.01.2000 ap: constructor SHPEnvelope(ESRIBoundingBox Ebb) removed
17.01.2000 ap: constructor SHPEnvelope(SHPEnvelope env)implemented
01.08.2000 ap: method writeSHPEnvelope() added

Version:
01.08.2000
Author:
Andreas Poth
See Also:
Serialized Form

Field Summary
 double east
           
 double north
           
static int recEast
           
static int recNorth
           
static int recSouth
           
static int recWest
          this order: west, east, north, south
 double south
           
 double west
           
 
Constructor Summary
SHPEnvelope()
           
SHPEnvelope(byte[] recBuf)
           
SHPEnvelope(double westbc, double eastbc, double northbc, double southbc)
           
SHPEnvelope(SHPEnvelope env)
          create from an existing SHPEnvelope
SHPEnvelope(SHPPoint min, SHPPoint max)
          Transform from WKBPoint to Rectangle
 
Method Summary
 java.lang.String toString()
           
 byte[] writeBESHPEnvelope()
           
 byte[] writeLESHPEnvelope()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

recWest

public static int recWest
this order: west, east, north, south


recSouth

public static int recSouth

recEast

public static int recEast

recNorth

public static int recNorth

west

public double west

east

public double east

north

public double north

south

public double south
Constructor Detail

SHPEnvelope

public SHPEnvelope()

SHPEnvelope

public SHPEnvelope(double westbc,
                   double eastbc,
                   double northbc,
                   double southbc)

SHPEnvelope

public SHPEnvelope(SHPPoint min,
                   SHPPoint max)
Transform from WKBPoint to Rectangle


SHPEnvelope

public SHPEnvelope(SHPEnvelope env)
create from an existing SHPEnvelope


SHPEnvelope

public SHPEnvelope(byte[] recBuf)
Method Detail

writeLESHPEnvelope

public byte[] writeLESHPEnvelope()

writeBESHPEnvelope

public byte[] writeBESHPEnvelope()

toString

public java.lang.String toString()