Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.geometry / org.gvsig.fmap.geometry.jts / src / main / java / org / gvsig / fmap / geom / jts / primitive / curve / line / BaseLine2DM.java @ 44617

History | View | Annotate | Download (5.59 KB)

1 42260 fdiaz
/* gvSIG. Desktop Geographic Information System.
2
 *
3
 * Copyright ? 2007-2015 gvSIG Association
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18
 * MA  02110-1301, USA.
19
 *
20
 * For any additional information, do not hesitate to contact us
21
 * at info AT gvsig.com, or visit our website www.gvsig.com.
22
 */
23
package org.gvsig.fmap.geom.jts.primitive.curve.line;
24
25 42283 fdiaz
import java.util.ArrayList;
26 42269 fdiaz
import java.util.Iterator;
27
28 42260 fdiaz
import com.vividsolutions.jts.geom.Coordinate;
29 42267 fdiaz
import com.vividsolutions.jts.geom.CoordinateSequence;
30 42260 fdiaz
31
import org.gvsig.fmap.geom.Geometry;
32 42269 fdiaz
import org.gvsig.fmap.geom.GeometryException;
33
import org.gvsig.fmap.geom.aggregate.MultiLine;
34
import org.gvsig.fmap.geom.aggregate.MultiPoint;
35
import org.gvsig.fmap.geom.aggregate.MultiPolygon;
36
import org.gvsig.fmap.geom.jts.aggregate.MultiLine2DM;
37
import org.gvsig.fmap.geom.jts.aggregate.MultiPoint2DM;
38
import org.gvsig.fmap.geom.jts.aggregate.MultiPolygon2DM;
39 42260 fdiaz
import org.gvsig.fmap.geom.jts.primitive.point.Point2DM;
40 42269 fdiaz
import org.gvsig.fmap.geom.jts.primitive.surface.polygon.Polygon2DM;
41 42267 fdiaz
import org.gvsig.fmap.geom.jts.util.ArrayListCoordinateSequence;
42
import org.gvsig.fmap.geom.jts.util.ReadOnlyCoordinates;
43 44617 jjdelcerro
import org.gvsig.fmap.geom.primitive.OrientablePrimitive;
44 42260 fdiaz
import org.gvsig.fmap.geom.primitive.Point;
45
46
47
48
/**
49
 * @author fdiaz
50
 *
51
 */
52 42270 fdiaz
public abstract class BaseLine2DM extends AbstractLine {
53 42260 fdiaz
54
    /**
55
     *
56
     */
57
    private static final long serialVersionUID = -2009183729409385543L;
58
59
    /**
60 42283 fdiaz
     * @param polygon
61
     */
62
    public BaseLine2DM(int type) {
63
        super(type, Geometry.SUBTYPES.GEOM2DM);
64
        this.coordinates = new ArrayListCoordinateSequence(new ArrayList<Coordinate>());
65
    }
66
67
    /**
68 42304 fdiaz
     * @param polygon
69
     * @param coordinates
70
     */
71
    public BaseLine2DM(int type, Coordinate[] coordinates) {
72
        super(type, Geometry.SUBTYPES.GEOM2DM);
73
        initializeCoordinates(coordinates);
74
    }
75
76
77
    /**
78
     * @param coordinates
79
     */
80
    private void initializeCoordinates(Coordinate[] coordinates) {
81 42260 fdiaz
        this.coordinates = new ArrayListCoordinateSequence(new ReadOnlyCoordinates(coordinates));
82
    }
83
84 44617 jjdelcerro
    public OrientablePrimitive addVertex(double x, double y) {
85
        return this.addVertex(new Point2DM(x, y, 0));
86 42267 fdiaz
    }
87 42260 fdiaz
88 44617 jjdelcerro
    public OrientablePrimitive addVertex(double x, double y, double z) {
89 42267 fdiaz
      String message = "Can't add x,y,z coordinate to Polygon2DM.";
90
      notifyDeprecated(message);
91
      throw new UnsupportedOperationException(message);
92
  }
93 42260 fdiaz
94
95
    /* (non-Javadoc)
96
     * @see org.gvsig.fmap.geom.jts.primitive.curve.line.AbstractLine#fixPoint(org.gvsig.fmap.geom.primitive.Point)
97
     */
98
    @Override
99
    protected Point fixPoint(Point point) {
100
        if (point instanceof Point2DM) {
101
            return point;
102
        } else {
103
            return new Point2DM(point.getX(), point.getY(), 0);
104
        }
105
    }
106
107 42269 fdiaz
    /* (non-Javadoc)
108
     * @see org.gvsig.fmap.geom.primitive.Line#toPoints()
109
     */
110
    public MultiPoint toPoints() throws GeometryException {
111
        MultiPoint multiPoint = new MultiPoint2DM();
112 42271 fdiaz
        multiPoint.ensureCapacity(coordinates.size());
113
        for (Iterator<Coordinate> iterator = coordinates.iterator(); iterator.hasNext();) {
114 42269 fdiaz
            Coordinate coordinate = (Coordinate) iterator.next();
115 44099 jjdelcerro
            multiPoint.addPoint(new Point2DM(this.getProjection(), coordinate));
116 42269 fdiaz
        }
117
        return multiPoint;
118
    }
119
120
    /* (non-Javadoc)
121
     * @see org.gvsig.fmap.geom.primitive.Line#toLines()
122
     */
123
    public MultiLine toLines() throws GeometryException {
124
        MultiLine multiLine = new MultiLine2DM();
125
        multiLine.addPrimitive(this);
126
        return multiLine;
127
    }
128
129
    /* (non-Javadoc)
130
     * @see org.gvsig.fmap.geom.primitive.Line#toPolygons()
131
     */
132
    public MultiPolygon toPolygons() throws GeometryException {
133
        MultiPolygon multiPolygon = new MultiPolygon2DM();
134
        Polygon2DM polygon = new Polygon2DM(coordinates.toCoordinateArray());
135
        multiPolygon.addPrimitive(polygon);
136
        return multiPolygon;
137
    }
138
139 42283 fdiaz
140
    /* (non-Javadoc)
141
     * @see org.gvsig.fmap.geom.primitive.OrientablePrimitive#getVertex(int)
142
     */
143
    public Point getVertex(int index) {
144 44099 jjdelcerro
        Point2DM vertex = new Point2DM(this.getProjection(), this.coordinates.get(index));
145 42283 fdiaz
        return vertex;
146
    }
147
148 42322 fdiaz
    /* (non-Javadoc)
149
     * @see org.gvsig.fmap.geom.jts.primitive.curve.line.AbstractLine#getCoordinateAt(int, int)
150
     */
151
    @Override
152
    public double getCoordinateAt(int index, int dimension) {
153
        if (dimension == 2) {
154
            return super.getCoordinateAt(index, CoordinateSequence.M);
155
        }
156
        return super.getCoordinateAt(index, dimension);
157
    }
158
159
    /* (non-Javadoc)
160
     * @see org.gvsig.fmap.geom.jts.primitive.curve.line.AbstractLine#setCoordinateAt(int, int, double)
161
     */
162
    @Override
163 44617 jjdelcerro
    public OrientablePrimitive setCoordinateAt(int index, int dimension, double value) {
164 42322 fdiaz
        if (dimension == 2) {
165 44617 jjdelcerro
            return super.setCoordinateAt(index, CoordinateSequence.M, value);
166 42322 fdiaz
        }
167 44617 jjdelcerro
        return super.setCoordinateAt(index, dimension, value);
168 42322 fdiaz
    }
169 42260 fdiaz
}