GEOS 3.9.1
WKBConstants.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2005-2006 Refractions Research Inc.
7 * Copyright (C) 2001-2002 Vivid Solutions Inc.
8 *
9 * This is free software; you can redistribute and/or modify it under
10 * the terms of the GNU Lesser General Public Licence as published
11 * by the Free Software Foundation.
12 * See the COPYING file for more information.
13 *
14 **********************************************************************
15 *
16 * Last port: io/WKBConstants.java rev. 1.1 (JTS-1.10)
17 *
18 **********************************************************************/
19
20#ifndef GEOS_IO_WKBCONSTANTS_H
21#define GEOS_IO_WKBCONSTANTS_H
22
23namespace geos {
24namespace io {
25
27namespace WKBConstants {
28
30const int wkbXDR = 0;
31
33const int wkbNDR = 1;
34
35const int wkbPoint = 1;
36const int wkbLineString = 2;
37const int wkbPolygon = 3;
38const int wkbMultiPoint = 4;
39const int wkbMultiLineString = 5;
40const int wkbMultiPolygon = 6;
41const int wkbGeometryCollection = 7;
42}
43
44} // namespace geos::io
45} // namespace geos
46
47#endif // #ifndef GEOS_IO_WKBCONSTANTS_H
const int wkbNDR
Little Endian.
Definition WKBConstants.h:33
const int wkbXDR
Big Endian.
Definition WKBConstants.h:30
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:26