/***************************************************************************** * * This file is part of Mapnik (c++ mapping toolkit) * * Copyright (C) 2014 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 * *****************************************************************************/ // mapnik #include #include #include #include #include #include #include #include "osm_featureset.hpp" using mapnik::feature_ptr; using mapnik::feature_factory; template osm_featureset::osm_featureset(const filterT& filter, osm_dataset* dataset, const std::set& attribute_names, std::string const& encoding) : filter_(filter), query_ext_(), tr_(new transcoder(encoding)), dataset_ (dataset), attribute_names_ (attribute_names), ctx_(std::make_shared()) { dataset_->rewind(); } template feature_ptr osm_featureset::next() { feature_ptr feature; osm_item* cur_item = dataset_->next_item(); if (!cur_item) return feature_ptr(); if (dataset_->current_item_is_node()) { feature = feature_factory::create(ctx_, cur_item->id); double lat = static_cast(cur_item)->lat; double lon = static_cast(cur_item)->lon; feature->set_geometry(mapnik::geometry::point(lon,lat)); } else if (dataset_->current_item_is_way()) { // Loop until we find a feature which passes the filter while (cur_item) { bounds b = static_cast(cur_item)->get_bounds(); if (filter_.pass(box2d(b.w, b.s, b.e, b.n)) && static_cast(cur_item)->nodes.size()) break; cur_item = dataset_->next_item(); } if (!cur_item) return feature_ptr(); feature = feature_factory::create(ctx_, cur_item->id); if (static_cast(cur_item)->is_polygon()) { mapnik::geometry::linear_ring ring; for (unsigned int count = 0; count < static_cast(cur_item)->nodes.size(); count++) { ring.add_coord(static_cast(cur_item)->nodes[count]->lon, static_cast(cur_item)->nodes[count]->lat); } mapnik::geometry::polygon geom; geom.set_exterior_ring(std::move(ring)); mapnik::geometry::correct(geom); feature->set_geometry(std::move(geom)); } else { mapnik::geometry::line_string geom; for (unsigned int count = 0; count < static_cast(cur_item)->nodes.size(); count++) { geom.add_coord(static_cast(cur_item)->nodes[count]->lon, static_cast(cur_item)->nodes[count]->lat); } feature->set_geometry(std::move(geom)); } } else { MAPNIK_LOG_ERROR(osm_featureset) << "Current item is neither node nor way.\n"; } std::set::const_iterator itr = attribute_names_.begin(); std::set::const_iterator end = attribute_names_.end(); std::map::iterator end_keyvals = cur_item->keyvals.end(); for (; itr != end; itr++) { std::map::iterator i = cur_item->keyvals.find(*itr); if (i != end_keyvals) { feature->put_new(i->first, tr_->transcode(i->second.c_str())); } } return feature; } template osm_featureset::~osm_featureset() {} template class osm_featureset; template class osm_featureset;