#include <vtkGeoGraticule.h>
This filter generates polydata to illustrate the distortions introduced by a map projection. The level parameter specifies the number of lines to be drawn. Poles are treated differently than other regions; hence the use of a Level parameter instead of a NumberOfLines parameter. The latitude and longitude are specified as half-open intervals with units of degrees. By default the latitude bounds are [-90,90[ and the longitude bounds are [0,180[.
Definition at line 43 of file vtkGeoGraticule.h.
Public Types | |
enum | LevelLimits { LEVEL_MIN = 0, LEVEL_MAX = 11, NUMBER_OF_LEVELS = ( LEVEL_MAX - LEVEL_MIN + 1 ) } |
enum | GeometryType { POLYLINES = 0x1, QUADRILATERALS = 0x2 } |
typedef vtkPolyDataAlgorithm | Superclass |
Public Member Functions | |
virtual void | PrintSelf (ostream &os, vtkIndent indent) |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
virtual void | SetLatitudeBounds (double, double) |
void | SetLatitudeBounds (double[2]) |
virtual double * | GetLatitudeBounds () |
virtual void | GetLatitudeBounds (double &, double &) |
virtual void | GetLatitudeBounds (double[2]) |
virtual void | SetLongitudeBounds (double, double) |
void | SetLongitudeBounds (double[2]) |
virtual double * | GetLongitudeBounds () |
virtual void | GetLongitudeBounds (double &, double &) |
virtual void | GetLongitudeBounds (double[2]) |
virtual void | SetLatitudeLevel (int) |
virtual int | GetLatitudeLevel () |
virtual void | SetLongitudeLevel (int) |
virtual int | GetLongitudeLevel () |
virtual void | SetGeometryType (int) |
virtual int | GetGeometryType () |
Static Public Member Functions | |
static vtkGeoGraticule * | New () |
static int | IsTypeOf (const char *type) |
static vtkGeoGraticule * | SafeDownCast (vtkObject *o) |
static double | GetLatitudeDelta (int level) |
static double | GetLongitudeDelta (int level) |
Protected Member Functions | |
vtkGeoGraticule () | |
virtual | ~vtkGeoGraticule () |
virtual int | RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *) |
void | GenerateGraticule (vtkPolyData *output, double latbds[2], double lngbds[2]) |
int | ComputeLineLevel (int ticId, int baseLevel, const double *levelIncrements) |
Protected Attributes | |
int | GeometryType |
double | LatitudeBounds [2] |
double | LongitudeBounds [2] |
int | LatitudeLevel |
int | LongitudeLevel |
Static Protected Attributes | |
static double | LatitudeLevelTics [NUMBER_OF_LEVELS] |
static double | LongitudeLevelTics [NUMBER_OF_LEVELS] |
vtkGeoGraticule::vtkGeoGraticule | ( | ) | [protected] |
virtual vtkGeoGraticule::~vtkGeoGraticule | ( | ) | [protected, virtual] |
static vtkGeoGraticule* vtkGeoGraticule::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkPolyDataAlgorithm.
virtual void vtkGeoGraticule::PrintSelf | ( | ostream & | os, | |
vtkIndent | indent | |||
) | [virtual] |
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkPolyDataAlgorithm.
virtual const char* vtkGeoGraticule::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkPolyDataAlgorithm.
static int vtkGeoGraticule::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkPolyDataAlgorithm.
virtual int vtkGeoGraticule::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkPolyDataAlgorithm.
static vtkGeoGraticule* vtkGeoGraticule::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkPolyDataAlgorithm.
virtual void vtkGeoGraticule::SetLatitudeBounds | ( | double | , | |
double | ||||
) | [virtual] |
The latitude bounds of the graticule.
void vtkGeoGraticule::SetLatitudeBounds | ( | double | [2] | ) |
The latitude bounds of the graticule.
virtual double* vtkGeoGraticule::GetLatitudeBounds | ( | ) | [virtual] |
The latitude bounds of the graticule.
virtual void vtkGeoGraticule::GetLatitudeBounds | ( | double & | , | |
double & | ||||
) | [virtual] |
The latitude bounds of the graticule.
virtual void vtkGeoGraticule::GetLatitudeBounds | ( | double | [2] | ) | [virtual] |
The latitude bounds of the graticule.
virtual void vtkGeoGraticule::SetLongitudeBounds | ( | double | , | |
double | ||||
) | [virtual] |
The longitude bounds of the graticule.
void vtkGeoGraticule::SetLongitudeBounds | ( | double | [2] | ) |
The longitude bounds of the graticule.
virtual double* vtkGeoGraticule::GetLongitudeBounds | ( | ) | [virtual] |
The longitude bounds of the graticule.
virtual void vtkGeoGraticule::GetLongitudeBounds | ( | double & | , | |
double & | ||||
) | [virtual] |
The longitude bounds of the graticule.
virtual void vtkGeoGraticule::GetLongitudeBounds | ( | double | [2] | ) | [virtual] |
The longitude bounds of the graticule.
virtual void vtkGeoGraticule::SetLatitudeLevel | ( | int | ) | [virtual] |
The frequency level of latitude lines.
virtual int vtkGeoGraticule::GetLatitudeLevel | ( | ) | [virtual] |
The frequency level of latitude lines.
virtual void vtkGeoGraticule::SetLongitudeLevel | ( | int | ) | [virtual] |
The frequency level of longitude lines.
virtual int vtkGeoGraticule::GetLongitudeLevel | ( | ) | [virtual] |
The frequency level of longitude lines.
static double vtkGeoGraticule::GetLatitudeDelta | ( | int | level | ) | [inline, static] |
The latitude delta at a certain frequency level.
Definition at line 84 of file vtkGeoGraticule.h.
static double vtkGeoGraticule::GetLongitudeDelta | ( | int | level | ) | [inline, static] |
The longitude delta at a certain frequency level.
Definition at line 90 of file vtkGeoGraticule.h.
virtual void vtkGeoGraticule::SetGeometryType | ( | int | ) | [virtual] |
Set//get the type(s) of cells that will be output by the filter. By default, polylines are output. You may also request quadrilaterals. This is a bit vector of GeometryType enums.
virtual int vtkGeoGraticule::GetGeometryType | ( | ) | [virtual] |
Set//get the type(s) of cells that will be output by the filter. By default, polylines are output. You may also request quadrilaterals. This is a bit vector of GeometryType enums.
virtual int vtkGeoGraticule::RequestData | ( | vtkInformation * | request, | |
vtkInformationVector ** | inputVector, | |||
vtkInformationVector * | outputVector | |||
) | [protected, virtual] |
This is called by the superclass. This is the method you should override.
Reimplemented from vtkPolyDataAlgorithm.
void vtkGeoGraticule::GenerateGraticule | ( | vtkPolyData * | output, | |
double | latbds[2], | |||
double | lngbds[2] | |||
) | [protected] |
int vtkGeoGraticule::ComputeLineLevel | ( | int | ticId, | |
int | baseLevel, | |||
const double * | levelIncrements | |||
) | [protected] |
int vtkGeoGraticule::GeometryType [protected] |
Definition at line 113 of file vtkGeoGraticule.h.
double vtkGeoGraticule::LatitudeBounds[2] [protected] |
Definition at line 114 of file vtkGeoGraticule.h.
double vtkGeoGraticule::LongitudeBounds[2] [protected] |
Definition at line 115 of file vtkGeoGraticule.h.
int vtkGeoGraticule::LatitudeLevel [protected] |
Definition at line 116 of file vtkGeoGraticule.h.
int vtkGeoGraticule::LongitudeLevel [protected] |
Definition at line 117 of file vtkGeoGraticule.h.
double vtkGeoGraticule::LatitudeLevelTics[NUMBER_OF_LEVELS] [static, protected] |
The distance between tic marks at each level, in degrees.
Definition at line 121 of file vtkGeoGraticule.h.
double vtkGeoGraticule::LongitudeLevelTics[NUMBER_OF_LEVELS] [static, protected] |
The distance between tic marks at each level, in degrees.
Definition at line 122 of file vtkGeoGraticule.h.