VTK
vtkGeoGraticule.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGeoGraticule.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 /*-------------------------------------------------------------------------
16  Copyright 2008 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19 -------------------------------------------------------------------------*/
36 #ifndef vtkGeoGraticule_h
37 #define vtkGeoGraticule_h
38 
39 #include "vtkGeovisCoreModule.h" // For export macro
40 #include "vtkPolyDataAlgorithm.h"
41 
42 class vtkPolyData;
43 
45 {
46 public:
47  static vtkGeoGraticule* New();
48  virtual void PrintSelf( ostream& os, vtkIndent indent );
50 
52 
53  vtkSetVector2Macro(LatitudeBounds,double);
54  vtkGetVector2Macro(LatitudeBounds,double);
56 
58 
59  vtkSetVector2Macro(LongitudeBounds,double);
60  vtkGetVector2Macro(LongitudeBounds,double);
62 
63  //BTX
64  enum LevelLimits {
65  LEVEL_MIN = 0,
66  LEVEL_MAX = 11,
67  NUMBER_OF_LEVELS = ( LEVEL_MAX - LEVEL_MIN + 1 )
68  };
69  //ETX
70 
72 
73  vtkSetClampMacro(LatitudeLevel,int,LEVEL_MIN,LEVEL_MAX);
74  vtkGetMacro(LatitudeLevel,int);
76 
78 
79  vtkSetClampMacro(LongitudeLevel,int,LEVEL_MIN,LEVEL_MAX);
80  vtkGetMacro(LongitudeLevel,int);
82 
84 
85  static double GetLatitudeDelta(int level)
86  { return LatitudeLevelTics[level]; }
88 
90 
91  static double GetLongitudeDelta(int level)
92  { return LongitudeLevelTics[level]; }
94 
96 
99  vtkSetMacro(GeometryType,int);
100  vtkGetMacro(GeometryType,int);
102 
103  //BTX
105  POLYLINES = 0x1,
106  QUADRILATERALS = 0x2
107  };
108  //ETX
109 
110 protected:
111  vtkGeoGraticule();
112  virtual ~vtkGeoGraticule();
113 
115  double LatitudeBounds[2];
116  double LongitudeBounds[2];
119 
121 
122  static double LatitudeLevelTics[NUMBER_OF_LEVELS];
123  static double LongitudeLevelTics[NUMBER_OF_LEVELS];
125 
127 
128  void GenerateGraticule( vtkPolyData* output, double latbds[2], double lngbds[2] );
129  int ComputeLineLevel( int ticId, int baseLevel, const double* levelIncrements );
130 
131 private:
132  vtkGeoGraticule( const vtkGeoGraticule& ); // Not implemented.
133  void operator = ( const vtkGeoGraticule& ); // Not implemented.
134 };
135 
136 #endif // vtkGeoGraticule_h
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:83
static vtkPolyDataAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:38
static double GetLatitudeDelta(int level)
Create a polygonal lat-long grid.
#define VTKGEOVISCORE_EXPORT
Store zero or more vtkInformation instances.
static double GetLongitudeDelta(int level)