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
|
2014-08-08 13:13:49 +02:00
|
|
|
|
2012-06-13 14:30:58 +02:00
|
|
|
#include <boost/algorithm/string.hpp>
|
2013-04-24 17:40:35 +02: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>
|
2014-08-08 13:13:49 +02:00
|
|
|
#include <mapnik/util/variant.hpp>
|
2014-07-24 23:31:59 +02:00
|
|
|
#include <mapnik/json/feature_collection_grammar.hpp>
|
2014-08-08 13:13:49 +02:00
|
|
|
|
2014-07-24 23:31:59 +02:00
|
|
|
#include <boost/spirit/include/qi.hpp>
|
2012-06-13 14:30:58 +02:00
|
|
|
|
|
|
|
using mapnik::datasource;
|
|
|
|
using mapnik::parameters;
|
|
|
|
|
|
|
|
DATASOURCE_PLUGIN(geojson_datasource)
|
|
|
|
|
2014-08-08 13:13:49 +02:00
|
|
|
struct attr_value_converter : public mapnik::util::static_visitor<mapnik::eAttributeType>
|
2012-07-26 01:11:51 +02:00
|
|
|
{
|
2014-08-08 13:13:49 +02:00
|
|
|
mapnik::eAttributeType operator() (mapnik::value_integer) const
|
2012-07-26 01:11:51 +02:00
|
|
|
{
|
|
|
|
return mapnik::Integer;
|
|
|
|
}
|
|
|
|
|
2014-08-08 13:13:49 +02:00
|
|
|
mapnik::eAttributeType operator() (double) const
|
2012-07-26 01:11:51 +02:00
|
|
|
{
|
|
|
|
return mapnik::Double;
|
|
|
|
}
|
|
|
|
|
2014-08-08 13:13:49 +02:00
|
|
|
mapnik::eAttributeType operator() (float) const
|
2012-07-26 01:11:51 +02:00
|
|
|
{
|
|
|
|
return mapnik::Double;
|
|
|
|
}
|
|
|
|
|
2014-08-08 13:13:49 +02:00
|
|
|
mapnik::eAttributeType operator() (bool) const
|
2012-07-26 01:11:51 +02:00
|
|
|
{
|
|
|
|
return mapnik::Boolean;
|
|
|
|
}
|
|
|
|
|
2014-08-08 13:13:49 +02:00
|
|
|
mapnik::eAttributeType operator() (std::string const& ) const
|
2012-07-26 01:11:51 +02:00
|
|
|
{
|
|
|
|
return mapnik::String;
|
|
|
|
}
|
|
|
|
|
2014-08-08 13:13:49 +02:00
|
|
|
mapnik::eAttributeType operator() (mapnik::value_unicode_string const&) const
|
2012-07-26 01:11:51 +02:00
|
|
|
{
|
|
|
|
return mapnik::String;
|
|
|
|
}
|
|
|
|
|
2014-08-08 13:13:49 +02:00
|
|
|
mapnik::eAttributeType operator() (mapnik::value_null const& ) const
|
2012-07-26 01:11:51 +02:00
|
|
|
{
|
|
|
|
return mapnik::String;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-12-17 19:03:07 +01:00
|
|
|
geojson_datasource::geojson_datasource(parameters const& params)
|
2014-06-26 11:51:24 +02:00
|
|
|
: datasource(params),
|
2012-12-17 19:03:07 +01:00
|
|
|
type_(datasource::Vector),
|
2014-06-26 11:51:24 +02:00
|
|
|
desc_(geojson_datasource::name(),
|
2012-12-17 19:03:07 +01:00
|
|
|
*params.get<std::string>("encoding","utf-8")),
|
2014-07-29 01:16:10 +02:00
|
|
|
filename_(),
|
|
|
|
inline_string_(),
|
2012-12-17 19:03:07 +01:00
|
|
|
extent_(),
|
|
|
|
features_(),
|
2014-08-19 23:48:21 +02:00
|
|
|
#if BOOST_VERSION >= 105600
|
|
|
|
tree_()
|
|
|
|
#else
|
2012-12-17 19:03:07 +01:00
|
|
|
tree_(16,1)
|
2014-08-19 23:48:21 +02:00
|
|
|
#endif
|
2012-06-13 14:30:58 +02:00
|
|
|
{
|
2014-07-29 01:16:10 +02:00
|
|
|
boost::optional<std::string> inline_string = params.get<std::string>("inline");
|
|
|
|
if (inline_string)
|
2013-06-02 21:12:03 +02:00
|
|
|
{
|
2014-07-29 01:16:10 +02:00
|
|
|
inline_string_ = *inline_string;
|
2013-06-02 21:12:03 +02:00
|
|
|
}
|
2014-07-29 01:16:10 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
boost::optional<std::string> file = params.get<std::string>("file");
|
|
|
|
if (!file) throw mapnik::datasource_exception("GeoJSON Plugin: missing <file> parameter");
|
2013-06-02 21:12:03 +02:00
|
|
|
|
2014-07-29 01:16:10 +02:00
|
|
|
boost::optional<std::string> base = params.get<std::string>("base");
|
|
|
|
if (base)
|
|
|
|
filename_ = *base + "/" + *file;
|
|
|
|
else
|
|
|
|
filename_ = *file;
|
|
|
|
}
|
|
|
|
if (!inline_string_.empty())
|
|
|
|
{
|
2014-08-27 01:22:12 +02:00
|
|
|
parse_geojson(inline_string_);
|
2014-07-29 01:16:10 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-08-27 01:22:12 +02:00
|
|
|
#ifdef _WINDOWS
|
|
|
|
std::unique_ptr<std::FILE, int (*)(std::FILE *)> file(_wfopen(mapnik::utf8_to_utf16(filename_).c_str(), L"rb"), fclose);
|
2013-05-21 21:51:31 +02:00
|
|
|
#else
|
2014-08-27 01:22:12 +02:00
|
|
|
std::unique_ptr<std::FILE, int (*)(std::FILE *)> file(std::fopen(filename_.c_str(),"rb"), std::fclose);
|
2013-05-21 21:51:31 +02:00
|
|
|
#endif
|
2014-08-27 01:22:12 +02:00
|
|
|
if (file == nullptr)
|
2014-07-29 01:16:10 +02:00
|
|
|
{
|
|
|
|
throw mapnik::datasource_exception("GeoJSON Plugin: could not open: '" + filename_ + "'");
|
|
|
|
}
|
2014-08-27 01:22:12 +02:00
|
|
|
std::fseek(file.get(), 0, SEEK_END);
|
|
|
|
std::size_t file_size = std::ftell(file.get());
|
|
|
|
std::fseek(file.get(), 0, SEEK_SET);
|
|
|
|
std::string file_buffer;
|
|
|
|
file_buffer.resize(file_size);
|
|
|
|
std::fread(&file_buffer[0], file_size, 1, file.get());
|
|
|
|
parse_geojson(file_buffer);
|
2013-06-02 21:12:03 +02:00
|
|
|
}
|
2014-07-29 01:16:10 +02:00
|
|
|
}
|
2013-06-02 21:12:03 +02:00
|
|
|
|
2014-07-30 12:28:23 +02:00
|
|
|
namespace {
|
2014-08-27 01:22:12 +02:00
|
|
|
using base_iterator_type = std::string::const_iterator;
|
2014-07-30 12:28:23 +02:00
|
|
|
const mapnik::transcoder tr("utf8");
|
2014-08-27 01:22:12 +02:00
|
|
|
const mapnik::json::feature_collection_grammar<base_iterator_type,mapnik::feature_impl> fc_grammar(tr);
|
2014-07-30 12:28:23 +02:00
|
|
|
}
|
|
|
|
|
2014-07-29 01:16:10 +02:00
|
|
|
template <typename T>
|
2014-08-27 01:22:12 +02:00
|
|
|
void geojson_datasource::parse_geojson(T const& buffer)
|
2014-07-29 01:16:10 +02:00
|
|
|
{
|
2014-07-24 23:31:59 +02:00
|
|
|
boost::spirit::standard_wide::space_type space;
|
2014-07-30 12:01:54 +02:00
|
|
|
mapnik::context_ptr ctx = std::make_shared<mapnik::context_type>();
|
2014-08-27 01:22:12 +02:00
|
|
|
bool result = boost::spirit::qi::phrase_parse(buffer.begin(), buffer.end(), (fc_grammar)(boost::phoenix::ref(ctx)), space, features_);
|
2012-12-03 14:12:09 +01:00
|
|
|
if (!result)
|
2012-06-13 14:30:58 +02:00
|
|
|
{
|
2014-07-29 01:16:10 +02:00
|
|
|
if (!inline_string_.empty()) throw mapnik::datasource_exception("geojson_datasource: Failed parse GeoJSON file from in-memory string");
|
|
|
|
else throw mapnik::datasource_exception("geojson_datasource: Failed parse GeoJSON file '" + filename_ + "'");
|
2012-06-13 14:30:58 +02:00
|
|
|
}
|
2012-12-03 14:12:09 +01:00
|
|
|
|
2014-08-20 17:08:41 +02:00
|
|
|
std::size_t geometry_index = 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();
|
2014-08-20 17:08:41 +02:00
|
|
|
if (geometry_index == 0)
|
2012-06-13 14:30:58 +02:00
|
|
|
{
|
|
|
|
extent_ = box;
|
2014-07-30 17:39:49 +02:00
|
|
|
for ( auto const& kv : *f)
|
2012-07-26 01:11:51 +02:00
|
|
|
{
|
2014-07-30 17:39:49 +02:00
|
|
|
desc_.add_descriptor(mapnik::attribute_descriptor(std::get<0>(kv),
|
2014-08-08 13:13:49 +02:00
|
|
|
mapnik::util::apply_visitor(attr_value_converter(),
|
2014-09-04 18:10:13 +02:00
|
|
|
std::get<1>(kv))));
|
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
|
|
|
}
|
2014-08-19 23:48:21 +02:00
|
|
|
#if BOOST_VERSION >= 105600
|
2014-08-20 17:08:41 +02:00
|
|
|
tree_.insert(std::make_pair(box_type(point_type(box.minx(),box.miny()),point_type(box.maxx(),box.maxy())),geometry_index));
|
2014-08-19 23:48:21 +02:00
|
|
|
#else
|
2014-08-20 17:08:41 +02:00
|
|
|
tree_.insert(box_type(point_type(box.minx(),box.miny()),point_type(box.maxx(),box.maxy())),geometry_index);
|
2014-08-19 23:48:21 +02:00
|
|
|
#endif
|
2014-08-20 17:08:41 +02:00
|
|
|
++geometry_index;
|
2012-06-13 14:30:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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()));
|
2014-08-19 23:48:21 +02:00
|
|
|
#if BOOST_VERSION >= 105600
|
|
|
|
geojson_featureset::array_type index_array;
|
|
|
|
tree_.query(boost::geometry::index::intersects(box),std::back_inserter(index_array));
|
|
|
|
return std::make_shared<geojson_featureset>(features_, std::move(index_array));
|
|
|
|
#else
|
2013-10-23 16:26:43 +02:00
|
|
|
return std::make_shared<geojson_featureset>(features_, tree_.find(box));
|
2014-08-19 23:48:21 +02:00
|
|
|
#endif
|
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
|
|
|
}
|