jwo.landserf.structure
Class VectHeader

java.lang.Object
  |
  +--jwo.landserf.structure.VectHeader
All Implemented Interfaces:
Serializable

public class VectHeader
extends Object
implements Serializable

Class for supplementary vector information. Includes georeferenced boundaries, title and notes.

Version:
1.8.0, 24th January, 1999.
Author:
Jo Wood
See Also:
Serialized Form

Field Summary
 double east
          Eastern boundary of vector.
 double north
          Northern boundary of vector.
 String notes
          Notes associated with vector.
 double south
          Southern boundary of vector.
 String title
          Title of vector.
 double west
          Western boundary of vector.
 
Constructor Summary
VectHeader()
          Creates raster header information with default values.
VectHeader(String name, double north, double south, double east, double west)
          Creates a new vector header with given title, and boundary.
VectHeader(VectHeader oldHeader)
          Creates a copy of an existing vector header object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

title

public String title
Title of vector.


notes

public String notes
Notes associated with vector.


north

public double north
Northern boundary of vector.


south

public double south
Southern boundary of vector.


east

public double east
Eastern boundary of vector.


west

public double west
Western boundary of vector.

Constructor Detail

VectHeader

public VectHeader()
Creates raster header information with default values. Header is initialised as


VectHeader

public VectHeader(VectHeader oldHeader)
Creates a copy of an existing vector header object.

Parameters:
oldHeader - vector header object to copy.

VectHeader

public VectHeader(String name,
                  double north,
                  double south,
                  double east,
                  double west)
Creates a new vector header with given title, and boundary.

Parameters:
name - Title of vector.
north - Northern boundary of vector.
south - Southern boundary of vector.
east - Eastern boundary of vector.
west - Western boundary of vector.