2012-06-13 14:30:58 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Artem Pavlenko
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#include "geojson_datasource.hpp"
|
|
|
|
#include "geojson_featureset.hpp"
|
|
|
|
|
|
|
|
#include <fstream>
|
2012-07-26 01:11:51 +02:00
|
|
|
#include <algorithm>
|
|
|
|
|
2012-06-13 14:30:58 +02:00
|
|
|
// boost
|
2012-07-26 01:11:51 +02:00
|
|
|
#include <boost/variant.hpp>
|
2012-06-13 14:30:58 +02:00
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
#include <boost/spirit/include/support_multi_pass.hpp>
|
2013-04-24 17:40:35 +02:00
|
|
|
|
2012-06-13 14:30:58 +02:00
|
|
|
#include <boost/geometry/geometries/box.hpp>
|
|
|
|
#include <boost/geometry/geometries/geometries.hpp>
|
|
|
|
#include <boost/geometry.hpp>
|
|
|
|
#include <boost/geometry/extensions/index/rtree/rtree.hpp>
|
2013-01-04 18:23:06 +01:00
|
|
|
|
2012-06-13 14:30:58 +02:00
|
|
|
// mapnik
|
2013-01-04 18:23:06 +01:00
|
|
|
#include <mapnik/unicode.hpp>
|
2013-05-21 21:51:31 +02:00
|
|
|
#include <mapnik/utils.hpp>
|
2013-01-04 18:23:06 +01:00
|
|
|
#include <mapnik/feature.hpp>
|
|
|
|
#include <mapnik/feature_kv_iterator.hpp>
|
2013-08-14 00:52:04 +02:00
|
|
|
#include <mapnik/value_types.hpp>
|
2012-06-13 14:30:58 +02:00
|
|
|
#include <mapnik/box2d.hpp>
|
2012-07-25 04:21:55 +02:00
|
|
|
#include <mapnik/debug.hpp>
|
2012-06-13 14:30:58 +02:00
|
|
|
#include <mapnik/proj_transform.hpp>
|
|
|
|
#include <mapnik/projection.hpp>
|
2012-09-03 19:01:01 +02:00
|
|
|
#include <mapnik/util/geometry_to_ds_type.hpp>
|
2012-06-13 14:30:58 +02:00
|
|
|
#include <mapnik/json/feature_collection_parser.hpp>
|
|
|
|
|
|
|
|
using mapnik::datasource;
|
|
|
|
using mapnik::parameters;
|
|
|
|
|
|
|
|
DATASOURCE_PLUGIN(geojson_datasource)
|
|
|
|
|
2012-07-26 01:11:51 +02:00
|
|
|
struct attr_value_converter : public boost::static_visitor<mapnik::eAttributeType>
|
|
|
|
{
|
2012-12-03 14:12:09 +01:00
|
|
|
mapnik::eAttributeType operator() (mapnik::value_integer /*val*/) const
|
2012-07-26 01:11:51 +02:00
|
|
|
{
|
|
|
|
return mapnik::Integer;
|
|
|
|
}
|
|
|
|
|
|
|
|
mapnik::eAttributeType operator() (double /*val*/) const
|
|
|
|
{
|
|
|
|
return mapnik::Double;
|
|
|
|
}
|
|
|
|
|
|
|
|
mapnik::eAttributeType operator() (float /*val*/) const
|
|
|
|
{
|
|
|
|
return mapnik::Double;
|
|
|
|
}
|
|
|
|
|
|
|
|
mapnik::eAttributeType operator() (bool /*val*/) const
|
|
|
|
{
|
|
|
|
return mapnik::Boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
mapnik::eAttributeType operator() (std::string const& /*val*/) const
|
|
|
|
{
|
|
|
|
return mapnik::String;
|
|
|
|
}
|
|
|
|
|
2013-08-14 00:52:04 +02:00
|
|
|
mapnik::eAttributeType operator() (mapnik::value_unicode_string const& /*val*/) const
|
2012-07-26 01:11:51 +02:00
|
|
|
{
|
|
|
|
return mapnik::String;
|
|
|
|
}
|
|
|
|
|
|
|
|
mapnik::eAttributeType operator() (mapnik::value_null const& /*val*/) const
|
|
|
|
{
|
|
|
|
return mapnik::String;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-12-17 19:03:07 +01:00
|
|
|
geojson_datasource::geojson_datasource(parameters const& params)
|
|
|
|
: datasource(params),
|
|
|
|
type_(datasource::Vector),
|
|
|
|
desc_(*params.get<std::string>("type"),
|
|
|
|
*params.get<std::string>("encoding","utf-8")),
|
|
|
|
file_(*params.get<std::string>("file","")),
|
|
|
|
extent_(),
|
|
|
|
tr_(new mapnik::transcoder(*params.get<std::string>("encoding","utf-8"))),
|
|
|
|
features_(),
|
|
|
|
tree_(16,1)
|
2012-06-13 14:30:58 +02:00
|
|
|
{
|
2012-12-17 19:03:07 +01:00
|
|
|
if (file_.empty()) throw mapnik::datasource_exception("GeoJSON Plugin: missing <file> parameter");
|
2012-06-13 14:30:58 +02:00
|
|
|
|
2013-06-02 21:12:03 +02:00
|
|
|
boost::optional<std::string> base = params.get<std::string>("base");
|
|
|
|
if (base)
|
|
|
|
{
|
|
|
|
file_ = *base + "/" + file_;
|
|
|
|
}
|
|
|
|
|
2012-12-03 14:12:09 +01:00
|
|
|
typedef std::istreambuf_iterator<char> base_iterator_type;
|
|
|
|
|
2013-05-21 21:51:31 +02:00
|
|
|
#if defined (_WINDOWS)
|
|
|
|
std::ifstream is(mapnik::utf8_to_utf16(file_),std::ios_base::in | std::ios_base::binary);
|
|
|
|
#else
|
|
|
|
std::ifstream is(file_.c_str(),std::ios_base::in | std::ios_base::binary);
|
|
|
|
#endif
|
2013-06-02 21:12:03 +02:00
|
|
|
if (!is.is_open())
|
|
|
|
{
|
|
|
|
throw mapnik::datasource_exception("GeoJSON Plugin: could not open: '" + file_ + "'");
|
|
|
|
}
|
|
|
|
|
2012-12-03 14:12:09 +01:00
|
|
|
boost::spirit::multi_pass<base_iterator_type> begin =
|
2012-06-13 14:30:58 +02:00
|
|
|
boost::spirit::make_default_multi_pass(base_iterator_type(is));
|
|
|
|
|
2012-12-03 14:12:09 +01:00
|
|
|
boost::spirit::multi_pass<base_iterator_type> end =
|
2012-06-13 14:30:58 +02:00
|
|
|
boost::spirit::make_default_multi_pass(base_iterator_type());
|
2012-12-03 14:12:09 +01:00
|
|
|
|
2013-09-20 15:00:11 +02:00
|
|
|
mapnik::context_ptr ctx = std::make_shared<mapnik::context_type>();
|
2012-06-13 14:30:58 +02:00
|
|
|
mapnik::json::feature_collection_parser<boost::spirit::multi_pass<base_iterator_type> > p(ctx,*tr_);
|
|
|
|
bool result = p.parse(begin,end, features_);
|
2012-12-03 14:12:09 +01:00
|
|
|
if (!result)
|
2012-06-13 14:30:58 +02:00
|
|
|
{
|
2012-09-03 19:01:01 +02:00
|
|
|
throw mapnik::datasource_exception("geojson_datasource: Failed parse GeoJSON file '" + file_ + "'");
|
2012-06-13 14:30:58 +02:00
|
|
|
}
|
2012-12-03 14:12:09 +01:00
|
|
|
|
2012-06-13 14:30:58 +02:00
|
|
|
std::size_t count=0;
|
2013-09-30 12:36:04 +02:00
|
|
|
for (mapnik::feature_ptr const& f : features_)
|
2012-06-13 14:30:58 +02:00
|
|
|
{
|
2013-09-30 22:23:38 +02:00
|
|
|
mapnik::box2d<double> box = f->envelope();
|
2013-10-29 08:34:42 +01:00
|
|
|
if (count == 0)
|
2012-06-13 14:30:58 +02:00
|
|
|
{
|
|
|
|
extent_ = box;
|
2013-01-04 03:53:22 +01:00
|
|
|
mapnik::feature_kv_iterator f_itr = f->begin();
|
|
|
|
mapnik::feature_kv_iterator f_end = f->end();
|
|
|
|
for ( ;f_itr!=f_end; ++f_itr)
|
2012-07-26 01:11:51 +02:00
|
|
|
{
|
2013-10-11 13:35:34 +02:00
|
|
|
desc_.add_descriptor(mapnik::attribute_descriptor(std::get<0>(*f_itr),
|
|
|
|
boost::apply_visitor(attr_value_converter(),std::get<1>(*f_itr).base())));
|
2012-07-26 01:11:51 +02:00
|
|
|
}
|
2012-06-13 14:30:58 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
extent_.expand_to_include(box);
|
2012-12-03 14:12:09 +01:00
|
|
|
}
|
2012-06-13 14:30:58 +02:00
|
|
|
tree_.insert(box_type(point_type(box.minx(),box.miny()),point_type(box.maxx(),box.maxy())), count++);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
geojson_datasource::~geojson_datasource() { }
|
|
|
|
|
2012-07-21 03:34:41 +02:00
|
|
|
const char * geojson_datasource::name()
|
2012-06-13 14:30:58 +02:00
|
|
|
{
|
2012-07-21 03:34:41 +02:00
|
|
|
return "geojson";
|
2012-06-13 14:30:58 +02:00
|
|
|
}
|
|
|
|
|
2012-12-03 14:12:09 +01:00
|
|
|
boost::optional<mapnik::datasource::geometry_t> geojson_datasource::get_geometry_type() const
|
2012-06-13 14:30:58 +02:00
|
|
|
{
|
2012-09-03 19:01:01 +02:00
|
|
|
boost::optional<mapnik::datasource::geometry_t> result;
|
|
|
|
int multi_type = 0;
|
|
|
|
unsigned num_features = features_.size();
|
|
|
|
for (unsigned i = 0; i < num_features && i < 5; ++i)
|
|
|
|
{
|
|
|
|
mapnik::util::to_ds_type(features_[i]->paths(),result);
|
|
|
|
if (result)
|
|
|
|
{
|
|
|
|
int type = static_cast<int>(*result);
|
|
|
|
if (multi_type > 0 && multi_type != type)
|
|
|
|
{
|
|
|
|
result.reset(mapnik::datasource::Collection);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
multi_type = type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
2012-06-13 14:30:58 +02:00
|
|
|
}
|
|
|
|
|
2012-12-03 14:12:09 +01:00
|
|
|
mapnik::datasource::datasource_t geojson_datasource::type() const
|
2012-06-13 14:30:58 +02:00
|
|
|
{
|
|
|
|
return type_;
|
|
|
|
}
|
|
|
|
|
|
|
|
mapnik::box2d<double> geojson_datasource::envelope() const
|
|
|
|
{
|
|
|
|
return extent_;
|
|
|
|
}
|
|
|
|
|
|
|
|
mapnik::layer_descriptor geojson_datasource::get_descriptor() const
|
|
|
|
{
|
|
|
|
return desc_;
|
|
|
|
}
|
|
|
|
|
|
|
|
mapnik::featureset_ptr geojson_datasource::features(mapnik::query const& q) const
|
|
|
|
{
|
|
|
|
// if the query box intersects our world extent then query for features
|
2012-06-14 13:16:25 +02:00
|
|
|
mapnik::box2d<double> const& b = q.get_bbox();
|
|
|
|
if (extent_.intersects(b))
|
2012-06-13 14:30:58 +02:00
|
|
|
{
|
2012-06-14 13:16:25 +02:00
|
|
|
box_type box(point_type(b.minx(),b.miny()),point_type(b.maxx(),b.maxy()));
|
2013-10-23 16:26:43 +02:00
|
|
|
return std::make_shared<geojson_featureset>(features_, tree_.find(box));
|
2012-12-03 14:12:09 +01:00
|
|
|
}
|
2012-06-13 14:30:58 +02:00
|
|
|
// otherwise return an empty featureset pointer
|
|
|
|
return mapnik::featureset_ptr();
|
|
|
|
}
|
|
|
|
|
2012-09-28 15:12:10 +02:00
|
|
|
mapnik::featureset_ptr geojson_datasource::features_at_point(mapnik::coord2d const& pt, double tol) const
|
2012-06-13 14:30:58 +02:00
|
|
|
{
|
2013-05-22 17:38:25 +02:00
|
|
|
mapnik::box2d<double> query_bbox(pt, pt);
|
|
|
|
query_bbox.pad(tol);
|
|
|
|
mapnik::query q(query_bbox);
|
|
|
|
std::vector<mapnik::attribute_descriptor> const& desc = desc_.get_descriptors();
|
|
|
|
std::vector<mapnik::attribute_descriptor>::const_iterator itr = desc.begin();
|
|
|
|
std::vector<mapnik::attribute_descriptor>::const_iterator end = desc.end();
|
|
|
|
for ( ;itr!=end;++itr)
|
|
|
|
{
|
|
|
|
q.add_property_name(itr->get_name());
|
|
|
|
}
|
|
|
|
return features(q);
|
2012-06-13 14:30:58 +02:00
|
|
|
}
|