1 /*
2 * WKB4J - WKB reader for geographical mapping toolkits
3 * (C) 2002,2003, David Garnier, dgarnier@users.sourceforge.net
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation,
8 * version 2.1 of the License.
9 *
10 * This library 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 GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * or visit the web to http://www.gnu.org.
19 *
20 */
21
22 package org.wkb4j.engine;
23
24 /***
25 * WKBGeometryTypes centralises the ID of the different types of Geometry as defined in the
26 * <i><a href="http://www.opengis.org/techno/specs/99-049.pdf" target="_blank">Simple Features Specification for SQL</a></i>
27 *
28 * Unfortunately, this standard didn't attributed an ID to all the structures it defined,
29 * for efficiency I guess. So the ID for the types that doesn't start with wkb* were made-up.
30 * @author David Garnier
31 *
32 * <br/>Creation date: 3 juil. 2002 00:18:28
33 * @version $Revision: 1.4 $ $Date: 2003/06/14 22:31:26 $
34 */
35 public interface WKBGeometryTypes {
36 final int wkbPoint = 1;
37 final int wkbLineString = 2;
38 final int wkbPolygon = 3;
39 final int wkbMultiPoint = 4;
40 final int wkbMultiLineString = 5;
41 final int wkbMultiPolygon = 6;
42 final int wkbGeometryCollection = 7;
43
44 final int linearRing = 101;
45 }
This page was automatically generated by Maven