forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvtkGeoSampleArcs.cxx
187 lines (165 loc) · 5.88 KB
/
vtkGeoSampleArcs.cxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/*=========================================================================
Program: Visualization Toolkit
Module: vtkGeoSampleArcs.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/*-------------------------------------------------------------------------
Copyright 2008 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------*/
#include "vtkGeoSampleArcs.h"
#include "vtkCamera.h"
#include "vtkCellArray.h"
#include "vtkCellData.h"
#include "vtkCoordinate.h"
#include "vtkDoubleArray.h"
#include "vtkFloatArray.h"
#include "vtkGeoMath.h"
#include "vtkGlobeSource.h"
#include "vtkMath.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkRenderWindow.h"
#include "vtkRendererCollection.h"
#include "vtkTimerLog.h"
vtkStandardNewMacro(vtkGeoSampleArcs);
vtkGeoSampleArcs::vtkGeoSampleArcs()
{
this->GlobeRadius = vtkGeoMath::EarthRadiusMeters();
this->MaximumDistanceMeters = 100000.0;
this->InputCoordinateSystem = RECTANGULAR;
this->OutputCoordinateSystem = RECTANGULAR;
}
vtkGeoSampleArcs::~vtkGeoSampleArcs()
{
}
int vtkGeoSampleArcs::RequestData(
vtkInformation *vtkNotUsed(request),
vtkInformationVector **inputVector,
vtkInformationVector *outputVector)
{
// get the info objects
vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
vtkInformation *outInfo = outputVector->GetInformationObject(0);
// get the input and output
vtkPolyData *input = vtkPolyData::SafeDownCast(
inInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkPolyData *output = vtkPolyData::SafeDownCast(
outInfo->Get(vtkDataObject::DATA_OBJECT()));
// Traverse input lines, adding a circle for each line segment.
vtkCellArray* lines = input->GetLines();
vtkPoints* points = input->GetPoints();
if ( !points )
{
return 0;
}
vtkCellArray* newLines = vtkCellArray::New();
float* pointsPtr = static_cast<float*>(points->GetVoidPointer(0));
vtkPoints* newPoints = vtkPoints::New();
lines->InitTraversal();
for (vtkIdType i = 0; i < lines->GetNumberOfCells(); i++)
{
vtkIdType npts=0; // to remove warning
vtkIdType* pts=nullptr; // to remove warning
lines->GetNextCell(npts, pts);
double lastPoint[3];
double curPoint[3];
double lastPtLL[2];
double curPtLL[2];
if (this->InputCoordinateSystem == RECTANGULAR)
{
curPoint[0] = pointsPtr[3*pts[0]+0];
curPoint[1] = pointsPtr[3*pts[0]+1];
curPoint[2] = pointsPtr[3*pts[0]+2];
vtkGlobeSource::ComputeLatitudeLongitude(
curPoint, curPtLL[0], curPtLL[1]);
}
else // SPHERICAL
{
curPtLL[0] = pointsPtr[3*pts[0]+0];
curPtLL[1] = pointsPtr[3*pts[0]+1];
vtkGlobeSource::ComputeGlobePoint(
curPtLL[0], curPtLL[1], this->GlobeRadius, curPoint);
}
for (vtkIdType p = 1; p < npts; ++p)
{
// Advance point
for (int c = 0; c < 3; ++c)
{
lastPoint[c] = curPoint[c];
}
lastPtLL[0] = curPtLL[0];
lastPtLL[1] = curPtLL[1];
if (this->InputCoordinateSystem == RECTANGULAR)
{
curPoint[0] = pointsPtr[3*pts[p]+0];
curPoint[1] = pointsPtr[3*pts[p]+1];
curPoint[2] = pointsPtr[3*pts[p]+2];
vtkGlobeSource::ComputeLatitudeLongitude(
curPoint, curPtLL[0], curPtLL[1]);
}
else // SPHERICAL
{
curPtLL[0] = pointsPtr[3*pts[p]+0];
curPtLL[1] = pointsPtr[3*pts[p]+1];
vtkGlobeSource::ComputeGlobePoint(
curPtLL[0], curPtLL[1], this->GlobeRadius, curPoint);
}
double dist = sqrt(vtkMath::Distance2BetweenPoints(lastPoint, curPoint));
// Calculate the number of subdivisions.
vtkIdType numDivisions = static_cast<vtkIdType>(dist / this->MaximumDistanceMeters + 0.5) + 1;
if (numDivisions < 2)
{
numDivisions = 2;
}
// Create the new cell
newLines->InsertNextCell(numDivisions);
for (vtkIdType s = 0; s < numDivisions; ++s)
{
// Interpolate in lat-long.
double interpPtLL[2];
double frac = static_cast<double>(s) / (numDivisions - 1);
for (int c = 0; c < 2; ++c)
{
interpPtLL[c] = frac*curPtLL[c] + (1.0 - frac)*lastPtLL[c];
}
if (this->OutputCoordinateSystem == RECTANGULAR)
{
// Convert lat-long to world;
double interpPt[3];
vtkGlobeSource::ComputeGlobePoint(interpPtLL[0], interpPtLL[1], this->GlobeRadius, interpPt);
vtkIdType newPt = newPoints->InsertNextPoint(interpPt);
newLines->InsertCellPoint(newPt);
}
else // SPHERICAL
{
vtkIdType newPt = newPoints->InsertNextPoint(interpPtLL[0], interpPtLL[1], 0.0);
newLines->InsertCellPoint(newPt);
}
}
}
}
// Send the data to output.
output->SetLines(newLines);
output->SetPoints(newPoints);
// Clean up.
newLines->Delete();
newPoints->Delete();
return 1;
}
void vtkGeoSampleArcs::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
os << indent << "GlobeRadius: " << this->GlobeRadius << endl;
os << indent << "MaximumDistanceMeters: " << this->MaximumDistanceMeters << endl;
os << indent << "InputCoordinateSystem: " << this->InputCoordinateSystem << endl;
os << indent << "OutputCoordinateSystem: " << this->OutputCoordinateSystem << endl;
}