-
Notifications
You must be signed in to change notification settings - Fork 0
/
qgsgcplist.cpp
85 lines (76 loc) · 2.28 KB
/
qgsgcplist.cpp
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
/***************************************************************************
qgsgeorefconfigdialog.h
--------------------------------------
Date : 14-Feb-2010
Copyright : (C) 2010 by Jack R, Maxim Dubinin (GIS-Lab)
Email : [email protected]
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
/* $Id$ */
#include "qgspoint.h"
#include "qgsgeorefdatapoint.h"
#include "qgsgcplist.h"
QgsGCPList::QgsGCPList()
: QList<QgsGeorefDataPoint *>()
{
}
QgsGCPList::QgsGCPList(const QgsGCPList &list)
{
clear();
QgsGCPList::const_iterator it = list.constBegin();
for (; it != list.constEnd(); ++it)
{
QgsGeorefDataPoint *pt = new QgsGeorefDataPoint(**it);
append(pt);
}
}
void QgsGCPList::createGCPVectors(std::vector<QgsPoint> &mapCoords,
std::vector<QgsPoint> &pixelCoords)
{
mapCoords = std::vector<QgsPoint>(size());
pixelCoords = std::vector<QgsPoint>(size());
for (int i = 0, j = 0; i < sizeAll(); i++)
{
QgsGeorefDataPoint *pt = at(i);
if (pt->isEnabled())
{
mapCoords[j] = pt->mapCoords();
pixelCoords[j] = pt->pixelCoords();
j++;
}
}
}
int QgsGCPList::size() const
{
if (QList<QgsGeorefDataPoint *>::isEmpty())
return 0;
int s = 0;
const_iterator it = begin();
while (it != end())
{
if ((*it)->isEnabled()) s++;
it++;
}
return s;
}
int QgsGCPList::sizeAll() const
{
return QList<QgsGeorefDataPoint *>::size();
}
QgsGCPList &QgsGCPList::operator =(const QgsGCPList &list)
{
clear();
QgsGCPList::const_iterator it = list.constBegin();
for (; it != list.constEnd(); ++it)
{
QgsGeorefDataPoint *pt = new QgsGeorefDataPoint(**it);
append(pt);
}
return *this;
}