2009-05-12 00:06:48 +02:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:37:50 +01:00
|
|
|
*
|
2009-05-12 00:06:48 +02:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2011-10-22 02:27:06 +02:00
|
|
|
* Copyright (C) 2011 Artem Pavlenko
|
2009-05-12 00:06:48 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2011-10-22 14:29:08 +02:00
|
|
|
// mapnik
|
2009-05-12 00:06:48 +02:00
|
|
|
#include <mapnik/global.hpp>
|
2009-12-16 21:02:06 +01:00
|
|
|
#include <mapnik/box2d.hpp>
|
2009-05-12 00:06:48 +02:00
|
|
|
#include <mapnik/geometry.hpp>
|
|
|
|
#include <mapnik/feature.hpp>
|
|
|
|
#include <mapnik/feature_layer_desc.hpp>
|
|
|
|
#include <mapnik/wkb.hpp>
|
|
|
|
#include <mapnik/unicode.hpp>
|
|
|
|
|
|
|
|
// ogr
|
|
|
|
#include "ogr_converter.hpp"
|
|
|
|
|
|
|
|
using mapnik::feature_ptr;
|
|
|
|
using mapnik::geometry_utils;
|
2010-11-03 14:19:15 +01:00
|
|
|
using mapnik::geometry_type;
|
2009-05-12 00:06:48 +02:00
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
void ogr_converter::convert_geometry(OGRGeometry* geom, feature_ptr feature, bool multiple_geometries)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
switch (wkbFlatten(geom->getGeometryType()))
|
|
|
|
{
|
|
|
|
case wkbPoint:
|
|
|
|
convert_point(static_cast<OGRPoint*>(geom), feature);
|
|
|
|
break;
|
|
|
|
case wkbLineString:
|
|
|
|
convert_linestring(static_cast<OGRLineString*>(geom), feature);
|
|
|
|
break;
|
|
|
|
case wkbPolygon:
|
|
|
|
convert_polygon(static_cast<OGRPolygon*>(geom), feature);
|
|
|
|
break;
|
|
|
|
case wkbMultiPoint:
|
|
|
|
if (multiple_geometries)
|
|
|
|
{
|
|
|
|
convert_multipoint_2(static_cast<OGRMultiPoint*>(geom), feature);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Todo - using convert_multipoint_2 until we have proper multipoint handling in convert_multipoint
|
|
|
|
// http://trac.mapnik.org/ticket/458
|
|
|
|
//convert_multipoint(static_cast<OGRMultiPoint*>(geom), feature);
|
|
|
|
convert_multipoint_2(static_cast<OGRMultiPoint*>(geom), feature);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case wkbMultiLineString:
|
|
|
|
if (multiple_geometries)
|
|
|
|
{
|
|
|
|
convert_multilinestring_2(static_cast<OGRMultiLineString*>(geom), feature);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
convert_multilinestring(static_cast<OGRMultiLineString*>(geom), feature);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case wkbMultiPolygon:
|
|
|
|
if (multiple_geometries)
|
|
|
|
{
|
|
|
|
convert_multipolygon_2(static_cast<OGRMultiPolygon*>(geom), feature);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
convert_multipolygon(static_cast<OGRMultiPolygon*>(geom), feature);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case wkbGeometryCollection:
|
|
|
|
convert_collection(static_cast<OGRGeometryCollection*>(geom), feature, multiple_geometries);
|
|
|
|
break;
|
|
|
|
case wkbLinearRing:
|
|
|
|
convert_linestring(static_cast<OGRLinearRing*>(geom), feature);
|
|
|
|
break;
|
|
|
|
case wkbNone:
|
|
|
|
case wkbUnknown:
|
|
|
|
default:
|
2009-05-12 00:06:48 +02:00
|
|
|
#ifdef MAPNIK_DEBUG
|
2011-10-22 02:27:06 +02:00
|
|
|
std::clog << "OGR Plugin: unknown <ogr> geometry_type="
|
|
|
|
<< wkbFlatten(geom->getGeometryType()) << std::endl;
|
2009-05-12 00:06:48 +02:00
|
|
|
#endif
|
2011-10-22 02:27:06 +02:00
|
|
|
break;
|
|
|
|
}
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
void ogr_converter::convert_point(OGRPoint* geom, feature_ptr feature)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type * point = new geometry_type(mapnik::Point);
|
2011-10-22 02:27:06 +02:00
|
|
|
point->move_to(geom->getX(), geom->getY());
|
|
|
|
feature->add_geometry(point);
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
void ogr_converter::convert_linestring(OGRLineString* geom, feature_ptr feature)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
int num_points = geom->getNumPoints();
|
|
|
|
geometry_type* line = new geometry_type(mapnik::LineString);
|
|
|
|
line->set_capacity(num_points);
|
|
|
|
line->move_to(geom->getX(0), geom->getY(0));
|
|
|
|
for (int i = 1; i < num_points; ++i)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
line->line_to (geom->getX(i), geom->getY(i));
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
2011-10-22 02:27:06 +02:00
|
|
|
feature->add_geometry(line);
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
void ogr_converter::convert_polygon(OGRPolygon* geom, feature_ptr feature)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
OGRLinearRing* exterior = geom->getExteriorRing();
|
|
|
|
int num_points = exterior->getNumPoints();
|
|
|
|
int num_interior = geom->getNumInteriorRings();
|
2009-05-12 00:06:48 +02:00
|
|
|
int capacity = 0;
|
2011-10-22 02:27:06 +02:00
|
|
|
for (int r = 0; r < num_interior; r++)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
OGRLinearRing* interior = geom->getInteriorRing(r);
|
|
|
|
capacity += interior->getNumPoints();
|
2011-11-14 04:37:50 +01:00
|
|
|
}
|
2011-10-22 02:27:06 +02:00
|
|
|
geometry_type* poly = new geometry_type(mapnik::Polygon);
|
|
|
|
poly->set_capacity(num_points + capacity);
|
|
|
|
poly->move_to(exterior->getX(0), exterior->getY(0));
|
|
|
|
for (int i = 1; i < num_points; ++i)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
poly->line_to(exterior->getX(i), exterior->getY(i));
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
2011-10-22 02:27:06 +02:00
|
|
|
for (int r = 0; r < num_interior; r++)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
OGRLinearRing* interior = geom->getInteriorRing(r);
|
|
|
|
num_points = interior->getNumPoints();
|
|
|
|
poly->move_to(interior->getX(0), interior->getY(0));
|
|
|
|
for (int i = 1; i < num_points; ++i)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
poly->line_to(interior->getX(i), interior->getY(i));
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
}
|
2011-10-22 02:27:06 +02:00
|
|
|
feature->add_geometry(poly);
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
void ogr_converter::convert_multipoint(OGRMultiPoint* geom, feature_ptr feature)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
int num_geometries = geom->getNumGeometries();
|
|
|
|
geometry_type* point = new geometry_type(mapnik::Point);
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
for (int i = 0; i < num_geometries; i++)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
OGRPoint* ogrpoint = static_cast<OGRPoint*>(geom->getGeometryRef(i));
|
|
|
|
point->move_to(ogrpoint->getX(), ogrpoint->getY());
|
2010-11-05 07:20:37 +01:00
|
|
|
//Todo - need to accept multiple points per mapnik::Point
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2009-12-07 00:12:56 +01:00
|
|
|
// Todo - this only gets last point
|
2011-10-22 02:27:06 +02:00
|
|
|
feature->add_geometry(point);
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
void ogr_converter::convert_multipoint_2(OGRMultiPoint* geom, feature_ptr feature)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
int num_geometries = geom->getNumGeometries();
|
|
|
|
for (int i = 0; i < num_geometries; i++)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
convert_point(static_cast<OGRPoint*>(geom->getGeometryRef(i)), feature);
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
void ogr_converter::convert_multilinestring(OGRMultiLineString* geom, feature_ptr feature)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
int num_geometries = geom->getNumGeometries();
|
2009-05-12 00:06:48 +02:00
|
|
|
|
|
|
|
int num_points = 0;
|
2011-10-22 02:27:06 +02:00
|
|
|
for (int i = 0; i < num_geometries; i++)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
OGRLineString* ls = static_cast<OGRLineString*>(geom->getGeometryRef(i));
|
|
|
|
num_points += ls->getNumPoints();
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
geometry_type* line = new geometry_type(mapnik::LineString);
|
|
|
|
line->set_capacity(num_points);
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
for (int i = 0; i < num_geometries; i++)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
OGRLineString* ls = static_cast<OGRLineString*>(geom->getGeometryRef(i));
|
|
|
|
num_points = ls->getNumPoints();
|
|
|
|
line->move_to(ls->getX(0), ls->getY(0));
|
|
|
|
for (int i = 1; i < num_points; ++i)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
line->line_to(ls->getX(i), ls->getY(i));
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
feature->add_geometry(line);
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
void ogr_converter::convert_multilinestring_2(OGRMultiLineString* geom, feature_ptr feature)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
int num_geometries = geom->getNumGeometries();
|
|
|
|
for (int i = 0; i < num_geometries; i++)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
convert_linestring(static_cast<OGRLineString*>(geom->getGeometryRef(i)), feature);
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
void ogr_converter::convert_multipolygon(OGRMultiPolygon* geom, feature_ptr feature)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
int num_geometries = geom->getNumGeometries();
|
2009-05-12 00:06:48 +02:00
|
|
|
|
|
|
|
int capacity = 0;
|
2011-10-22 02:27:06 +02:00
|
|
|
for (int i = 0; i < num_geometries; i++)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
OGRPolygon* p = static_cast<OGRPolygon*>(geom->getGeometryRef(i));
|
|
|
|
OGRLinearRing* exterior = p->getExteriorRing();
|
|
|
|
capacity += exterior->getNumPoints();
|
|
|
|
for (int r = 0; r < p->getNumInteriorRings(); r++)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
OGRLinearRing* interior = p->getInteriorRing(r);
|
|
|
|
capacity += interior->getNumPoints();
|
2011-11-14 04:37:50 +01:00
|
|
|
}
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
geometry_type* poly = new geometry_type(mapnik::Polygon);
|
|
|
|
poly->set_capacity(capacity);
|
2009-05-12 00:06:48 +02:00
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
for (int i = 0; i < num_geometries; i++)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
OGRPolygon* p = static_cast<OGRPolygon*>(geom->getGeometryRef(i));
|
|
|
|
OGRLinearRing* exterior = p->getExteriorRing();
|
|
|
|
int num_points = exterior->getNumPoints();
|
|
|
|
int num_interior = p->getNumInteriorRings();
|
|
|
|
poly->move_to(exterior->getX(0), exterior->getY(0));
|
|
|
|
for (int i = 1; i < num_points; ++i)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
poly->line_to(exterior->getX(i), exterior->getY(i));
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
2011-10-22 02:27:06 +02:00
|
|
|
for (int r = 0; r < num_interior; r++)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
OGRLinearRing* interior = p->getInteriorRing(r);
|
|
|
|
num_points = interior->getNumPoints();
|
|
|
|
poly->move_to(interior->getX(0), interior->getY(0));
|
|
|
|
for (int i = 1; i < num_points; ++i)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
poly->line_to(interior->getX(i), interior->getY(i));
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
feature->add_geometry(poly);
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
void ogr_converter::convert_multipolygon_2(OGRMultiPolygon* geom, feature_ptr feature)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
int num_geometries = geom->getNumGeometries();
|
|
|
|
for (int i = 0; i < num_geometries; i++)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
convert_polygon(static_cast<OGRPolygon*>(geom->getGeometryRef(i)), feature);
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
void ogr_converter::convert_collection(OGRGeometryCollection* geom, feature_ptr feature, bool multiple_geometries)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
int num_geometries = geom->getNumGeometries();
|
|
|
|
for (int i = 0; i < num_geometries; i++)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
OGRGeometry* g = geom->getGeometryRef(i);
|
2009-05-12 00:06:48 +02:00
|
|
|
if (g != NULL)
|
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
convert_geometry(g, feature, multiple_geometries);
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|