forked from OpenGeoscience/vtkMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvtkGeoJSONMapFeature.cxx
81 lines (66 loc) · 2.5 KB
/
vtkGeoJSONMapFeature.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
/*=========================================================================
Program: Visualization Toolkit
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.
=========================================================================*/
#include "vtkGeoJSONMapFeature.h"
#include "vtkMercator.h"
#include <vtkGeoJSONReader.h>
#include <vtkNew.h>
#include <vtkObjectFactory.h>
#include <vtkPoints.h>
#include <vtkPolyData.h>
#include <vtkProperty.h>
vtkStandardNewMacro(vtkGeoJSONMapFeature);
//----------------------------------------------------------------------------
vtkGeoJSONMapFeature::vtkGeoJSONMapFeature() : vtkPolydataFeature()
{
this->InputString = NULL;
this->PolyData = NULL;
}
//----------------------------------------------------------------------------
vtkGeoJSONMapFeature::~vtkGeoJSONMapFeature()
{
if (this->PolyData)
{
this->PolyData->Delete();
}
delete [] this->InputString;
}
//----------------------------------------------------------------------------
void vtkGeoJSONMapFeature::PrintSelf(std::ostream&, vtkIndent)
{
// TODO
}
//----------------------------------------------------------------------------
void vtkGeoJSONMapFeature::Init()
{
// Parse InputString to generate vtkPolyData
vtkNew<vtkGeoJSONReader> reader;
reader->StringInputModeOn();
reader->SetStringInput(this->InputString);
reader->TriangulatePolygonsOn();
reader->Update();
this->PolyData = reader->GetOutput();
this->PolyData->Register(this);
// Convert poly data points from <lon, lat> to <x, y>
vtkPoints *points = this->PolyData->GetPoints();
for (vtkIdType i=0; i<points->GetNumberOfPoints(); i++)
{
double *coords = points->GetPoint(i);
coords[1] = vtkMercator::lat2y(coords[1]);
points->SetPoint(i, coords);
}
std::cout << "Points: " << this->PolyData->GetNumberOfPoints() << "\n"
<< "Vertices: " << this->PolyData->GetNumberOfVerts() << "\n"
<< "Lines: " << this->PolyData->GetNumberOfLines() << "\n"
<< "Polygons: " << this->PolyData->GetNumberOfPolys()
<< std::endl;
// Set PolyData to superclass and call its init
this->Superclass::GetMapper()->SetInputData(this->PolyData);
this->Superclass::Init();
}