2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:37:50 +01:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2014-11-20 15:25:50 +01:00
|
|
|
* Copyright (C) 2014 Artem Pavlenko
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +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,
|
2005-06-14 17:06:59 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-03-31 12:32:02 +02:00
|
|
|
* 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
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
*****************************************************************************/
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2005-06-16 22:56:31 +02:00
|
|
|
#include "shape_io.hpp"
|
2011-05-10 17:03:09 +02:00
|
|
|
|
2011-10-22 15:27:28 +02:00
|
|
|
// mapnik
|
2012-04-08 02:20:56 +02:00
|
|
|
#include <mapnik/debug.hpp>
|
2014-06-12 16:14:05 +02:00
|
|
|
#include <mapnik/make_unique.hpp>
|
2011-05-10 17:03:09 +02:00
|
|
|
#include <mapnik/datasource.hpp>
|
2014-02-24 16:20:06 +01:00
|
|
|
#include <mapnik/geom_util.hpp>
|
2011-05-10 17:03:09 +02:00
|
|
|
// boost
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2007-03-16 11:11:37 +01:00
|
|
|
using mapnik::datasource_exception;
|
2014-02-24 16:20:06 +01:00
|
|
|
using mapnik::hit_test_first;
|
2005-06-14 17:06:59 +02:00
|
|
|
const std::string shape_io::SHP = ".shp";
|
|
|
|
const std::string shape_io::DBF = ".dbf";
|
2010-09-02 22:20:42 +02:00
|
|
|
const std::string shape_io::INDEX = ".index";
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2012-09-03 19:27:48 +02:00
|
|
|
shape_io::shape_io(std::string const& shape_name, bool open_index)
|
2011-11-14 04:37:50 +01:00
|
|
|
: type_(shape_null),
|
|
|
|
shp_(shape_name + SHP),
|
|
|
|
dbf_(shape_name + DBF),
|
|
|
|
reclength_(0),
|
|
|
|
id_(0)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2010-09-06 21:20:59 +02:00
|
|
|
bool ok = (shp_.is_open() && dbf_.is_open());
|
2011-10-22 15:27:28 +02:00
|
|
|
if (! ok)
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2010-09-14 17:43:38 +02:00
|
|
|
throw datasource_exception("Shape Plugin: cannot read shape file '" + shape_name + "'");
|
2010-09-06 21:20:59 +02:00
|
|
|
}
|
2011-10-22 15:27:28 +02:00
|
|
|
|
2010-12-10 02:25:43 +01:00
|
|
|
if (open_index)
|
2010-09-06 21:20:59 +02:00
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
try
|
2010-11-15 04:16:23 +01:00
|
|
|
{
|
2014-05-30 16:37:44 +02:00
|
|
|
index_ = std::make_unique<shape_file>(shape_name + INDEX);
|
2010-12-10 02:25:43 +01:00
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_WARN(shape) << "shape_io: Could not open index=" << shape_name << INDEX;
|
2010-11-15 04:16:23 +01:00
|
|
|
}
|
2010-09-06 21:20:59 +02:00
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
2011-04-06 15:02:31 +02:00
|
|
|
shape_io::~shape_io() {}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2012-12-11 10:37:53 +01:00
|
|
|
void shape_io::move_to(std::streampos pos)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2011-10-22 15:27:28 +02:00
|
|
|
shp_.seek(pos);
|
|
|
|
id_ = shp_.read_xdr_integer();
|
|
|
|
reclength_ = shp_.read_xdr_integer();
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
shape_file& shape_io::shp()
|
|
|
|
{
|
2011-10-22 15:27:28 +02:00
|
|
|
return shp_;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dbf_file& shape_io::dbf()
|
|
|
|
{
|
2011-10-22 15:27:28 +02:00
|
|
|
return dbf_;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
2012-12-11 10:37:53 +01:00
|
|
|
void shape_io::read_bbox(shape_file::record_type & record, mapnik::box2d<double> & bbox)
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2012-12-11 10:37:53 +01:00
|
|
|
double lox = record.read_double();
|
|
|
|
double loy = record.read_double();
|
|
|
|
double hix = record.read_double();
|
|
|
|
double hiy = record.read_double();
|
|
|
|
bbox.init(lox, loy, hix, hiy);
|
|
|
|
}
|
2012-03-13 15:59:22 +01:00
|
|
|
|
2015-03-24 14:21:28 +01:00
|
|
|
mapnik::geometry::geometry shape_io::read_polyline(shape_file::record_type & record)
|
2012-12-11 10:37:53 +01:00
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
int num_parts = record.read_ndr_integer();
|
|
|
|
int num_points = record.read_ndr_integer();
|
2015-02-18 13:21:16 +01:00
|
|
|
|
2011-11-14 04:37:50 +01:00
|
|
|
if (num_parts == 1)
|
|
|
|
{
|
2015-02-18 13:21:16 +01:00
|
|
|
|
2015-03-24 14:21:28 +01:00
|
|
|
mapnik::geometry::line_string line;
|
2015-02-18 13:48:05 +01:00
|
|
|
line.reserve(num_points);
|
2011-11-14 04:37:50 +01:00
|
|
|
record.skip(4);
|
2015-02-18 13:21:16 +01:00
|
|
|
for (int i = 0; i < num_points; ++i)
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2015-02-18 13:21:16 +01:00
|
|
|
double x = record.read_double();
|
|
|
|
double y = record.read_double();
|
|
|
|
line.add_coord(x, y);
|
2011-11-14 04:37:50 +01:00
|
|
|
}
|
2015-03-24 14:21:28 +01:00
|
|
|
return std::move(mapnik::geometry::geometry(std::move(line)));
|
2011-11-14 04:37:50 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::vector<int> parts(num_parts);
|
|
|
|
for (int i = 0; i < num_parts; ++i)
|
|
|
|
{
|
|
|
|
parts[i] = record.read_ndr_integer();
|
|
|
|
}
|
|
|
|
|
|
|
|
int start, end;
|
2015-03-24 14:21:28 +01:00
|
|
|
mapnik::geometry::multi_line_string multi_line;
|
2011-11-14 04:37:50 +01:00
|
|
|
for (int k = 0; k < num_parts; ++k)
|
|
|
|
{
|
2011-10-22 15:27:28 +02:00
|
|
|
start = parts[k];
|
|
|
|
if (k == num_parts - 1)
|
|
|
|
{
|
|
|
|
end = num_points;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
end = parts[k + 1];
|
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2015-03-24 14:21:28 +01:00
|
|
|
mapnik::geometry::line_string line;
|
2015-02-18 13:48:05 +01:00
|
|
|
line.reserve(end - start);
|
2015-02-18 13:21:16 +01:00
|
|
|
for (int j = start; j < end; ++j)
|
2011-10-22 15:27:28 +02:00
|
|
|
{
|
2015-02-18 13:21:16 +01:00
|
|
|
double x = record.read_double();
|
|
|
|
double y = record.read_double();
|
|
|
|
line.add_coord(x, y);
|
2011-10-22 15:27:28 +02:00
|
|
|
}
|
2015-02-18 13:21:16 +01:00
|
|
|
multi_line.push_back(std::move(line));
|
2011-10-22 15:27:28 +02:00
|
|
|
}
|
2015-03-24 14:21:28 +01:00
|
|
|
return std::move(mapnik::geometry::geometry(std::move(multi_line)));
|
2011-10-22 15:27:28 +02:00
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
2014-12-18 11:23:38 +01:00
|
|
|
template <typename T>
|
2015-02-18 18:12:47 +01:00
|
|
|
bool is_clockwise(T const& ring)
|
2014-12-18 11:23:38 +01:00
|
|
|
{
|
|
|
|
double area = 0.0;
|
2015-02-18 18:12:47 +01:00
|
|
|
std::size_t num_points = ring.size();
|
2014-12-18 11:23:38 +01:00
|
|
|
for (int i = 0; i < num_points; ++i)
|
|
|
|
{
|
2015-02-18 18:12:47 +01:00
|
|
|
auto const& p0 = ring[i];
|
|
|
|
auto const& p1 = ring[(i + 1) % num_points];
|
|
|
|
area += p0.x * p1.y - p0.y * p1.x;
|
2014-12-18 11:23:38 +01:00
|
|
|
}
|
|
|
|
return ( area < 0.0) ? true : false;
|
|
|
|
}
|
|
|
|
|
2015-03-24 14:21:28 +01:00
|
|
|
mapnik::geometry::geometry shape_io::read_polygon(shape_file::record_type & record)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2011-10-22 15:27:28 +02:00
|
|
|
int num_parts = record.read_ndr_integer();
|
|
|
|
int num_points = record.read_ndr_integer();
|
2012-03-13 15:59:22 +01:00
|
|
|
|
2015-02-18 18:12:47 +01:00
|
|
|
std::vector<int> parts(num_parts);
|
2014-12-18 11:23:38 +01:00
|
|
|
|
2011-10-22 15:27:28 +02:00
|
|
|
for (int i = 0; i < num_parts; ++i)
|
|
|
|
{
|
|
|
|
parts[i] = record.read_ndr_integer();
|
|
|
|
}
|
|
|
|
|
2015-03-24 14:21:28 +01:00
|
|
|
mapnik::geometry::multi_polygon multi_poly;
|
|
|
|
mapnik::geometry::polygon poly;
|
2012-07-26 12:58:48 +02:00
|
|
|
for (int k = 0; k < num_parts; ++k)
|
2011-10-22 15:27:28 +02:00
|
|
|
{
|
|
|
|
int start = parts[k];
|
|
|
|
int end;
|
2014-12-18 11:23:38 +01:00
|
|
|
if (k == num_parts - 1) end = num_points;
|
|
|
|
else end = parts[k + 1];
|
2015-03-24 14:21:28 +01:00
|
|
|
mapnik::geometry::linear_ring ring;
|
2015-02-18 18:12:47 +01:00
|
|
|
ring.reserve(end - start);
|
|
|
|
for (int j = start; j < end; ++j)
|
2014-02-24 16:20:06 +01:00
|
|
|
{
|
2015-02-18 18:12:47 +01:00
|
|
|
double x = record.read_double();
|
|
|
|
double y = record.read_double();
|
|
|
|
ring.emplace_back(x, y);
|
2014-02-24 16:20:06 +01:00
|
|
|
}
|
2015-02-18 18:12:47 +01:00
|
|
|
if (k == 0)
|
2011-10-22 15:27:28 +02:00
|
|
|
{
|
2015-02-18 18:12:47 +01:00
|
|
|
poly.set_exterior_ring(std::move(ring));
|
2011-10-22 15:27:28 +02:00
|
|
|
}
|
2015-02-18 18:12:47 +01:00
|
|
|
else if (is_clockwise(ring))
|
|
|
|
{
|
|
|
|
multi_poly.emplace_back(std::move(poly));
|
|
|
|
poly.interior_rings.clear();
|
|
|
|
poly.set_exterior_ring(std::move(ring));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
poly.add_hole(std::move(ring));
|
|
|
|
}
|
|
|
|
}
|
2015-02-19 14:32:45 +01:00
|
|
|
if (multi_poly.size() > 0) // multi
|
2015-02-18 18:12:47 +01:00
|
|
|
{
|
2015-02-19 14:32:45 +01:00
|
|
|
multi_poly.emplace_back(std::move(poly));
|
2015-03-24 14:21:28 +01:00
|
|
|
return std::move(mapnik::geometry::geometry(std::move(multi_poly)));
|
2011-10-22 15:27:28 +02:00
|
|
|
}
|
2015-03-24 14:21:28 +01:00
|
|
|
return std::move(mapnik::geometry::geometry(std::move(poly)));
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|