/***************************************************************************** * * 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 #include // boost #include #include // mapnik #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using mapnik::datasource; using mapnik::parameters; DATASOURCE_PLUGIN(geojson_datasource) struct attr_value_converter : public mapnik::util::static_visitor { mapnik::eAttributeType operator() (mapnik::value_integer) const { return mapnik::Integer; } mapnik::eAttributeType operator() (double) const { return mapnik::Double; } mapnik::eAttributeType operator() (float) const { return mapnik::Double; } mapnik::eAttributeType operator() (bool) const { return mapnik::Boolean; } mapnik::eAttributeType operator() (std::string const& ) const { return mapnik::String; } mapnik::eAttributeType operator() (mapnik::value_unicode_string const&) const { return mapnik::String; } mapnik::eAttributeType operator() (mapnik::value_null const& ) const { return mapnik::String; } }; geojson_datasource::geojson_datasource(parameters const& params) : datasource(params), type_(datasource::Vector), desc_(geojson_datasource::name(), *params.get("encoding","utf-8")), filename_(), inline_string_(), extent_(), features_(), #if BOOST_VERSION >= 105600 tree_() #else tree_(16,1) #endif { boost::optional inline_string = params.get("inline"); if (inline_string) { inline_string_ = *inline_string; } else { boost::optional file = params.get("file"); if (!file) throw mapnik::datasource_exception("GeoJSON Plugin: missing parameter"); boost::optional base = params.get("base"); if (base) filename_ = *base + "/" + *file; else filename_ = *file; } if (!inline_string_.empty()) { std::istringstream in(inline_string_); parse_geojson(in); } else { #if defined (_WINDOWS) std::ifstream in(mapnik::utf8_to_utf16(filename_),std::ios_base::in | std::ios_base::binary); #else std::ifstream in(filename_.c_str(),std::ios_base::in | std::ios_base::binary); #endif if (!in.is_open()) { throw mapnik::datasource_exception("GeoJSON Plugin: could not open: '" + filename_ + "'"); } parse_geojson(in); in.close(); } } namespace { using base_iterator_type = std::istreambuf_iterator; const mapnik::transcoder tr("utf8"); const mapnik::json::feature_collection_grammar,mapnik::feature_impl> fc_grammar(tr); } template void geojson_datasource::parse_geojson(T & stream) { boost::spirit::multi_pass begin = boost::spirit::make_default_multi_pass(base_iterator_type(stream)); boost::spirit::multi_pass end = boost::spirit::make_default_multi_pass(base_iterator_type()); boost::spirit::standard_wide::space_type space; mapnik::context_ptr ctx = std::make_shared(); bool result = boost::spirit::qi::phrase_parse(begin, end, (fc_grammar)(boost::phoenix::ref(ctx)), space, features_); if (!result) { 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_ + "'"); } std::size_t geometry_index = 0; for (mapnik::feature_ptr const& f : features_) { mapnik::box2d box = f->envelope(); if (geometry_index == 0) { extent_ = box; for ( auto const& kv : *f) { desc_.add_descriptor(mapnik::attribute_descriptor(std::get<0>(kv), mapnik::util::apply_visitor(attr_value_converter(), std::get<1>(kv).base()))); } } else { extent_.expand_to_include(box); } #if BOOST_VERSION >= 105600 tree_.insert(std::make_pair(box_type(point_type(box.minx(),box.miny()),point_type(box.maxx(),box.maxy())),geometry_index)); #else tree_.insert(box_type(point_type(box.minx(),box.miny()),point_type(box.maxx(),box.maxy())),geometry_index); #endif ++geometry_index; } } geojson_datasource::~geojson_datasource() { } const char * geojson_datasource::name() { return "geojson"; } boost::optional geojson_datasource::get_geometry_type() const { boost::optional 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(*result); if (multi_type > 0 && multi_type != type) { result.reset(mapnik::datasource::Collection); return result; } multi_type = type; } } return result; } mapnik::datasource::datasource_t geojson_datasource::type() const { return type_; } mapnik::box2d 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 mapnik::box2d const& b = q.get_bbox(); if (extent_.intersects(b)) { box_type box(point_type(b.minx(),b.miny()),point_type(b.maxx(),b.maxy())); #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(features_, std::move(index_array)); #else return std::make_shared(features_, tree_.find(box)); #endif } // otherwise return an empty featureset pointer return mapnik::featureset_ptr(); } mapnik::featureset_ptr geojson_datasource::features_at_point(mapnik::coord2d const& pt, double tol) const { mapnik::box2d query_bbox(pt, pt); query_bbox.pad(tol); mapnik::query q(query_bbox); std::vector const& desc = desc_.get_descriptors(); std::vector::const_iterator itr = desc.begin(); std::vector::const_iterator end = desc.end(); for ( ;itr!=end;++itr) { q.add_property_name(itr->get_name()); } return features(q); }